From 95db409126daa7588f94e764db88738638593e4e Mon Sep 17 00:00:00 2001 From: LUA Ting-Gan Date: Thu, 22 Mar 2018 16:49:10 +0800 Subject: [PATCH] get the magical scanner going --- binding.gyp | 3 +- build/tree_sitter_agda_binding.target.mk | 3 +- corpus/test.txt | 3 + grammar.js | 132 +- package.json | 4 +- src/grammar.json | 235 +- src/parser.c | 241385 ++++++++++---------- src/scanner.cc | 234 + 8 files changed, 121462 insertions(+), 120537 deletions(-) create mode 100644 src/scanner.cc diff --git a/binding.gyp b/binding.gyp index 89b6fad..650bb52 100644 --- a/binding.gyp +++ b/binding.gyp @@ -8,7 +8,8 @@ ], "sources": [ "src/parser.c", - "src/binding.cc" + "src/binding.cc", + "src/scanner.cc" ], "cflags_c": [ "-std=c99", diff --git a/build/tree_sitter_agda_binding.target.mk b/build/tree_sitter_agda_binding.target.mk index 82fa158..b25d8cf 100644 --- a/build/tree_sitter_agda_binding.target.mk +++ b/build/tree_sitter_agda_binding.target.mk @@ -103,7 +103,8 @@ INCS_Release := \ OBJS := \ $(obj).target/$(TARGET)/src/parser.o \ - $(obj).target/$(TARGET)/src/binding.o + $(obj).target/$(TARGET)/src/binding.o \ + $(obj).target/$(TARGET)/src/scanner.o # Add to the list of files we specially track dependencies for. all_deps += $(OBJS) diff --git a/corpus/test.txt b/corpus/test.txt index 2e45048..d221dd7 100644 --- a/corpus/test.txt +++ b/corpus/test.txt @@ -5,6 +5,9 @@ Test a : Set a = A +b : Set +b = B + --- (source_file diff --git a/grammar.js b/grammar.js index e23ea7e..b81e736 100644 --- a/grammar.js +++ b/grammar.js @@ -10,6 +10,13 @@ module.exports = grammar({ /\s|\\n/ ], + externals: $ => [ + $._layout_semicolon, + $._layout_open_brace, + $._layout_close_brace, + '->' + ], + rules: { // source_file: $ => $.function_clause, source_file: $ => repeat($._declaration), @@ -20,12 +27,25 @@ module.exports = grammar({ set_n: $ => 'set_n: undefined', begin_import_dir: $ => 'begin_import_dir: undefined', + + //////////////////////////////////////////////////////////////////////// + // Special lexemes + //////////////////////////////////////////////////////////////////////// + + semi: $ => choice( + $._layout_semicolon, + ';' + ), + + vopen: $ => $._layout_open_brace, + vclose: $ => $._layout_close_brace, + + //////////////////////////////////////////////////////////////////////// // Name // http://wiki.portal.chalmers.se/agda/pmwiki.php?n=ReferenceManual.Names //////////////////////////////////////////////////////////////////////// - semi: $ => ';', name: $ => /[^\s\_\;\.\"\(\)\{\}\@]+(\_[^\s\_\;\.\"\(\)\{\}\@]+)*/, // for var1@var2 @@ -128,7 +148,7 @@ module.exports = grammar({ // lambda bindings seq('\\', $.lambda_bindings, '->', $.expr), seq('\\', '{', $.lambda_clauses, '}'), - seq('\\', 'where', $.lambda_where_clauses), + seq('\\', 'where', $.vopen, $.lambda_where_clauses, $.vclose), seq('\\', $.lambda_bindings), // forall seq('forall', $.forall_bindings, $.expr), @@ -136,7 +156,7 @@ module.exports = grammar({ prec.left(seq('let', repeat1($._declaration), optional(seq('in', $.expr)))), // TODO: do notation - // seq('do', repeat1($.do_stmt)), + // seq('do', $.vopen, repeat1($.do_stmt), $.vclose), // seq('quoteGoal', $.name, 'in', $.expr), // seq('tactic', $._atomic_exprs1), @@ -277,6 +297,7 @@ module.exports = grammar({ // // do_where: $ => seq( // 'where', + // $.vopen, // $.lambda_where_clauses // ), @@ -311,7 +332,7 @@ module.exports = grammar({ // Function clauses //////////////////////////////////////////////////////////////////////// - lhs: $ => prec.right(seq( + lhs: $ => prec.left(seq( $._expr1, optional($.rewrite_equations), optional($.with_expressions) @@ -325,11 +346,11 @@ module.exports = grammar({ // optional($.rewrite_equations) // ), // - where_clause: $ => prec.right(choice( - seq( 'where', optional($._declarations1)), - seq('module', $.name, 'where', optional($._declarations1)), - seq('module', $.anonymous_name, 'where', optional($._declarations1)) - )), + where_clause: $ => choice( + seq( 'where', $._declarations0), + seq('module', $.name, 'where', $._declarations0), + seq('module', $.anonymous_name, 'where', $._declarations0) + ), // expr_where: $ => seq( // $.expr, @@ -370,7 +391,7 @@ module.exports = grammar({ // to allow declarations like 'x::xs ++ ys = e', when '::' has higher // precedence than '++'. // function_clause also handle possibly dotted type signatures. - function_clause: $ => prec.right(seq( + function_clause: $ => prec.left(seq( $.lhs, optional($.rhs), optional($.where_clause) @@ -388,7 +409,7 @@ module.exports = grammar({ // optional($.typed_untyped_bindings1), // optional(seq(':', $.expr)), // 'where', - // optional($._declarations1) + // $._declarations0 // ), // // // Data type signature. Found in mutual blocks. @@ -420,11 +441,10 @@ module.exports = grammar({ // ), // // // Declaration of record constructor name. - // record_constructor_name: $ => seq( - // optional('instance'), - // 'constructor', - // $.name - // ), + // record_constructor_name: $ => choice( + // seq('constructor', $.name), + // seq('instance', $.vopen, 'constructor', $.name, $.vclose) + // ) // // // Fixity declarations. // infix: $ => seq( @@ -436,49 +456,49 @@ module.exports = grammar({ // Field declarations. // field: $ => seq( // 'field', - // $.arg_type_signature + // $.arg_type_signatures // ), // // Mutually recursive declarations. // mutual: $ => seq( // 'mutual', - // optional($._declarations1) + // $._declarations0 // ), // // // Abstract declarations. // abstract: $ => seq( // 'abstract', - // optional($._declarations1) + // $._declarations0 // ), // // // Private can only appear on the top-level (or rather the module level) // private: $ => seq( // 'private', - // optional($._declarations1) + // $._declarations0 // ), // // // Instance declarations. // instance: $ => seq( // 'instance', - // optional($._declarations1) + // $._declarations0 // ), // // // Macro declarations. // macro: $ => seq( // 'macro', - // optional($._declarations1) + // $._declarations0 // ), // // // Postulates. // postulate: $ => seq( // 'postulate', - // optional($._declarations1) + // $._declarations0 // ), // // // Primitives. Can only contain type signatures. // primitive: $ => seq( // 'primitive', - // $.type_signature + // $.type_signatures // ), // // // Unquoting declarations. @@ -563,7 +583,7 @@ module.exports = grammar({ // choice($.qualified_name, $.anonymous_name), // optional($.typed_untyped_bindings1), // 'where', - // optional($._declarations1) + // $._declarations0 // ), // // @@ -571,27 +591,48 @@ module.exports = grammar({ // // Sequence of declarations // //////////////////////////////////////////////////////////////////////// // - // // Type signatures of the form "n1 n2 n3 ... : Type", with at least - // // one bound name. - // type_signature: $ => seq( + // // Non-empty list of type signatures, with several identifiers allowed + // // for every signature. + // type_signatures: $ => seq( + // $.vopen, + // $._type_signatures1, + // $.vclose + // ), + // + // // Inside the layout block. + // _type_signatures1: $ => sepBy1($.semi, $._type_signature), + // _type_signature: $ => seq( // repeat1($.name), // ':', // $.expr // ), - - // // A variant of type_signature where any sub-sequence of names can be + // + // A variant of TypeSignatures which uses ArgTypeSigs instead of _type_signature + // arg_type_signatures: $ => seq( + // $.vopen, + // $._arg_type_signatures1, + // $.vclose + // ), + // + // _arg_type_signatures1: $ => sepBy1($.semi, $._arg_type_signature), + // + // // A variant of _type_signature where any sub-sequence of names can be // // marked as hidden or irrelevant using braces and dots: // // {n1 .n2} n3 .n4 {n5} .{n6 n7} ... : Type. - // arg_type_signature: $ => choice( - // seq($.arg_names, ':', $.expr), - // seq('instance', prec.left(sepBy1($.semi, $.arg_type_signature))) + // _arg_type_signature: $ => choice( + // seq(optional('overlap'), $.arg_names, ':', $.expr), + // seq('instance', prec.left(sepBy1($.semi, $.arg_type_signatures))) // ), - + // // // Record declarations, including an optional record constructor name. - // record_declarations: $ => choice( - // $.record_directives1, - // seq(optional($.record_directives1), $.semi, $._declarations1), - // $._declarations1 + // record_declarations: $ => seq( + // $.vopen, + // choice( + // $.record_directives1, + // seq(optional($.record_directives1), $.semi, $._declarations1), + // $._declarations1 + // ), + // $.vclose // ), // // record_directives1: $ => sepBy1($.semi, $.record_directive), @@ -611,7 +652,20 @@ module.exports = grammar({ // 'eta-equality', // 'no-eta-equality' // ), - // + + + // Arbitrary declarations + declarations: $ => seq( + $.vopen, + $._declarations1, + $.vclose + ), + + // Arbitrary declarations (possibly empty) + _declarations0: $ => choice( + seq($.vopen, $.vclose), + $.declarations + ), _declarations1: $ => prec.right(sepBy1($.semi, $._declaration)), } }); diff --git a/package.json b/package.json index 8fc8b3e..7529dae 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,9 @@ "test": "npx tree-sitter test", "generate": "npx tree-sitter generate && npm install", "iterate": "npm run generate && npm test", - "rebuild": "npm rebuild && npm run iterate" + "rebuild": "npm rebuild && npm run iterate", + "build-scanner": "node-gyp build --debug", + "build-grammar": "tree-sitter generate && node-gyp build --debug && tree-sitter test" }, "repository": { "type": "git", diff --git a/src/grammar.json b/src/grammar.json index f49a319..a8178fb 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -40,8 +40,25 @@ "value": "begin_import_dir: undefined" }, "semi": { - "type": "STRING", - "value": ";" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_layout_semicolon" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "vopen": { + "type": "SYMBOL", + "name": "_layout_open_brace" + }, + "vclose": { + "type": "SYMBOL", + "name": "_layout_close_brace" }, "name": { "type": "PATTERN", @@ -587,9 +604,17 @@ "type": "STRING", "value": "where" }, + { + "type": "SYMBOL", + "name": "vopen" + }, { "type": "SYMBOL", "name": "lambda_where_clauses" + }, + { + "type": "SYMBOL", + "name": "vclose" } ] }, @@ -1854,7 +1879,7 @@ ] }, "lhs": { - "type": "PREC_RIGHT", + "type": "PREC_LEFT", "value": 0, "content": { "type": "SEQ", @@ -1917,92 +1942,64 @@ ] }, "where_clause": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "where" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_declarations1" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "SYMBOL", - "name": "name" - }, - { - "type": "STRING", - "value": "where" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_declarations1" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "SYMBOL", - "name": "anonymous_name" - }, - { - "type": "STRING", - "value": "where" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_declarations1" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "where" + }, + { + "type": "SYMBOL", + "name": "_declarations0" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "module" + }, + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "STRING", + "value": "where" + }, + { + "type": "SYMBOL", + "name": "_declarations0" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "module" + }, + { + "type": "SYMBOL", + "name": "anonymous_name" + }, + { + "type": "STRING", + "value": "where" + }, + { + "type": "SYMBOL", + "name": "_declarations0" + } + ] + } + ] }, "_declaration": { "type": "CHOICE", @@ -2014,7 +2011,7 @@ ] }, "function_clause": { - "type": "PREC_RIGHT", + "type": "PREC_LEFT", "value": 0, "content": { "type": "SEQ", @@ -2081,6 +2078,45 @@ } ] }, + "declarations": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "vopen" + }, + { + "type": "SYMBOL", + "name": "_declarations1" + }, + { + "type": "SYMBOL", + "name": "vclose" + } + ] + }, + "_declarations0": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "vopen" + }, + { + "type": "SYMBOL", + "name": "vclose" + } + ] + }, + { + "type": "SYMBOL", + "name": "declarations" + } + ] + }, "_declarations1": { "type": "PREC_RIGHT", "value": 0, @@ -2122,6 +2158,23 @@ } ], "conflicts": [], - "externals": [], + "externals": [ + { + "type": "SYMBOL", + "name": "_layout_semicolon" + }, + { + "type": "SYMBOL", + "name": "_layout_open_brace" + }, + { + "type": "SYMBOL", + "name": "_layout_close_brace" + }, + { + "type": "STRING", + "value": "->" + } + ], "inline": [] } \ No newline at end of file diff --git a/src/parser.c b/src/parser.c index 43b8adf..c2f2864 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,112 +6,122 @@ #endif #define LANGUAGE_VERSION 5 -#define STATE_COUNT 5027 -#define SYMBOL_COUNT 96 +#define STATE_COUNT 5312 +#define SYMBOL_COUNT 103 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 58 -#define EXTERNAL_TOKEN_COUNT 0 +#define TOKEN_COUNT 61 +#define EXTERNAL_TOKEN_COUNT 4 #define MAX_ALIAS_SEQUENCE_LENGTH 0 enum { - sym_int = 1, - sym_literal = 2, - sym_set_n = 3, - sym_begin_import_dir = 4, - anon_sym_SEMI = 5, - sym_name = 6, - sym_name_at = 7, - sym_qualified_name = 8, - anon_sym__ = 9, - anon_sym_DOT = 10, - anon_sym_DOT_DOT = 11, - anon_sym_LBRACE = 12, - anon_sym_RBRACE = 13, - anon_sym_LBRACE_LBRACE = 14, - anon_sym_RBRACE_RBRACE = 15, - sym_comment = 16, - anon_sym_LBRACE_DASH_POUND = 17, - anon_sym_POUND_DASH_RBRACE = 18, - anon_sym_BUILTIN = 19, - anon_sym_CATCHALL = 20, - anon_sym_COMPILE = 21, - anon_sym_FOREIGN = 22, - anon_sym_NO_POSITIVITY_CHECK = 23, - anon_sym_NO_TERMINATION_CHECK = 24, - anon_sym_TERMINATING = 25, - anon_sym_NON_TERMINATING = 26, - anon_sym_POLARITY = 27, - anon_sym_STATIC = 28, - anon_sym_DASH_GT = 29, - anon_sym_EQ = 30, - anon_sym_PIPE = 31, - anon_sym_BSLASH = 32, - anon_sym_where = 33, - anon_sym_forall = 34, - anon_sym_let = 35, - anon_sym_in = 36, - anon_sym_QMARK = 37, - anon_sym_Prop = 38, - anon_sym_Set = 39, - anon_sym_quote = 40, - anon_sym_quoteTerm = 41, - anon_sym_unquote = 42, - anon_sym_LPAREN = 43, - anon_sym_RPAREN = 44, - anon_sym_LPAREN_PIPE = 45, - anon_sym_PIPE_RPAREN = 46, - anon_sym_DOT_DOT_DOT = 47, - sym_catchall_pragma = 48, - anon_sym_COLON = 49, - anon_sym_public = 50, - anon_sym_using = 51, - anon_sym_hiding = 52, - anon_sym_renaming = 53, - anon_sym_module = 54, - anon_sym_to = 55, - anon_sym_rewrite = 56, - anon_sym_with = 57, - sym_source_file = 58, - sym_semi = 59, - sym_binding_name = 60, - sym_anonymous_name = 61, - sym_expr = 62, - sym__expr1 = 63, - sym__application = 64, - sym__expr2 = 65, - sym__atomic_exprs1 = 66, - sym_atomic_expr = 67, - sym__atomic_expr_curly = 68, - sym__atomic_expr_no_curly = 69, - sym_tele_arrow = 70, - sym_lambda_bindings = 71, - sym_non_absurd_lambda_clause = 72, - sym_absurd_lambda_clause = 73, - sym_lambda_clause = 74, - sym_lambda_clauses = 75, - sym_lambda_where_clauses = 76, - sym_forall_bindings = 77, - sym_untyped_bindings = 78, - sym_typed_bindings = 79, - sym_typed_untyped_bindings1 = 80, - sym_lhs = 81, - sym_rewrite_equations = 82, - sym_with_expressions = 83, - sym_where_clause = 84, - sym__declaration = 85, - sym_function_clause = 86, - sym_rhs = 87, - sym__declarations1 = 88, - aux_sym_source_file_repeat1 = 89, - aux_sym__expr1_repeat1 = 90, - aux_sym__application_repeat1 = 91, - aux_sym_tele_arrow_repeat1 = 92, - aux_sym_lambda_where_clauses_repeat1 = 93, - aux_sym_typed_untyped_bindings1_repeat1 = 94, - aux_sym__declarations1_repeat1 = 95, + sym__layout_semicolon = 1, + sym__layout_open_brace = 2, + sym__layout_close_brace = 3, + sym_int = 4, + sym_literal = 5, + sym_set_n = 6, + sym_begin_import_dir = 7, + anon_sym_SEMI = 8, + sym_name = 9, + sym_name_at = 10, + sym_qualified_name = 11, + anon_sym__ = 12, + anon_sym_DOT = 13, + anon_sym_DOT_DOT = 14, + anon_sym_LBRACE = 15, + anon_sym_RBRACE = 16, + anon_sym_LBRACE_LBRACE = 17, + anon_sym_RBRACE_RBRACE = 18, + sym_comment = 19, + anon_sym_LBRACE_DASH_POUND = 20, + anon_sym_POUND_DASH_RBRACE = 21, + anon_sym_BUILTIN = 22, + anon_sym_CATCHALL = 23, + anon_sym_COMPILE = 24, + anon_sym_FOREIGN = 25, + anon_sym_NO_POSITIVITY_CHECK = 26, + anon_sym_NO_TERMINATION_CHECK = 27, + anon_sym_TERMINATING = 28, + anon_sym_NON_TERMINATING = 29, + anon_sym_POLARITY = 30, + anon_sym_STATIC = 31, + anon_sym_DASH_GT = 32, + anon_sym_EQ = 33, + anon_sym_PIPE = 34, + anon_sym_BSLASH = 35, + anon_sym_where = 36, + anon_sym_forall = 37, + anon_sym_let = 38, + anon_sym_in = 39, + anon_sym_QMARK = 40, + anon_sym_Prop = 41, + anon_sym_Set = 42, + anon_sym_quote = 43, + anon_sym_quoteTerm = 44, + anon_sym_unquote = 45, + anon_sym_LPAREN = 46, + anon_sym_RPAREN = 47, + anon_sym_LPAREN_PIPE = 48, + anon_sym_PIPE_RPAREN = 49, + anon_sym_DOT_DOT_DOT = 50, + sym_catchall_pragma = 51, + anon_sym_COLON = 52, + anon_sym_public = 53, + anon_sym_using = 54, + anon_sym_hiding = 55, + anon_sym_renaming = 56, + anon_sym_module = 57, + anon_sym_to = 58, + anon_sym_rewrite = 59, + anon_sym_with = 60, + sym_source_file = 61, + sym_semi = 62, + sym_vopen = 63, + sym_vclose = 64, + sym_binding_name = 65, + sym_anonymous_name = 66, + sym_expr = 67, + sym__expr1 = 68, + sym__application = 69, + sym__expr2 = 70, + sym__atomic_exprs1 = 71, + sym_atomic_expr = 72, + sym__atomic_expr_curly = 73, + sym__atomic_expr_no_curly = 74, + sym_tele_arrow = 75, + sym_lambda_bindings = 76, + sym_non_absurd_lambda_clause = 77, + sym_absurd_lambda_clause = 78, + sym_lambda_clause = 79, + sym_lambda_clauses = 80, + sym_lambda_where_clauses = 81, + sym_forall_bindings = 82, + sym_untyped_bindings = 83, + sym_typed_bindings = 84, + sym_typed_untyped_bindings1 = 85, + sym_lhs = 86, + sym_rewrite_equations = 87, + sym_with_expressions = 88, + sym_where_clause = 89, + sym__declaration = 90, + sym_function_clause = 91, + sym_rhs = 92, + sym_declarations = 93, + sym__declarations0 = 94, + sym__declarations1 = 95, + aux_sym_source_file_repeat1 = 96, + aux_sym__expr1_repeat1 = 97, + aux_sym__application_repeat1 = 98, + aux_sym_tele_arrow_repeat1 = 99, + aux_sym_lambda_where_clauses_repeat1 = 100, + aux_sym_typed_untyped_bindings1_repeat1 = 101, + aux_sym__declarations1_repeat1 = 102, }; static const char *ts_symbol_names[] = { + [sym__layout_semicolon] = "_layout_semicolon", + [sym__layout_open_brace] = "_layout_open_brace", + [sym__layout_close_brace] = "_layout_close_brace", [ts_builtin_sym_end] = "END", [sym_int] = "int", [sym_literal] = "literal", @@ -172,6 +182,8 @@ static const char *ts_symbol_names[] = { [anon_sym_with] = "with", [sym_source_file] = "source_file", [sym_semi] = "semi", + [sym_vopen] = "vopen", + [sym_vclose] = "vclose", [sym_binding_name] = "binding_name", [sym_anonymous_name] = "anonymous_name", [sym_expr] = "expr", @@ -200,6 +212,8 @@ static const char *ts_symbol_names[] = { [sym__declaration] = "_declaration", [sym_function_clause] = "function_clause", [sym_rhs] = "rhs", + [sym_declarations] = "declarations", + [sym__declarations0] = "_declarations0", [sym__declarations1] = "_declarations1", [aux_sym_source_file_repeat1] = "source_file_repeat1", [aux_sym__expr1_repeat1] = "_expr1_repeat1", @@ -211,6 +225,18 @@ static const char *ts_symbol_names[] = { }; static const TSSymbolMetadata ts_symbol_metadata[] = { + [sym__layout_semicolon] = { + .visible = false, + .named = true, + }, + [sym__layout_open_brace] = { + .visible = false, + .named = true, + }, + [sym__layout_close_brace] = { + .visible = false, + .named = true, + }, [ts_builtin_sym_end] = { .visible = false, .named = true, @@ -451,6 +477,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_vopen] = { + .visible = true, + .named = true, + }, + [sym_vclose] = { + .visible = true, + .named = true, + }, [sym_binding_name] = { .visible = true, .named = true, @@ -563,6 +597,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_declarations] = { + .visible = true, + .named = true, + }, + [sym__declarations0] = { + .visible = false, + .named = true, + }, [sym__declarations1] = { .visible = false, .named = true, @@ -1917,8 +1959,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -1951,6 +1991,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); @@ -4402,8 +4443,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(412); if (lookahead == ':') ADVANCE(14); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(16); if (lookahead == '\\') @@ -4452,8 +4491,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -4492,6 +4529,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && lookahead != '}') @@ -4583,8 +4622,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -4621,6 +4658,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && lookahead != '}') @@ -4842,8 +4881,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(427); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -4879,6 +4916,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(426); if (lookahead != 0 && lookahead != '\"' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); @@ -5114,8 +5152,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(427); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -5153,6 +5189,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); @@ -5233,8 +5270,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(412); if (lookahead == ':') ADVANCE(14); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(16); if (lookahead == '\\') @@ -5712,59 +5747,84 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(315); END_STATE(); case 457: + if (lookahead == '-') + ADVANCE(458); + if (lookahead == '\\') + SKIP(459); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(457); + END_STATE(); + case 458: + if (lookahead == '-') + ADVANCE(9); + END_STATE(); + case 459: + if (lookahead == 'n') + SKIP(457); + END_STATE(); + case 460: + if (lookahead == '-') + ADVANCE(369); + END_STATE(); + case 461: if (lookahead == '(') ADVANCE(5); if (lookahead == ')') ADVANCE(7); if (lookahead == '-') - ADVANCE(458); + ADVANCE(462); if (lookahead == '.') ADVANCE(316); if (lookahead == '?') - ADVANCE(465); + ADVANCE(469); if (lookahead == 'P') - ADVANCE(466); - if (lookahead == 'S') ADVANCE(470); + if (lookahead == 'S') + ADVANCE(474); if (lookahead == '\\') - ADVANCE(473); + ADVANCE(477); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') - ADVANCE(476); + ADVANCE(480); if (lookahead == 'l') - ADVANCE(482); + ADVANCE(486); if (lookahead == 'q') - ADVANCE(492); + ADVANCE(496); if (lookahead == 's') - ADVANCE(501); + ADVANCE(505); if (lookahead == 'u') - ADVANCE(507); + ADVANCE(511); if (lookahead == '{') ADVANCE(368); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(457); + SKIP(461); if (lookahead != 0 && lookahead != '\"' && lookahead != ';' && lookahead != '?' && lookahead != '@' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 458: + case 462: ACCEPT_TOKEN(sym_name); if (lookahead == '-') - ADVANCE(459); + ADVANCE(463); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5776,16 +5836,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 459: + case 463: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(305); if (lookahead == '@') ADVANCE(307); if (lookahead == '_') - ADVANCE(460); + ADVANCE(464); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || @@ -5799,9 +5859,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(459); + ADVANCE(463); END_STATE(); - case 460: + case 464: ACCEPT_TOKEN(sym_comment); if (lookahead == '\t' || lookahead == '\r' || @@ -5819,14 +5879,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(461); + ADVANCE(465); END_STATE(); - case 461: + case 465: ACCEPT_TOKEN(sym_name); if (lookahead == '@') ADVANCE(307); if (lookahead == '_') - ADVANCE(460); + ADVANCE(464); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || @@ -5841,9 +5901,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(461); + ADVANCE(465); END_STATE(); - case 462: + case 466: if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5858,14 +5918,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '_' && lookahead != '{' && lookahead != '}') - ADVANCE(463); + ADVANCE(467); END_STATE(); - case 463: + case 467: ACCEPT_TOKEN(sym_name); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5878,16 +5938,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(463); + ADVANCE(467); END_STATE(); - case 464: + case 468: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5899,16 +5959,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 465: + case 469: ACCEPT_TOKEN(anon_sym_QMARK); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5920,18 +5980,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 466: + case 470: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'r') - ADVANCE(467); + ADVANCE(471); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5943,18 +6003,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 467: + case 471: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'o') - ADVANCE(468); + ADVANCE(472); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5966,18 +6026,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 468: + case 472: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'p') - ADVANCE(469); + ADVANCE(473); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5989,16 +6049,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 469: + case 473: ACCEPT_TOKEN(anon_sym_Prop); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6010,18 +6070,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 470: + case 474: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(471); + ADVANCE(475); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6033,18 +6093,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 471: + case 475: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 't') - ADVANCE(472); + ADVANCE(476); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6056,16 +6116,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 472: + case 476: ACCEPT_TOKEN(anon_sym_Set); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6077,18 +6137,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 473: + case 477: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'n') - ADVANCE(474); + ADVANCE(478); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6100,36 +6160,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 474: + case 478: ACCEPT_TOKEN(sym_name); if (lookahead == '-') - ADVANCE(458); + ADVANCE(462); if (lookahead == '.') ADVANCE(328); if (lookahead == '?') - ADVANCE(465); + ADVANCE(469); if (lookahead == '@') ADVANCE(312); if (lookahead == 'P') - ADVANCE(466); - if (lookahead == 'S') ADVANCE(470); + if (lookahead == 'S') + ADVANCE(474); if (lookahead == '\\') - ADVANCE(473); + ADVANCE(477); if (lookahead == '_') - ADVANCE(475); + ADVANCE(479); if (lookahead == 'f') - ADVANCE(476); + ADVANCE(480); if (lookahead == 'l') - ADVANCE(482); + ADVANCE(486); if (lookahead == 'q') - ADVANCE(492); + ADVANCE(496); if (lookahead == 's') - ADVANCE(501); + ADVANCE(505); if (lookahead == 'u') - ADVANCE(507); + ADVANCE(511); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6141,9 +6201,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 475: + case 479: ACCEPT_TOKEN(anon_sym__); if (lookahead != 0 && lookahead != '\t' && @@ -6159,18 +6219,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '_' && lookahead != '{' && lookahead != '}') - ADVANCE(463); + ADVANCE(467); END_STATE(); - case 476: + case 480: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'o') - ADVANCE(477); + ADVANCE(481); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6182,18 +6242,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 477: + case 481: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'r') - ADVANCE(478); + ADVANCE(482); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6205,18 +6265,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 478: + case 482: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'a') - ADVANCE(479); + ADVANCE(483); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6228,18 +6288,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 479: + case 483: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'l') - ADVANCE(480); + ADVANCE(484); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6251,18 +6311,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 480: + case 484: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'l') - ADVANCE(481); + ADVANCE(485); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6274,16 +6334,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 481: + case 485: ACCEPT_TOKEN(anon_sym_forall); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6295,20 +6355,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 482: + case 486: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(483); + ADVANCE(487); if (lookahead == 'i') - ADVANCE(485); + ADVANCE(489); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6320,18 +6380,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 483: + case 487: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 't') - ADVANCE(484); + ADVANCE(488); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6343,16 +6403,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 484: + case 488: ACCEPT_TOKEN(anon_sym_let); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6364,18 +6424,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 485: + case 489: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 't') - ADVANCE(486); + ADVANCE(490); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6387,18 +6447,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 486: + case 490: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(487); + ADVANCE(491); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6410,18 +6470,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 487: + case 491: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'r') - ADVANCE(488); + ADVANCE(492); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6433,18 +6493,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 488: + case 492: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'a') - ADVANCE(489); + ADVANCE(493); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6456,18 +6516,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 489: + case 493: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'l') - ADVANCE(490); + ADVANCE(494); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6479,18 +6539,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 490: + case 494: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == ':') - ADVANCE(491); + ADVANCE(495); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6503,9 +6563,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 491: + case 495: ACCEPT_TOKEN(sym_name); if (lookahead == ' ') ADVANCE(202); @@ -6514,7 +6574,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6525,18 +6585,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 492: + case 496: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'u') - ADVANCE(493); + ADVANCE(497); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6548,18 +6608,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 493: + case 497: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'o') - ADVANCE(494); + ADVANCE(498); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6571,18 +6631,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 494: + case 498: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 't') - ADVANCE(495); + ADVANCE(499); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6594,18 +6654,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 495: + case 499: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(496); + ADVANCE(500); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6617,18 +6677,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 496: + case 500: ACCEPT_TOKEN(anon_sym_quote); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == 'T') - ADVANCE(497); + ADVANCE(501); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6640,18 +6700,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 497: + case 501: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(498); + ADVANCE(502); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6663,18 +6723,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 498: + case 502: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'r') - ADVANCE(499); + ADVANCE(503); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6686,18 +6746,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 499: + case 503: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'm') - ADVANCE(500); + ADVANCE(504); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6709,16 +6769,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 500: + case 504: ACCEPT_TOKEN(anon_sym_quoteTerm); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6730,18 +6790,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 501: + case 505: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(502); + ADVANCE(506); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6753,18 +6813,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 502: + case 506: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 't') - ADVANCE(503); + ADVANCE(507); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6776,16 +6836,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 503: + case 507: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(504); + ADVANCE(508); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6797,11 +6857,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 504: + case 508: if (lookahead == 'n') - ADVANCE(505); + ADVANCE(509); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6816,16 +6876,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '_' && lookahead != '{' && lookahead != '}') - ADVANCE(463); + ADVANCE(467); END_STATE(); - case 505: + case 509: ACCEPT_TOKEN(sym_name); if (lookahead == ':') - ADVANCE(506); + ADVANCE(510); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6839,16 +6899,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(463); + ADVANCE(467); END_STATE(); - case 506: + case 510: ACCEPT_TOKEN(sym_name); if (lookahead == ' ') ADVANCE(252); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6860,18 +6920,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(463); + ADVANCE(467); END_STATE(); - case 507: + case 511: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'n') - ADVANCE(508); + ADVANCE(512); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6883,18 +6943,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 508: + case 512: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'q') - ADVANCE(509); + ADVANCE(513); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6906,18 +6966,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 509: + case 513: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'u') - ADVANCE(510); + ADVANCE(514); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6929,18 +6989,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 510: + case 514: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'o') - ADVANCE(511); + ADVANCE(515); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6952,18 +7012,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 511: + case 515: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 't') - ADVANCE(512); + ADVANCE(516); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6975,18 +7035,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 512: + case 516: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead == 'e') - ADVANCE(513); + ADVANCE(517); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6998,16 +7058,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 513: + case 517: ACCEPT_TOKEN(anon_sym_unquote); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') ADVANCE(312); if (lookahead == '_') - ADVANCE(462); + ADVANCE(466); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7019,9 +7079,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '{' && lookahead != '}') - ADVANCE(464); + ADVANCE(468); END_STATE(); - case 514: + case 518: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -7032,8 +7092,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -7043,7 +7101,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(515); + ADVANCE(519); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -7068,16 +7126,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(514); + SKIP(518); if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && lookahead != '}') ADVANCE(315); END_STATE(); - case 515: + case 519: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -7086,7 +7146,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(516); + ADVANCE(520); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7100,7 +7160,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 516: + case 520: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -7119,7 +7179,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(515); + ADVANCE(519); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -7152,7 +7212,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 517: + case 521: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -7163,8 +7223,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(11); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -7174,7 +7232,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(518); + ADVANCE(522); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -7199,16 +7257,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(517); + SKIP(521); if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && lookahead != '}') ADVANCE(315); END_STATE(); - case 518: + case 522: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -7217,7 +7277,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(519); + ADVANCE(523); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7231,7 +7291,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 519: + case 523: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -7250,7 +7310,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(518); + ADVANCE(522); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -7283,7 +7343,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 520: + case 524: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -7296,8 +7356,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -7307,13 +7365,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(521); + ADVANCE(525); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -7338,13 +7396,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(520); + SKIP(524); if (lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 521: + case 525: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -7353,7 +7413,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(522); + ADVANCE(526); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7367,7 +7427,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 522: + case 526: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -7386,13 +7446,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(521); + ADVANCE(525); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -7422,7 +7482,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 523: + case 527: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') ADVANCE(310); @@ -7431,7 +7491,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(524); + ADVANCE(528); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7445,7 +7505,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 524: + case 528: ACCEPT_TOKEN(anon_sym_in); if (lookahead == '.') ADVANCE(310); @@ -7466,7 +7526,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 525: + case 529: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -7479,8 +7539,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -7490,13 +7548,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(526); + ADVANCE(530); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -7519,13 +7577,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(525); + SKIP(529); if (lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 526: + case 530: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -7534,7 +7594,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(527); + ADVANCE(531); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7548,7 +7608,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 527: + case 531: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -7567,13 +7627,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(526); + ADVANCE(530); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -7602,15 +7662,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 528: + case 532: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -7620,7 +7678,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(529); + ADVANCE(533); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -7636,22 +7694,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(368); if (lookahead == '|') - ADVANCE(531); + ADVANCE(535); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(528); + SKIP(532); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 529: + case 533: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -7660,7 +7719,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(530); + ADVANCE(534); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7674,7 +7733,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 530: + case 534: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -7691,7 +7750,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(529); + ADVANCE(533); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -7705,7 +7764,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == '|') - ADVANCE(531); + ADVANCE(535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7718,7 +7777,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 531: + case 535: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == ')') ADVANCE(298); @@ -7741,7 +7800,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 532: + case 536: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -7752,8 +7811,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -7763,7 +7820,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(533); + ADVANCE(537); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -7786,16 +7843,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(532); + SKIP(536); if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && lookahead != '}') ADVANCE(315); END_STATE(); - case 533: + case 537: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -7804,7 +7863,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(534); + ADVANCE(538); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7818,7 +7877,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 534: + case 538: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -7837,7 +7896,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(533); + ADVANCE(537); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -7868,20 +7927,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 535: + case 539: if (lookahead == '-') - ADVANCE(536); + ADVANCE(540); if (lookahead == '\\') - ADVANCE(541); + ADVANCE(545); if (lookahead == '_') ADVANCE(150); if (lookahead == '{') - ADVANCE(544); + ADVANCE(460); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(535); + SKIP(539); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && @@ -7891,14 +7950,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(540); + ADVANCE(544); END_STATE(); - case 536: + case 540: ACCEPT_TOKEN(sym_name); if (lookahead == '-') - ADVANCE(537); + ADVANCE(541); if (lookahead == '_') - ADVANCE(539); + ADVANCE(543); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7913,12 +7972,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(540); + ADVANCE(544); END_STATE(); - case 537: + case 541: ACCEPT_TOKEN(sym_name); if (lookahead == '_') - ADVANCE(538); + ADVANCE(542); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || @@ -7934,9 +7993,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(537); + ADVANCE(541); END_STATE(); - case 538: + case 542: ACCEPT_TOKEN(sym_comment); if (lookahead == '\t' || lookahead == '\r' || @@ -7954,9 +8013,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(537); + ADVANCE(541); END_STATE(); - case 539: + case 543: if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7971,12 +8030,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '_' && lookahead != '{' && lookahead != '}') - ADVANCE(540); + ADVANCE(544); END_STATE(); - case 540: + case 544: ACCEPT_TOKEN(sym_name); if (lookahead == '_') - ADVANCE(539); + ADVANCE(543); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7990,14 +8049,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(540); + ADVANCE(544); END_STATE(); - case 541: + case 545: ACCEPT_TOKEN(sym_name); if (lookahead == '_') - ADVANCE(539); + ADVANCE(543); if (lookahead == 'n') - ADVANCE(542); + ADVANCE(546); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8011,16 +8070,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(540); + ADVANCE(544); END_STATE(); - case 542: + case 546: ACCEPT_TOKEN(sym_name); if (lookahead == '-') - ADVANCE(536); + ADVANCE(540); if (lookahead == '\\') - ADVANCE(541); + ADVANCE(545); if (lookahead == '_') - ADVANCE(543); + ADVANCE(547); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8035,9 +8094,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(540); + ADVANCE(544); END_STATE(); - case 543: + case 547: ACCEPT_TOKEN(anon_sym__); if (lookahead != 0 && lookahead != '\t' && @@ -8053,13 +8112,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '_' && lookahead != '{' && lookahead != '}') - ADVANCE(540); - END_STATE(); - case 544: - if (lookahead == '-') - ADVANCE(369); + ADVANCE(544); END_STATE(); - case 545: + case 548: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -8068,8 +8123,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -8077,7 +8130,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(546); + ADVANCE(549); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -8100,16 +8153,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(545); + SKIP(548); if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && lookahead != '}') ADVANCE(315); END_STATE(); - case 546: + case 549: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -8118,7 +8172,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(547); + ADVANCE(550); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8132,7 +8186,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 547: + case 550: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -8147,7 +8201,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(546); + ADVANCE(549); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -8177,7 +8231,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 548: + case 551: if (lookahead == '(') ADVANCE(5); if (lookahead == ')') @@ -8188,8 +8242,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -8199,7 +8251,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(549); + ADVANCE(552); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -8222,14 +8274,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(548); + SKIP(551); if (lookahead != 0 && lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 549: + case 552: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -8238,7 +8292,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(550); + ADVANCE(553); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8252,7 +8306,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 550: + case 553: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -8271,7 +8325,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(549); + ADVANCE(552); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -8299,7 +8353,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 551: + case 554: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -8308,8 +8362,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -8319,7 +8371,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(552); + ADVANCE(555); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -8342,16 +8394,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(551); + SKIP(554); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 552: + case 555: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -8360,7 +8414,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(553); + ADVANCE(556); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8374,7 +8428,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 553: + case 556: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -8393,7 +8447,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(552); + ADVANCE(555); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -8421,7 +8475,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 554: + case 557: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -8434,8 +8488,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -8445,13 +8497,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(555); + ADVANCE(558); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -8472,13 +8524,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(554); + SKIP(557); if (lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 555: + case 558: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -8487,7 +8541,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(556); + ADVANCE(559); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8501,7 +8555,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 556: + case 559: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -8520,13 +8574,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(555); + ADVANCE(558); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -8553,7 +8607,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 557: + case 560: if (lookahead == '(') ADVANCE(5); if (lookahead == ')') @@ -8562,8 +8616,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -8573,13 +8625,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(558); + ADVANCE(561); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -8596,14 +8648,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(557); + SKIP(560); if (lookahead != 0 && lookahead != '\"' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 558: + case 561: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -8612,7 +8665,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(559); + ADVANCE(562); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8626,7 +8679,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 559: + case 562: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -8643,13 +8696,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(558); + ADVANCE(561); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -8671,7 +8724,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 560: + case 563: if (lookahead == '(') ADVANCE(5); if (lookahead == ')') @@ -8680,8 +8733,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -8691,7 +8742,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(561); + ADVANCE(564); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -8714,14 +8765,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(560); + SKIP(563); if (lookahead != 0 && lookahead != '\"' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 561: + case 564: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -8730,7 +8782,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(562); + ADVANCE(565); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8744,7 +8796,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 562: + case 565: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -8761,7 +8813,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(561); + ADVANCE(564); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -8788,7 +8840,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 563: + case 566: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -8797,8 +8849,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -8808,13 +8858,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(564); + ADVANCE(567); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -8839,16 +8889,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(563); + SKIP(566); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 564: + case 567: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -8857,7 +8909,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(565); + ADVANCE(568); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8871,7 +8923,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 565: + case 568: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -8890,13 +8942,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(564); + ADVANCE(567); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -8926,7 +8978,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 566: + case 569: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -8935,8 +8987,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -8946,13 +8996,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(567); + ADVANCE(570); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -8975,16 +9025,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(566); + SKIP(569); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 567: + case 570: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -8993,7 +9045,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(568); + ADVANCE(571); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9007,7 +9059,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 568: + case 571: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -9026,13 +9078,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(567); + ADVANCE(570); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -9061,7 +9113,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 569: + case 572: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -9070,8 +9122,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -9081,13 +9131,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(570); + ADVANCE(573); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -9108,16 +9158,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(569); + SKIP(572); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 570: + case 573: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -9126,7 +9178,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(571); + ADVANCE(574); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9140,7 +9192,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 571: + case 574: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -9159,13 +9211,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(570); + ADVANCE(573); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -9192,15 +9244,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 572: + case 575: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -9210,13 +9260,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(573); + ADVANCE(576); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -9233,16 +9283,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(572); + SKIP(575); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 573: + case 576: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -9251,7 +9302,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(574); + ADVANCE(577); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9265,7 +9316,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 574: + case 577: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -9282,13 +9333,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(573); + ADVANCE(576); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -9310,15 +9361,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 575: + case 578: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -9328,7 +9377,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(576); + ADVANCE(579); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -9351,16 +9400,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(575); + SKIP(578); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 576: + case 579: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -9369,7 +9419,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(577); + ADVANCE(580); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9383,7 +9433,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 577: + case 580: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -9400,7 +9450,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(576); + ADVANCE(579); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -9427,7 +9477,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 578: + case 581: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -9445,7 +9495,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(579); + ADVANCE(582); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -9466,7 +9516,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(578); + SKIP(581); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && @@ -9475,7 +9525,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@') ADVANCE(315); END_STATE(); - case 579: + case 582: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -9484,7 +9534,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(580); + ADVANCE(583); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9498,7 +9548,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 580: + case 583: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -9515,7 +9565,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(579); + ADVANCE(582); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -9542,7 +9592,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 581: + case 584: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -9558,7 +9608,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(582); + ADVANCE(585); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -9579,7 +9629,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(581); + SKIP(584); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && @@ -9588,7 +9638,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@') ADVANCE(315); END_STATE(); - case 582: + case 585: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -9597,7 +9647,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(583); + ADVANCE(586); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9611,7 +9661,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 583: + case 586: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -9626,7 +9676,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(582); + ADVANCE(585); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -9652,7 +9702,70 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 584: + case 587: + if (lookahead == '-') + ADVANCE(458); + if (lookahead == ':') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '\\') + SKIP(588); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(587); + END_STATE(); + case 588: + if (lookahead == 'n') + SKIP(587); + END_STATE(); + case 589: + if (lookahead == '-') + ADVANCE(458); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '\\') + SKIP(590); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(589); + END_STATE(); + case 590: + if (lookahead == 'n') + SKIP(589); + END_STATE(); + case 591: + if (lookahead == '-') + ADVANCE(458); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '\\') + SKIP(592); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(591); + END_STATE(); + case 592: + if (lookahead == 'n') + SKIP(591); + END_STATE(); + case 593: if (lookahead == '(') ADVANCE(5); if (lookahead == ')') @@ -9670,7 +9783,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(585); + ADVANCE(594); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -9691,7 +9804,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(584); + SKIP(593); if (lookahead != 0 && lookahead != '\"' && lookahead != ':' && @@ -9700,7 +9813,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@') ADVANCE(315); END_STATE(); - case 585: + case 594: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -9709,7 +9822,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(586); + ADVANCE(595); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9723,7 +9836,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 586: + case 595: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -9740,7 +9853,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(585); + ADVANCE(594); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -9767,7 +9880,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 587: + case 596: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -9781,7 +9894,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(588); + ADVANCE(597); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -9802,7 +9915,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(587); + SKIP(596); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && @@ -9812,7 +9925,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@') ADVANCE(315); END_STATE(); - case 588: + case 597: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -9821,7 +9934,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(589); + ADVANCE(598); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9835,7 +9948,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 589: + case 598: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -9850,7 +9963,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(588); + ADVANCE(597); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -9876,7 +9989,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 590: + case 599: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -9892,7 +10005,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(591); + ADVANCE(600); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -9913,7 +10026,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(590); + SKIP(599); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && @@ -9924,7 +10037,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@') ADVANCE(315); END_STATE(); - case 591: + case 600: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -9933,7 +10046,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(592); + ADVANCE(601); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9947,7 +10060,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 592: + case 601: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -9964,7 +10077,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(591); + ADVANCE(600); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -9991,7 +10104,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 593: + case 602: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -10013,7 +10126,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(594); + ADVANCE(603); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -10040,7 +10153,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(593); + SKIP(602); if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && @@ -10049,7 +10162,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 594: + case 603: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -10058,7 +10171,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(595); + ADVANCE(604); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10072,7 +10185,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 595: + case 604: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -10091,7 +10204,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(594); + ADVANCE(603); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -10125,7 +10238,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 596: + case 605: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -10138,8 +10251,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -10149,13 +10260,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(597); + ADVANCE(606); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -10178,13 +10289,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(596); + SKIP(605); if (lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 597: + case 606: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -10193,7 +10306,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(598); + ADVANCE(607); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10207,7 +10320,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 598: + case 607: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -10226,13 +10339,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(597); + ADVANCE(606); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -10261,7 +10374,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 599: + case 608: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -10274,8 +10387,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(11); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -10285,13 +10396,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(600); + ADVANCE(609); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -10314,13 +10425,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(599); + SKIP(608); if (lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 600: + case 609: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -10329,7 +10442,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(601); + ADVANCE(610); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10343,7 +10456,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 601: + case 610: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -10362,13 +10475,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(600); + ADVANCE(609); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -10397,7 +10510,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 602: + case 611: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -10406,8 +10519,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -10417,13 +10528,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(603); + ADVANCE(612); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -10441,22 +10552,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(368); if (lookahead == '|') - ADVANCE(531); + ADVANCE(535); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(602); + SKIP(611); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 603: + case 612: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -10465,7 +10578,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(604); + ADVANCE(613); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10479,7 +10592,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 604: + case 613: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -10498,13 +10611,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(603); + ADVANCE(612); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -10520,7 +10633,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(389); if (lookahead == '|') - ADVANCE(531); + ADVANCE(535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10534,7 +10647,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 605: + case 614: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -10543,8 +10656,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -10554,13 +10665,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(606); + ADVANCE(615); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -10578,22 +10689,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(368); if (lookahead == '|') - ADVANCE(608); + ADVANCE(617); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(605); + SKIP(614); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 606: + case 615: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -10602,7 +10715,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(607); + ADVANCE(616); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10616,7 +10729,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 607: + case 616: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -10635,13 +10748,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(606); + ADVANCE(615); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -10657,7 +10770,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(389); if (lookahead == '|') - ADVANCE(608); + ADVANCE(617); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10671,7 +10784,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 608: + case 617: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == ')') ADVANCE(298); @@ -10694,7 +10807,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 609: + case 618: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -10703,8 +10816,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -10714,13 +10825,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(610); + ADVANCE(619); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -10736,22 +10847,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(368); if (lookahead == '|') - ADVANCE(608); + ADVANCE(617); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(609); + SKIP(618); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 610: + case 619: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -10760,7 +10873,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(611); + ADVANCE(620); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10774,7 +10887,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 611: + case 620: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -10793,13 +10906,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(610); + ADVANCE(619); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -10813,7 +10926,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(422); if (lookahead == '|') - ADVANCE(608); + ADVANCE(617); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10827,15 +10940,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 612: + case 621: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -10845,13 +10956,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(613); + ADVANCE(622); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -10863,22 +10974,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(368); if (lookahead == '|') - ADVANCE(608); + ADVANCE(617); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(612); + SKIP(621); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 613: + case 622: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -10887,7 +10999,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(614); + ADVANCE(623); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10901,7 +11013,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 614: + case 623: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -10918,13 +11030,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(613); + ADVANCE(622); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -10934,7 +11046,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == '|') - ADVANCE(608); + ADVANCE(617); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10947,15 +11059,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 615: + case 624: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -10965,7 +11075,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(616); + ADVANCE(625); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -10981,145 +11091,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(368); if (lookahead == '|') - ADVANCE(531); + ADVANCE(535); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(615); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && - lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(315); - END_STATE(); - case 616: - ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '.') - ADVANCE(310); - if (lookahead == '@') - ADVANCE(312); - if (lookahead == '_') - ADVANCE(313); - if (lookahead == 'n') - ADVANCE(617); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '{' && - lookahead != '}') - ADVANCE(315); - END_STATE(); - case 617: - ACCEPT_TOKEN(sym_qualified_name); - if (lookahead == '-') - ADVANCE(303); - if (lookahead == '.') - ADVANCE(328); - if (lookahead == '=') - ADVANCE(373); - if (lookahead == '?') - ADVANCE(318); - if (lookahead == '@') - ADVANCE(312); - if (lookahead == 'P') - ADVANCE(319); - if (lookahead == 'S') - ADVANCE(323); - if (lookahead == '\\') - ADVANCE(616); - if (lookahead == '_') - ADVANCE(329); - if (lookahead == 'f') - ADVANCE(330); - if (lookahead == 'l') - ADVANCE(336); - if (lookahead == 'q') - ADVANCE(346); - if (lookahead == 's') - ADVANCE(355); - if (lookahead == 'u') - ADVANCE(361); - if (lookahead == '|') - ADVANCE(531); + SKIP(624); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(315); - END_STATE(); - case 618: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '(') - ADVANCE(5); - if (lookahead == '-') - ADVANCE(303); - if (lookahead == '.') - ADVANCE(316); - if (lookahead == ':') - ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); - if (lookahead == '=') - ADVANCE(373); - if (lookahead == '?') - ADVANCE(318); - if (lookahead == 'P') - ADVANCE(319); - if (lookahead == 'S') - ADVANCE(323); - if (lookahead == '\\') - ADVANCE(619); - if (lookahead == '_') - ADVANCE(150); - if (lookahead == 'f') - ADVANCE(330); - if (lookahead == 'l') - ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); - if (lookahead == 'q') - ADVANCE(346); - if (lookahead == 's') - ADVANCE(355); - if (lookahead == 'u') - ADVANCE(361); - if (lookahead == 'w') - ADVANCE(389); - if (lookahead == '{') - ADVANCE(368); - if (lookahead == '|') - ADVANCE(397); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(618); - if (lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && lookahead != '?' && lookahead != '@' && (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 619: + case 625: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -11128,7 +11116,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(620); + ADVANCE(626); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11142,14 +11130,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 620: + case 626: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(328); - if (lookahead == ':') - ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -11161,25 +11147,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(619); + ADVANCE(625); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'l') ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == 'w') - ADVANCE(389); if (lookahead == '|') - ADVANCE(397); + ADVANCE(535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11188,12 +11170,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != ';' && (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 621: + case 627: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -11215,7 +11196,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(622); + ADVANCE(628); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -11231,7 +11212,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '{') ADVANCE(368); if (lookahead == '|') @@ -11240,7 +11221,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(621); + SKIP(627); if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && @@ -11249,7 +11230,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 622: + case 628: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -11258,7 +11239,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(623); + ADVANCE(629); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11272,7 +11253,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 623: + case 629: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -11291,7 +11272,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(622); + ADVANCE(628); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -11307,7 +11288,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '|') ADVANCE(397); if (lookahead != 0 && @@ -11323,15 +11304,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 624: + case 630: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); if (lookahead == ';') ADVANCE(15); if (lookahead == '=') @@ -11343,7 +11326,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(625); + ADVANCE(631); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -11368,7 +11351,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(624); + SKIP(630); if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && @@ -11377,7 +11360,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 625: + case 631: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -11386,7 +11369,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(626); + ADVANCE(632); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11400,12 +11383,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 626: + case 632: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -11417,7 +11402,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(625); + ADVANCE(631); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -11444,17 +11429,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 627: + case 633: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(316); if (lookahead == ';') @@ -11468,7 +11454,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(628); + ADVANCE(634); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -11487,20 +11473,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(422); if (lookahead == '{') ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(627); + SKIP(633); if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != '?' && lookahead != '@' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 628: + case 634: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -11509,7 +11497,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(629); + ADVANCE(635); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11523,10 +11511,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 629: + case 635: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(328); if (lookahead == '=') @@ -11540,7 +11528,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(628); + ADVANCE(634); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -11557,6 +11545,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(422); + if (lookahead == '|') + ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11566,17 +11556,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 630: + case 636: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '(') ADVANCE(5); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(316); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -11584,38 +11577,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(631); + ADVANCE(637); if (lookahead == '_') ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); if (lookahead == 'l') - ADVANCE(401); + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(397); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(630); - if (lookahead != 0 && - lookahead != '\"' && + SKIP(636); + if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != ';' && lookahead != '?' && lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '}') ADVANCE(315); END_STATE(); - case 631: - ACCEPT_TOKEN(sym_qualified_name); + case 637: + ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); if (lookahead == '@') @@ -11623,7 +11619,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(632); + ADVANCE(638); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11637,12 +11633,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 632: + case 638: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(328); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -11652,19 +11650,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(631); + ADVANCE(637); if (lookahead == '_') ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); if (lookahead == 'l') - ADVANCE(401); + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == '|') - ADVANCE(397); + if (lookahead == 'w') + ADVANCE(422); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11674,24 +11676,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 633: + case 639: if (lookahead == '(') ADVANCE(5); - if (lookahead == ')') - ADVANCE(7); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ':') - ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -11699,13 +11694,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(634); + ADVANCE(640); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -11716,20 +11709,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == '{') ADVANCE(368); - if (lookahead == '}') - ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(633); + SKIP(639); if (lookahead != 0 && lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && lookahead != '?' && - lookahead != '@') + lookahead != '@' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 634: + case 640: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -11738,7 +11733,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(635); + ADVANCE(641); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11752,16 +11747,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 635: + case 641: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(328); - if (lookahead == ':') - ADVANCE(372); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -11771,13 +11762,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(634); + ADVANCE(640); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -11794,23 +11783,129 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != ';' && lookahead != '{' && lookahead != '}') ADVANCE(315); END_STATE(); - case 636: + case 642: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(316); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(643); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'l') + ADVANCE(401); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(642); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 643: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(644); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 644: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(643); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'l') + ADVANCE(401); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 645: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == ')') + ADVANCE(7); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -11820,13 +11915,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(637); + ADVANCE(646); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -11838,21 +11933,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(368); if (lookahead == '}') - ADVANCE(370); + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(636); + SKIP(645); if (lookahead != 0 && lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 637: + case 646: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -11861,7 +11956,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(638); + ADVANCE(647); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11875,7 +11970,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 638: + case 647: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -11894,13 +11989,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(637); + ADVANCE(646); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -11923,17 +12018,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 639: + case 648: if (lookahead == '(') ADVANCE(5); - if (lookahead == ')') - ADVANCE(7); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -11943,11 +12036,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(640); + ADVANCE(649); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -11959,19 +12054,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(368); if (lookahead == '}') - ADVANCE(406); + ADVANCE(370); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(639); + SKIP(648); if (lookahead != 0 && lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 640: + case 649: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -11980,7 +12079,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(641); + ADVANCE(650); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11994,12 +12093,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 641: + case 650: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -12011,11 +12112,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(640); + ADVANCE(649); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -12032,12 +12135,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && lookahead != '{' && lookahead != '}') ADVANCE(315); END_STATE(); - case 642: + case 651: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -12050,8 +12154,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -12061,13 +12163,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(643); + ADVANCE(652); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -12088,13 +12190,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(642); + SKIP(651); if (lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 643: + case 652: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -12103,7 +12207,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(644); + ADVANCE(653); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12117,7 +12221,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 644: + case 653: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -12136,13 +12240,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(643); + ADVANCE(652); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -12169,7 +12273,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 645: + case 654: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -12180,8 +12284,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -12191,13 +12293,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(646); + ADVANCE(655); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -12218,13 +12320,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(645); + SKIP(654); if (lookahead != '\"' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 646: + case 655: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -12233,7 +12336,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(647); + ADVANCE(656); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12247,7 +12350,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 647: + case 656: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -12264,13 +12367,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(646); + ADVANCE(655); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -12296,121 +12399,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 648: - if (lookahead == '(') - ADVANCE(5); - if (lookahead == '-') - ADVANCE(427); - if (lookahead == '.') - ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); - if (lookahead == '=') - ADVANCE(373); - if (lookahead == '?') - ADVANCE(318); - if (lookahead == 'P') - ADVANCE(319); - if (lookahead == 'S') - ADVANCE(323); - if (lookahead == '\\') - ADVANCE(649); - if (lookahead == '_') - ADVANCE(150); - if (lookahead == 'f') - ADVANCE(330); - if (lookahead == 'l') - ADVANCE(336); - if (lookahead == 'q') - ADVANCE(346); - if (lookahead == 's') - ADVANCE(355); - if (lookahead == 'u') - ADVANCE(361); - if (lookahead == '{') - ADVANCE(368); - if (lookahead == '}') - ADVANCE(370); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(648); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && - lookahead != '?' && - lookahead != '@') - ADVANCE(315); - END_STATE(); - case 649: - ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '.') - ADVANCE(310); - if (lookahead == '@') - ADVANCE(312); - if (lookahead == '_') - ADVANCE(313); - if (lookahead == 'n') - ADVANCE(650); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '{' && - lookahead != '}') - ADVANCE(315); - END_STATE(); - case 650: - ACCEPT_TOKEN(sym_qualified_name); - if (lookahead == '-') - ADVANCE(427); - if (lookahead == '.') - ADVANCE(328); - if (lookahead == '=') - ADVANCE(373); - if (lookahead == '?') - ADVANCE(318); - if (lookahead == '@') - ADVANCE(312); - if (lookahead == 'P') - ADVANCE(319); - if (lookahead == 'S') - ADVANCE(323); - if (lookahead == '\\') - ADVANCE(649); - if (lookahead == '_') - ADVANCE(329); - if (lookahead == 'f') - ADVANCE(330); - if (lookahead == 'l') - ADVANCE(336); - if (lookahead == 'q') - ADVANCE(346); - if (lookahead == 's') - ADVANCE(355); - if (lookahead == 'u') - ADVANCE(361); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '{' && - lookahead != '}') - ADVANCE(315); - END_STATE(); - case 651: + case 657: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -12419,8 +12408,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -12430,13 +12417,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(652); + ADVANCE(658); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -12459,16 +12446,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(651); + SKIP(657); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 652: + case 658: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -12477,7 +12466,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(653); + ADVANCE(659); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12491,7 +12480,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 653: + case 659: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -12510,13 +12499,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(652); + ADVANCE(658); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -12545,7 +12534,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 654: + case 660: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -12554,8 +12543,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(11); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -12565,13 +12552,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(655); + ADVANCE(661); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -12594,16 +12581,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(654); + SKIP(660); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 655: + case 661: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -12612,7 +12601,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(656); + ADVANCE(662); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12626,7 +12615,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 656: + case 662: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -12645,13 +12634,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(655); + ADVANCE(661); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -12680,7 +12669,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 657: + case 663: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -12689,8 +12678,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -12700,13 +12687,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(658); + ADVANCE(664); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -12727,16 +12714,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(657); + SKIP(663); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 658: + case 664: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -12745,7 +12734,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(659); + ADVANCE(665); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12759,7 +12748,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 659: + case 665: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -12778,13 +12767,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(658); + ADVANCE(664); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -12811,15 +12800,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 660: + case 666: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -12829,13 +12816,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(661); + ADVANCE(667); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -12856,16 +12843,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(660); + SKIP(666); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 661: + case 667: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -12874,7 +12862,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(662); + ADVANCE(668); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12888,7 +12876,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 662: + case 668: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -12905,13 +12893,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(661); + ADVANCE(667); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -12937,17 +12925,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 663: + case 669: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(316); - if (lookahead == ':') - ADVANCE(372); if (lookahead == ';') ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -12955,13 +12943,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(664); + ADVANCE(670); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -12972,13 +12958,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == '{') ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); if (lookahead == '}') ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(663); + SKIP(669); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && @@ -12987,7 +12975,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@') ADVANCE(315); END_STATE(); - case 664: + case 670: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -12996,7 +12984,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(665); + ADVANCE(671); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13010,14 +12998,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 665: + case 671: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(328); - if (lookahead == ':') - ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -13027,13 +13015,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(664); + ADVANCE(670); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -13042,6 +13028,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(355); if (lookahead == 'u') ADVANCE(361); + if (lookahead == '|') + ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13050,13 +13038,84 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 666: + case 672: + if (lookahead == '-') + ADVANCE(458); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(673); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(672); + END_STATE(); + case 673: + if (lookahead == 'n') + SKIP(672); + END_STATE(); + case 674: + if (lookahead == '-') + ADVANCE(8); + if (lookahead == ':') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '\\') + SKIP(675); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(674); + END_STATE(); + case 675: + if (lookahead == 'n') + SKIP(674); + END_STATE(); + case 676: + if (lookahead == '(') + ADVANCE(411); + if (lookahead == '-') + ADVANCE(8); + if (lookahead == '.') + ADVANCE(412); + if (lookahead == ':') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '\\') + SKIP(677); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(676); + END_STATE(); + case 677: + if (lookahead == 'n') + SKIP(676); + END_STATE(); + case 678: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -13067,6 +13126,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(372); if (lookahead == ';') ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -13074,30 +13135,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(667); + ADVANCE(679); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); if (lookahead == '{') ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); if (lookahead == '}') - ADVANCE(370); + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(666); + SKIP(678); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && @@ -13106,7 +13175,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@') ADVANCE(315); END_STATE(); - case 667: + case 679: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -13115,7 +13184,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(668); + ADVANCE(680); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13129,7 +13198,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 668: + case 680: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -13137,6 +13206,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(328); if (lookahead == ':') ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -13146,21 +13217,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(667); + ADVANCE(679); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '|') + ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13171,19 +13250,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 669: - if (lookahead == 0) - ADVANCE(1); + case 681: if (lookahead == '(') ADVANCE(5); - if (lookahead == ')') - ADVANCE(7); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(316); if (lookahead == ':') @@ -13199,13 +13273,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(670); + ADVANCE(682); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -13222,21 +13296,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(389); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(397); if (lookahead == '}') ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(669); - if (lookahead != '\"' && + SKIP(681); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 670: + case 682: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -13245,7 +13320,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(671); + ADVANCE(683); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13259,10 +13334,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 671: + case 683: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(328); if (lookahead == ':') @@ -13278,13 +13353,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(670); + ADVANCE(682); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -13299,8 +13374,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(389); - if (lookahead == '|') - ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13311,16 +13384,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 672: + case 684: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); if (lookahead == ';') ADVANCE(15); if (lookahead == '=') @@ -13332,38 +13408,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(673); + ADVANCE(685); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(608); + if (lookahead == '}') + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(672); + SKIP(684); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 673: + case 685: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -13372,7 +13453,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(674); + ADVANCE(686); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13386,12 +13467,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 674: + case 686: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -13403,21 +13486,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(673); + ADVANCE(685); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == '|') - ADVANCE(608); + if (lookahead == 'w') + ADVANCE(422); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13426,23 +13513,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 675: + case 687: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(316); if (lookahead == ':') ADVANCE(372); if (lookahead == ';') ADVANCE(15); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -13450,46 +13537,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(676); + ADVANCE(688); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); if (lookahead == 'q') ADVANCE(346); - if (lookahead == 'r') - ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == 'w') - ADVANCE(389); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(608); + if (lookahead == '}') + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(675); + SKIP(687); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 676: + case 688: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -13498,7 +13578,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(677); + ADVANCE(689); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13512,16 +13592,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 677: + case 689: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(328); if (lookahead == ':') ADVANCE(372); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -13531,29 +13609,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(676); + ADVANCE(688); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); if (lookahead == 'q') ADVANCE(346); - if (lookahead == 'r') - ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == 'w') - ADVANCE(389); - if (lookahead == '|') - ADVANCE(608); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13564,22 +13634,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 678: + case 690: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') - ADVANCE(11); + ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -13587,46 +13654,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(679); + ADVANCE(691); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); if (lookahead == 'q') ADVANCE(346); - if (lookahead == 'r') - ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == 'w') - ADVANCE(389); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(608); + if (lookahead == '}') + ADVANCE(370); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(678); + SKIP(690); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 679: + case 691: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -13635,7 +13697,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(680); + ADVANCE(692); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13649,16 +13711,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 680: + case 692: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') - ADVANCE(405); + ADVANCE(328); if (lookahead == ':') ADVANCE(372); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -13668,29 +13728,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(679); + ADVANCE(691); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); if (lookahead == 'q') ADVANCE(346); - if (lookahead == 'r') - ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == 'w') - ADVANCE(389); - if (lookahead == '|') - ADVANCE(608); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13701,22 +13753,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 681: + case 693: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(316); - if (lookahead == ':') - ADVANCE(372); if (lookahead == ';') ADVANCE(15); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -13724,44 +13773,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(682); + ADVANCE(694); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == 'w') - ADVANCE(389); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(608); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(681); + SKIP(693); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != '?' && lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '}') ADVANCE(315); END_STATE(); - case 682: + case 694: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -13770,7 +13811,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(683); + ADVANCE(695); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13784,16 +13825,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 683: + case 695: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(328); - if (lookahead == ':') - ADVANCE(372); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -13803,27 +13840,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(682); + ADVANCE(694); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == 'w') - ADVANCE(389); - if (lookahead == '|') - ADVANCE(608); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13832,20 +13861,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 684: + case 696: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '(') ADVANCE(5); + if (lookahead == ')') + ADVANCE(7); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -13855,44 +13888,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(685); + ADVANCE(697); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '{') ADVANCE(368); if (lookahead == '|') - ADVANCE(608); + ADVANCE(397); + if (lookahead == '}') + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(684); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && + SKIP(696); + if (lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 685: + case 697: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -13901,7 +13936,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(686); + ADVANCE(698); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13915,12 +13950,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 686: + case 698: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -13932,27 +13969,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(685); + ADVANCE(697); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '|') - ADVANCE(608); + ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13961,13 +14000,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 687: - if (lookahead == 0) - ADVANCE(1); + case 699: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -13976,8 +14014,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -13987,17 +14023,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(688); + ADVANCE(700); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') @@ -14006,20 +14046,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(389); if (lookahead == '{') ADVANCE(368); + if (lookahead == '|') + ADVANCE(617); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(687); - if (lookahead != '\"' && + SKIP(699); + if (lookahead != 0 && + lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 688: + case 700: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -14028,7 +14073,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(689); + ADVANCE(701); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14042,7 +14087,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 689: + case 701: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -14061,23 +14106,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(688); + ADVANCE(700); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') ADVANCE(389); + if (lookahead == '|') + ADVANCE(617); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14088,13 +14139,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 690: - if (lookahead == 0) - ADVANCE(1); + case 702: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -14103,8 +14151,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(11); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -14114,17 +14160,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(691); + ADVANCE(703); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') @@ -14133,20 +14183,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(389); if (lookahead == '{') ADVANCE(368); + if (lookahead == '|') + ADVANCE(617); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(690); - if (lookahead != '\"' && + SKIP(702); + if (lookahead != 0 && + lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 691: + case 703: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -14155,7 +14210,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(692); + ADVANCE(704); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14169,7 +14224,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 692: + case 704: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -14188,23 +14243,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(691); + ADVANCE(703); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') ADVANCE(389); + if (lookahead == '|') + ADVANCE(617); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14215,23 +14276,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 693: - if (lookahead == 0) - ADVANCE(1); + case 705: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -14241,11 +14297,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(694); + ADVANCE(706); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -14257,23 +14315,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '{') ADVANCE(368); + if (lookahead == '|') + ADVANCE(617); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(693); - if (lookahead != '\"' && + SKIP(705); + if (lookahead != 0 && + lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 694: + case 706: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -14282,7 +14345,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(695); + ADVANCE(707); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14296,10 +14359,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 695: + case 707: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(328); if (lookahead == ':') @@ -14315,11 +14378,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(694); + ADVANCE(706); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -14331,7 +14396,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); + if (lookahead == '|') + ADVANCE(617); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14342,11 +14409,137 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 708: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(709); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(617); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(708); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 709: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(710); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && lookahead != '{' && lookahead != '}') ADVANCE(315); END_STATE(); - case 696: + case 710: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(709); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(617); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 711: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -14354,11 +14547,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(11); + ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -14368,7 +14559,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(697); + ADVANCE(712); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -14384,23 +14575,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '{') ADVANCE(368); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(696); + SKIP(711); if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && lookahead != '}') ADVANCE(315); END_STATE(); - case 697: + case 712: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -14409,7 +14602,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(698); + ADVANCE(713); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14423,12 +14616,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 698: + case 713: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(405); + ADVANCE(328); if (lookahead == ':') ADVANCE(372); if (lookahead == '=') @@ -14442,7 +14635,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(697); + ADVANCE(712); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -14458,7 +14651,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14473,7 +14666,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 699: + case 714: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -14481,9 +14674,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); + ADVANCE(11); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -14493,7 +14686,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(700); + ADVANCE(715); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -14509,23 +14702,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '{') ADVANCE(368); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(699); + SKIP(714); if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && lookahead != '}') ADVANCE(315); END_STATE(); - case 700: + case 715: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -14534,7 +14729,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(701); + ADVANCE(716); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14548,12 +14743,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 701: + case 716: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(328); + ADVANCE(405); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -14565,7 +14762,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(700); + ADVANCE(715); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -14581,7 +14778,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14590,12 +14787,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && lookahead != '{' && lookahead != '}') ADVANCE(315); END_STATE(); - case 702: + case 717: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -14603,9 +14801,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(11); - if (lookahead == ';') - ADVANCE(15); + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -14615,7 +14813,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(703); + ADVANCE(718); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -14638,16 +14836,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(702); + SKIP(717); if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && lookahead != '}') ADVANCE(315); END_STATE(); - case 703: + case 718: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -14656,7 +14856,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(704); + ADVANCE(719); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14670,12 +14870,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 704: + case 719: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(405); + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -14687,7 +14889,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(703); + ADVANCE(718); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -14712,22 +14914,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && lookahead != '{' && lookahead != '}') ADVANCE(315); END_STATE(); - case 705: + case 720: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') - ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); + ADVANCE(11); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -14737,7 +14940,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(706); + ADVANCE(721); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -14756,22 +14959,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(397); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(705); + SKIP(720); if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '}') ADVANCE(315); END_STATE(); - case 706: + case 721: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -14780,7 +14983,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(707); + ADVANCE(722); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14794,12 +14997,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 707: + case 722: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') - ADVANCE(328); + ADVANCE(405); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -14811,7 +15016,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(706); + ADVANCE(721); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -14828,8 +15033,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(422); - if (lookahead == '|') - ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14838,23 +15041,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 708: + case 723: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '(') ADVANCE(5); - if (lookahead == ')') - ADVANCE(7); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') ADVANCE(316); - if (lookahead == ':') - ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -14864,35 +15065,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(709); + ADVANCE(724); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'l') ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '}') - ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(708); - if (lookahead != 0 && - lookahead != '\"' && + SKIP(723); + if (lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && lookahead != '?' && - lookahead != '@') + lookahead != '@' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 709: + case 724: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -14901,7 +15107,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(710); + ADVANCE(725); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14915,14 +15121,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 710: + case 725: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') ADVANCE(328); - if (lookahead == ':') - ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -14934,19 +15138,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(709); + ADVANCE(724); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'l') ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14955,23 +15163,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != ';' && lookahead != '{' && lookahead != '}') ADVANCE(315); END_STATE(); - case 711: + case 726: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '(') ADVANCE(5); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(316); - if (lookahead == ':') - ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); + ADVANCE(11); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -14981,37 +15186,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(712); + ADVANCE(727); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'l') ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '}') - ADVANCE(370); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(711); - if (lookahead != 0 && - lookahead != '\"' && + SKIP(726); + if (lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ';' && lookahead != '?' && - lookahead != '@') + lookahead != '@' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 712: + case 727: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -15020,7 +15228,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(713); + ADVANCE(728); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15034,14 +15242,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 713: + case 728: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(328); - if (lookahead == ':') - ADVANCE(372); + ADVANCE(405); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -15053,19 +15259,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(712); + ADVANCE(727); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'l') ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15074,25 +15284,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != ';' && lookahead != '{' && lookahead != '}') ADVANCE(315); END_STATE(); - case 714: + case 729: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') ADVANCE(5); - if (lookahead == ')') - ADVANCE(7); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ':') - ADVANCE(372); if (lookahead == ';') ADVANCE(15); if (lookahead == '=') @@ -15104,13 +15309,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(715); + ADVANCE(730); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -15122,24 +15325,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(389); + ADVANCE(422); if (lookahead == '{') ADVANCE(368); if (lookahead == '|') ADVANCE(397); - if (lookahead == '}') - ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(714); + SKIP(729); if (lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && lookahead != '?' && - lookahead != '@') + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 715: + case 730: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -15148,7 +15352,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(716); + ADVANCE(731); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15162,14 +15366,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 716: + case 731: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(328); - if (lookahead == ':') - ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -15181,13 +15383,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(715); + ADVANCE(730); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -15199,7 +15399,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(389); + ADVANCE(422); if (lookahead == '|') ADVANCE(397); if (lookahead != 0 && @@ -15210,12 +15410,75 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != ';' && (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 717: + case 732: + if (lookahead == '-') + ADVANCE(458); + if (lookahead == ':') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(733); + if (lookahead == 'm') + ADVANCE(212); + if (lookahead == 'r') + ADVANCE(734); + if (lookahead == 'w') + ADVANCE(275); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(732); + END_STATE(); + case 733: + if (lookahead == 'n') + SKIP(732); + END_STATE(); + case 734: + if (lookahead == 'e') + ADVANCE(735); + END_STATE(); + case 735: + if (lookahead == 'w') + ADVANCE(241); + END_STATE(); + case 736: + if (lookahead == '-') + ADVANCE(458); + if (lookahead == ':') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(737); + if (lookahead == 'm') + ADVANCE(212); + if (lookahead == 'w') + ADVANCE(415); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(736); + END_STATE(); + case 737: + if (lookahead == 'n') + SKIP(736); + END_STATE(); + case 738: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -15228,8 +15491,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -15239,13 +15500,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(718); + ADVANCE(739); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -15257,7 +15518,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '{') ADVANCE(368); if (lookahead == '|') @@ -15268,13 +15529,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(717); + SKIP(738); if (lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 718: + case 739: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -15283,7 +15546,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(719); + ADVANCE(740); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15297,7 +15560,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 719: + case 740: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -15316,13 +15579,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(718); + ADVANCE(739); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -15334,7 +15597,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '|') ADVANCE(397); if (lookahead != 0 && @@ -15350,7 +15613,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 720: + case 741: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') @@ -15358,11 +15621,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(7); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -15372,13 +15635,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(721); + ADVANCE(742); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -15401,13 +15664,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(720); + SKIP(741); if (lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 721: + case 742: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -15416,7 +15681,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(722); + ADVANCE(743); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15430,7 +15695,139 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 722: + case 743: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(742); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 744: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '(') + ADVANCE(5); + if (lookahead == ')') + ADVANCE(7); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(745); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(744); + if (lookahead != '\"' && + lookahead != ';' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 745: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(746); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 746: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -15447,13 +15844,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(721); + ADVANCE(745); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -15480,7 +15877,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 723: + case 747: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -15489,8 +15886,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -15500,13 +15895,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(724); + ADVANCE(748); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -15531,16 +15926,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(723); + SKIP(747); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 724: + case 748: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -15549,7 +15946,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(725); + ADVANCE(749); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15563,7 +15960,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 725: + case 749: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -15582,13 +15979,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(724); + ADVANCE(748); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -15618,7 +16015,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 726: + case 750: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -15627,8 +16024,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -15638,13 +16033,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(727); + ADVANCE(751); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -15667,16 +16062,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(726); + SKIP(750); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 727: + case 751: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -15685,7 +16082,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(728); + ADVANCE(752); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15699,7 +16096,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 728: + case 752: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -15718,13 +16115,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(727); + ADVANCE(751); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -15752,7 +16149,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 729: + case 753: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -15761,8 +16158,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -15772,13 +16167,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(730); + ADVANCE(754); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -15801,16 +16196,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(729); + SKIP(753); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 730: + case 754: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -15819,7 +16216,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(731); + ADVANCE(755); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15833,7 +16230,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 731: + case 755: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -15852,13 +16249,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(730); + ADVANCE(754); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -15886,15 +16283,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 732: + case 756: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -15904,13 +16299,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(733); + ADVANCE(757); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -15933,16 +16328,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(732); + SKIP(756); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 733: + case 757: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -15951,7 +16347,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(734); + ADVANCE(758); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15965,7 +16361,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 734: + case 758: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -15982,13 +16378,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(733); + ADVANCE(757); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -16015,17 +16411,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 735: + case 759: + if (lookahead == '-') + ADVANCE(8); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(760); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(759); + END_STATE(); + case 760: + if (lookahead == 'n') + SKIP(759); + END_STATE(); + case 761: + if (lookahead == '(') + ADVANCE(411); + if (lookahead == '-') + ADVANCE(8); + if (lookahead == '.') + ADVANCE(412); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(762); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(761); + END_STATE(); + case 762: + if (lookahead == 'n') + SKIP(761); + END_STATE(); + case 763: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ':') - ADVANCE(372); if (lookahead == ';') ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -16033,25 +16479,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(736); + ADVANCE(764); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == 'w') - ADVANCE(422); if (lookahead == '{') ADVANCE(368); if (lookahead == '}') @@ -16060,7 +16502,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(735); + SKIP(763); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && @@ -16069,7 +16511,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@') ADVANCE(315); END_STATE(); - case 736: + case 764: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -16078,7 +16520,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(737); + ADVANCE(765); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16092,14 +16534,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 737: + case 765: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(328); - if (lookahead == ':') - ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -16109,25 +16551,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(736); + ADVANCE(764); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == 'w') - ADVANCE(422); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16136,13 +16574,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != ';' && lookahead != '{' && lookahead != '}') ADVANCE(315); END_STATE(); - case 738: + case 766: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -16151,6 +16588,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ';') ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -16158,13 +16597,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(739); + ADVANCE(767); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -16175,13 +16612,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == '{') ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); if (lookahead == '}') ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(738); + SKIP(766); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && @@ -16190,7 +16629,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@') ADVANCE(315); END_STATE(); - case 739: + case 767: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -16199,7 +16638,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(740); + ADVANCE(768); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16213,12 +16652,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 740: + case 768: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(328); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -16228,13 +16669,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(739); + ADVANCE(767); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -16243,6 +16682,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(355); if (lookahead == 'u') ADVANCE(361); + if (lookahead == '|') + ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16252,11 +16693,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 741: + case 769: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -16267,6 +16707,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(372); if (lookahead == ';') ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -16274,7 +16716,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(742); + ADVANCE(770); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -16289,13 +16731,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == '{') ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); if (lookahead == '}') - ADVANCE(370); + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(741); + SKIP(769); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && @@ -16304,7 +16748,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@') ADVANCE(315); END_STATE(); - case 742: + case 770: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -16313,7 +16757,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(743); + ADVANCE(771); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16327,7 +16771,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 743: + case 771: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -16335,6 +16779,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(328); if (lookahead == ':') ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -16344,7 +16790,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(742); + ADVANCE(770); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -16357,6 +16803,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(355); if (lookahead == 'u') ADVANCE(361); + if (lookahead == '|') + ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16367,21 +16815,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 744: + case 772: + if (lookahead == '-') + ADVANCE(458); + if (lookahead == ':') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(773); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(772); + END_STATE(); + case 773: + if (lookahead == 'n') + SKIP(772); + END_STATE(); + case 774: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(316); if (lookahead == ':') ADVANCE(372); if (lookahead == ';') ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -16389,34 +16863,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(745); + ADVANCE(775); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '{') ADVANCE(368); if (lookahead == '}') - ADVANCE(370); + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(744); + SKIP(774); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && @@ -16425,7 +16901,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@') ADVANCE(315); END_STATE(); - case 745: + case 775: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -16434,7 +16910,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(746); + ADVANCE(776); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16448,14 +16924,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 746: + case 776: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(328); if (lookahead == ':') ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -16465,25 +16943,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(745); + ADVANCE(775); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16498,13 +16978,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 747: + case 777: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(316); + ADVANCE(11); if (lookahead == ':') ADVANCE(372); if (lookahead == ';') @@ -16518,13 +16998,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(748); + ADVANCE(778); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -16541,23 +17021,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(389); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(531); + if (lookahead == '}') + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(747); + SKIP(777); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 748: + case 778: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -16566,7 +17045,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(749); + ADVANCE(779); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16580,12 +17059,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 749: + case 779: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(328); + ADVANCE(405); if (lookahead == ':') ADVANCE(372); if (lookahead == '=') @@ -16599,13 +17078,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(748); + ADVANCE(778); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -16620,8 +17099,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(389); - if (lookahead == '|') - ADVANCE(531); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16632,10 +17109,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 750: + case 780: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -16655,13 +17133,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(751); + ADVANCE(781); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -16676,23 +17154,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(389); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(531); + if (lookahead == '}') + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(750); + SKIP(780); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 751: + case 781: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -16701,7 +17178,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(752); + ADVANCE(782); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16715,7 +17192,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 752: + case 782: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -16734,13 +17211,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(751); + ADVANCE(781); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -16753,8 +17230,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(389); - if (lookahead == '|') - ADVANCE(531); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16765,10 +17240,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 753: + case 783: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -16779,8 +17255,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(372); if (lookahead == ';') ADVANCE(15); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -16788,13 +17262,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(754); + ADVANCE(784); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -16809,23 +17283,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(531); + if (lookahead == '}') + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(753); + SKIP(783); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 754: + case 784: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -16834,7 +17307,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(755); + ADVANCE(785); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16848,7 +17321,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 755: + case 785: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); @@ -16856,8 +17329,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(328); if (lookahead == ':') ADVANCE(372); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -16867,13 +17338,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(754); + ADVANCE(784); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -16886,8 +17357,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(422); - if (lookahead == '|') - ADVANCE(531); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16898,16 +17367,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 756: + case 786: + if (lookahead == '-') + ADVANCE(8); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '\\') + SKIP(787); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(786); + END_STATE(); + case 787: + if (lookahead == 'n') + SKIP(786); + END_STATE(); + case 788: + if (lookahead == '(') + ADVANCE(411); + if (lookahead == '-') + ADVANCE(8); + if (lookahead == '.') + ADVANCE(412); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '\\') + SKIP(789); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(788); + END_STATE(); + case 789: + if (lookahead == 'n') + SKIP(788); + END_STATE(); + case 790: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); if (lookahead == ';') ADVANCE(15); if (lookahead == '=') @@ -16919,44 +17433,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(757); + ADVANCE(791); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(531); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(756); + SKIP(790); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != '?' && lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '}') ADVANCE(315); END_STATE(); - case 757: + case 791: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -16965,7 +17479,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(758); + ADVANCE(792); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16979,12 +17493,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 758: + case 792: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -16996,27 +17512,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(757); + ADVANCE(791); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); - if (lookahead == '|') - ADVANCE(531); + ADVANCE(389); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17025,17 +17541,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 759: - if (lookahead == 0) - ADVANCE(1); + case 793: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(316); if (lookahead == ':') @@ -17051,11 +17567,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(760); + ADVANCE(794); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -17067,25 +17585,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(389); + ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(397); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(759); - if (lookahead != '\"' && + SKIP(793); + if (lookahead != 0 && + lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != '?' && lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '}') ADVANCE(315); END_STATE(); - case 760: + case 794: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -17094,7 +17611,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(761); + ADVANCE(795); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17108,10 +17625,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 761: + case 795: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(328); if (lookahead == ':') @@ -17127,11 +17644,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(760); + ADVANCE(794); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -17143,9 +17662,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(389); - if (lookahead == '|') - ADVANCE(397); + ADVANCE(422); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17156,24 +17673,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 762: - if (lookahead == 0) - ADVANCE(1); + case 796: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ':') - ADVANCE(372); if (lookahead == ';') ADVANCE(15); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -17181,41 +17693,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(763); + ADVANCE(797); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == 'w') - ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(397); + if (lookahead == '}') + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(762); - if (lookahead != '\"' && + SKIP(796); + if (lookahead != 0 && + lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 763: + case 797: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -17224,7 +17734,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(764); + ADVANCE(798); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17238,16 +17748,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 764: + case 798: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(328); - if (lookahead == ':') - ADVANCE(372); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -17257,25 +17763,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(763); + ADVANCE(797); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == 'w') - ADVANCE(422); - if (lookahead == '|') - ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17284,26 +17786,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 765: + case 799: if (lookahead == '(') ADVANCE(5); - if (lookahead == ')') - ADVANCE(7); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ':') - ADVANCE(372); if (lookahead == ';') ADVANCE(15); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -17311,11 +17807,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(766); + ADVANCE(800); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -17326,22 +17824,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(397); - if (lookahead == '}') - ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(765); + SKIP(799); if (lookahead != 0 && lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && lookahead != '?' && - lookahead != '@') + lookahead != '@' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 766: + case 800: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -17350,7 +17847,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(767); + ADVANCE(801); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17364,16 +17861,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 767: + case 801: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(328); - if (lookahead == ':') - ADVANCE(372); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -17383,11 +17876,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(766); + ADVANCE(800); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'q') @@ -17396,8 +17891,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == '|') - ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17406,28 +17899,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 768: - if (lookahead == 0) - ADVANCE(1); + case 802: if (lookahead == '(') ADVANCE(5); - if (lookahead == ')') - ADVANCE(7); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -17435,13 +17920,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(769); + ADVANCE(803); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -17456,21 +17941,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(397); if (lookahead == '}') - ADVANCE(406); + ADVANCE(370); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(768); - if (lookahead != '\"' && + SKIP(802); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 769: + case 803: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -17479,7 +17967,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(770); + ADVANCE(804); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17493,16 +17981,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 770: + case 804: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(328); if (lookahead == ':') ADVANCE(372); - if (lookahead == '=') - ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -17512,13 +17998,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(769); + ADVANCE(803); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -17531,8 +18017,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(422); - if (lookahead == '|') - ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17543,18 +18027,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 771: + case 805: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(316); - if (lookahead == ':') - ADVANCE(372); if (lookahead == ';') ADVANCE(15); if (lookahead == '=') @@ -17566,7 +18049,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(772); + ADVANCE(806); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') @@ -17583,22 +18066,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(368); if (lookahead == '|') ADVANCE(397); - if (lookahead == '}') - ADVANCE(370); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(771); + SKIP(805); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != '?' && - lookahead != '@') + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 772: + case 806: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -17607,7 +18089,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(773); + ADVANCE(807); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17621,14 +18103,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 773: + case 807: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(328); - if (lookahead == ':') - ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -17640,7 +18120,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(772); + ADVANCE(806); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') @@ -17663,16 +18143,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != ';' && (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 774: + case 808: + if (lookahead == '-') + ADVANCE(458); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(809); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(808); + END_STATE(); + case 809: + if (lookahead == 'n') + SKIP(808); + END_STATE(); + case 810: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(316); if (lookahead == ':') @@ -17688,45 +18188,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(775); + ADVANCE(811); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '{') ADVANCE(368); if (lookahead == '|') ADVANCE(397); - if (lookahead == '}') - ADVANCE(370); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(774); + SKIP(810); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != '?' && - lookahead != '@') + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 775: + case 811: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -17735,7 +18236,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(776); + ADVANCE(812); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17749,10 +18250,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 776: + case 812: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(328); if (lookahead == ':') @@ -17768,25 +18269,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(775); + ADVANCE(811); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '|') ADVANCE(397); if (lookahead != 0 && @@ -17802,21 +18305,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 777: - if (lookahead == 0) - ADVANCE(1); + case 813: if (lookahead == '(') ADVANCE(5); - if (lookahead == ')') - ADVANCE(7); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -17826,19 +18323,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(778); + ADVANCE(814); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') @@ -17847,19 +18346,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(389); if (lookahead == '{') ADVANCE(368); - if (lookahead == '}') - ADVANCE(406); + if (lookahead == '|') + ADVANCE(535); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(777); - if (lookahead != '\"' && + SKIP(813); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && - lookahead != '@') + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 778: + case 814: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -17868,7 +18373,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(779); + ADVANCE(815); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17882,7 +18387,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 779: + case 815: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -17901,25 +18406,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(778); + ADVANCE(814); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') ADVANCE(389); + if (lookahead == '|') + ADVANCE(535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17930,25 +18439,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 780: - if (lookahead == 0) - ADVANCE(1); + case 816: if (lookahead == '(') ADVANCE(5); - if (lookahead == ')') - ADVANCE(7); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') - ADVANCE(11); + ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -17958,13 +18460,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(781); + ADVANCE(817); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -17979,19 +18481,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(389); if (lookahead == '{') ADVANCE(368); - if (lookahead == '}') - ADVANCE(406); + if (lookahead == '|') + ADVANCE(535); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(780); - if (lookahead != '\"' && + SKIP(816); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && - lookahead != '@') + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 781: + case 817: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -18000,7 +18508,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(782); + ADVANCE(818); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18014,12 +18522,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 782: + case 818: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') - ADVANCE(405); + ADVANCE(328); if (lookahead == ':') ADVANCE(372); if (lookahead == '=') @@ -18033,13 +18541,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(781); + ADVANCE(817); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -18052,6 +18560,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(389); + if (lookahead == '|') + ADVANCE(535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18062,25 +18572,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 783: - if (lookahead == 0) - ADVANCE(1); + case 819: if (lookahead == '(') ADVANCE(5); - if (lookahead == ')') - ADVANCE(7); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -18090,13 +18593,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(784); + ADVANCE(820); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -18111,19 +18614,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '}') - ADVANCE(406); + if (lookahead == '|') + ADVANCE(535); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(783); - if (lookahead != '\"' && + SKIP(819); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && - lookahead != '@') + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 784: + case 820: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -18132,7 +18641,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(785); + ADVANCE(821); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18146,10 +18655,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 785: + case 821: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(328); if (lookahead == ':') @@ -18165,13 +18674,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(784); + ADVANCE(820); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -18184,6 +18693,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(422); + if (lookahead == '|') + ADVANCE(535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18194,25 +18705,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 786: - if (lookahead == 0) - ADVANCE(1); + case 822: if (lookahead == '(') ADVANCE(5); - if (lookahead == ')') - ADVANCE(7); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(11); - if (lookahead == ':') - ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); + ADVANCE(316); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -18222,13 +18724,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(787); + ADVANCE(823); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -18243,19 +18745,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '}') - ADVANCE(406); + if (lookahead == '|') + ADVANCE(535); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(786); - if (lookahead != '\"' && + SKIP(822); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && lookahead != '?' && - lookahead != '@') + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 787: + case 823: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -18264,7 +18771,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(788); + ADVANCE(824); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18278,14 +18785,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 788: + case 824: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(405); - if (lookahead == ':') - ADVANCE(372); + ADVANCE(328); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -18297,13 +18802,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(787); + ADVANCE(823); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -18316,6 +18821,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(422); + if (lookahead == '|') + ADVANCE(535); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18324,23 +18831,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 789: + case 825: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') ADVANCE(5); - if (lookahead == ')') - ADVANCE(7); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); if (lookahead == ';') ADVANCE(15); if (lookahead == '=') @@ -18352,13 +18857,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(790); + ADVANCE(826); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -18370,22 +18873,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '{') ADVANCE(368); - if (lookahead == '}') - ADVANCE(406); + if (lookahead == '|') + ADVANCE(397); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(789); + SKIP(825); if (lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && lookahead != '?' && - lookahead != '@') + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 790: + case 826: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -18394,7 +18900,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(791); + ADVANCE(827); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18408,12 +18914,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 791: + case 827: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -18425,13 +18933,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(790); + ADVANCE(826); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -18443,7 +18949,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); + if (lookahead == '|') + ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18452,22 +18960,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 792: + case 828: if (lookahead == 0) ADVANCE(1); if (lookahead == '(') ADVANCE(5); - if (lookahead == ')') - ADVANCE(7); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(11); + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); if (lookahead == ';') ADVANCE(15); if (lookahead == '=') @@ -18479,13 +18987,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(793); + ADVANCE(829); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -18500,19 +19006,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '}') - ADVANCE(406); + if (lookahead == '|') + ADVANCE(397); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(792); + SKIP(828); if (lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && lookahead != '?' && - lookahead != '@') + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 793: + case 829: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -18521,7 +19030,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(794); + ADVANCE(830); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18535,12 +19044,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 794: + case 830: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(405); + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -18552,13 +19063,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(793); + ADVANCE(829); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -18571,6 +19080,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(422); + if (lookahead == '|') + ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18579,52 +19090,156 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 795: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '(') - ADVANCE(5); - if (lookahead == ')') - ADVANCE(7); + case 831: if (lookahead == '-') - ADVANCE(303); - if (lookahead == '.') - ADVANCE(316); + ADVANCE(8); + if (lookahead == ':') + ADVANCE(14); if (lookahead == ';') ADVANCE(15); if (lookahead == '=') - ADVANCE(373); - if (lookahead == '?') - ADVANCE(318); - if (lookahead == 'P') - ADVANCE(319); - if (lookahead == 'S') - ADVANCE(323); + ADVANCE(16); if (lookahead == '\\') - ADVANCE(796); - if (lookahead == '_') - ADVANCE(150); + SKIP(832); + if (lookahead == 'm') + ADVANCE(212); + if (lookahead == 'r') + ADVANCE(734); + if (lookahead == 'w') + ADVANCE(275); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(831); + END_STATE(); + case 832: + if (lookahead == 'n') + SKIP(831); + END_STATE(); + case 833: + if (lookahead == '(') + ADVANCE(411); + if (lookahead == '-') + ADVANCE(8); + if (lookahead == '.') + ADVANCE(412); + if (lookahead == ':') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(834); + if (lookahead == 'm') + ADVANCE(212); + if (lookahead == 'r') + ADVANCE(734); + if (lookahead == 'w') + ADVANCE(275); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(833); + END_STATE(); + case 834: + if (lookahead == 'n') + SKIP(833); + END_STATE(); + case 835: + if (lookahead == '-') + ADVANCE(458); + if (lookahead == ':') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(836); + if (lookahead == 'm') + ADVANCE(212); + if (lookahead == 'w') + ADVANCE(275); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(835); + END_STATE(); + case 836: + if (lookahead == 'n') + SKIP(835); + END_STATE(); + case 837: + if (lookahead == '-') + ADVANCE(458); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '\\') + SKIP(838); + if (lookahead == 'm') + ADVANCE(212); + if (lookahead == 'w') + ADVANCE(415); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(837); + END_STATE(); + case 838: + if (lookahead == 'n') + SKIP(837); + END_STATE(); + case 839: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == ')') + ADVANCE(7); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(840); + if (lookahead == '_') + ADVANCE(150); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == 'w') - ADVANCE(422); if (lookahead == '{') ADVANCE(368); if (lookahead == '|') @@ -18635,13 +19250,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(795); - if (lookahead != '\"' && + SKIP(839); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 796: + case 840: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -18650,7 +19268,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(797); + ADVANCE(841); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18664,12 +19282,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 797: + case 841: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -18681,25 +19301,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(796); + ADVANCE(840); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == 'w') - ADVANCE(422); if (lookahead == '|') ADVANCE(397); if (lookahead != 0 && @@ -18710,21 +19324,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 798: + case 842: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '(') ADVANCE(5); + if (lookahead == ')') + ADVANCE(7); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -18734,13 +19351,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(799); + ADVANCE(843); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -18752,25 +19369,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(389); + ADVANCE(422); if (lookahead == '{') ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); if (lookahead == '}') - ADVANCE(370); + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(798); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && + SKIP(842); + if (lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 799: + case 843: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -18779,7 +19397,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(800); + ADVANCE(844); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18793,7 +19411,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 800: + case 844: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -18812,13 +19430,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(799); + ADVANCE(843); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -18830,7 +19448,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(389); + ADVANCE(422); + if (lookahead == '|') + ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18841,21 +19461,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 801: + case 845: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') - ADVANCE(11); + ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -18865,43 +19482,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(802); + ADVANCE(846); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == 'w') - ADVANCE(389); if (lookahead == '{') ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); if (lookahead == '}') ADVANCE(370); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(801); + SKIP(845); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 802: + case 846: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -18910,7 +19525,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(803); + ADVANCE(847); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18924,12 +19539,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 803: + case 847: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') - ADVANCE(405); + ADVANCE(328); if (lookahead == ':') ADVANCE(372); if (lookahead == '=') @@ -18943,25 +19558,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(802); + ADVANCE(846); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); - if (lookahead == 'i') - ADVANCE(523); if (lookahead == 'l') ADVANCE(336); - if (lookahead == 'm') - ADVANCE(376); if (lookahead == 'q') ADVANCE(346); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') ADVANCE(361); - if (lookahead == 'w') - ADVANCE(389); + if (lookahead == '|') + ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18972,11 +19583,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 804: + case 848: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -18985,8 +19595,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -18996,13 +19604,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(805); + ADVANCE(849); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19017,22 +19625,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(422); if (lookahead == '{') ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); if (lookahead == '}') ADVANCE(370); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(804); + SKIP(848); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 805: + case 849: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -19041,7 +19653,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(806); + ADVANCE(850); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19055,7 +19667,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 806: + case 850: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -19074,13 +19686,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(805); + ADVANCE(849); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19093,6 +19705,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(422); + if (lookahead == '|') + ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19103,21 +19717,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - lookahead != '{' && - lookahead != '}') + (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 807: + case 851: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '(') ADVANCE(5); + if (lookahead == ')') + ADVANCE(7); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(11); + ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -19127,13 +19742,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(808); + ADVANCE(852); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19145,25 +19760,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '{') ADVANCE(368); if (lookahead == '}') - ADVANCE(370); + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(807); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && + SKIP(851); + if (lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 808: + case 852: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -19172,7 +19786,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(809); + ADVANCE(853); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19186,12 +19800,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 809: + case 853: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(405); + ADVANCE(328); if (lookahead == ':') ADVANCE(372); if (lookahead == '=') @@ -19205,13 +19819,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(808); + ADVANCE(852); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19223,7 +19837,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19238,15 +19852,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 810: + case 854: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '(') ADVANCE(5); + if (lookahead == ')') + ADVANCE(7); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); + ADVANCE(11); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -19256,13 +19874,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(811); + ADVANCE(855); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19274,25 +19892,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '{') ADVANCE(368); if (lookahead == '}') - ADVANCE(370); + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(810); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && + SKIP(854); + if (lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 811: + case 855: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -19301,7 +19918,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(812); + ADVANCE(856); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19315,12 +19932,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 812: + case 856: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(328); + ADVANCE(405); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -19332,13 +19951,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(811); + ADVANCE(855); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19350,7 +19969,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19359,20 +19978,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && lookahead != '{' && lookahead != '}') ADVANCE(315); END_STATE(); - case 813: + case 857: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '(') ADVANCE(5); + if (lookahead == ')') + ADVANCE(7); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(11); - if (lookahead == ';') - ADVANCE(15); + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -19382,13 +20006,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(814); + ADVANCE(858); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19404,21 +20028,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(368); if (lookahead == '}') - ADVANCE(370); + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(813); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && + SKIP(857); + if (lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 814: + case 858: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -19427,7 +20050,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(815); + ADVANCE(859); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19441,12 +20064,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 815: + case 859: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(405); + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -19458,13 +20083,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(814); + ADVANCE(858); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19485,20 +20110,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && lookahead != '{' && lookahead != '}') ADVANCE(315); END_STATE(); - case 816: + case 860: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '(') ADVANCE(5); + if (lookahead == ')') + ADVANCE(7); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') - ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); + ADVANCE(11); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -19508,13 +20138,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(817); + ADVANCE(861); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19529,24 +20159,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(397); if (lookahead == '}') - ADVANCE(370); + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(816); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && + SKIP(860); + if (lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 817: + case 861: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -19555,7 +20182,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(818); + ADVANCE(862); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19569,12 +20196,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 818: + case 862: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') - ADVANCE(328); + ADVANCE(405); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -19586,13 +20215,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(817); + ADVANCE(861); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19605,8 +20234,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(422); - if (lookahead == '|') - ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19615,19 +20242,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 819: + case 863: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '(') ADVANCE(5); + if (lookahead == ')') + ADVANCE(7); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == 'P') @@ -19635,13 +20268,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(820); + ADVANCE(864); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19662,16 +20295,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(819); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && + SKIP(863); + if (lookahead != '\"' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 820: + case 864: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -19680,7 +20311,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(821); + ADVANCE(865); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19694,12 +20325,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 821: + case 865: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(328); + if (lookahead == '=') + ADVANCE(373); if (lookahead == '?') ADVANCE(318); if (lookahead == '@') @@ -19709,13 +20342,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(820); + ADVANCE(864); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19741,17 +20374,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 822: + case 866: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '(') ADVANCE(5); + if (lookahead == ')') + ADVANCE(7); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(316); - if (lookahead == ':') - ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); + ADVANCE(11); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -19761,13 +20394,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(823); + ADVANCE(867); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19779,26 +20412,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(389); + ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(608); + if (lookahead == '}') + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(822); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && + SKIP(866); + if (lookahead != '\"' && + lookahead != ';' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 823: + case 867: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -19807,7 +20437,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(824); + ADVANCE(868); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19821,14 +20451,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 824: + case 868: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(328); - if (lookahead == ':') - ADVANCE(372); + ADVANCE(405); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -19840,13 +20468,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(823); + ADVANCE(867); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19858,9 +20486,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(389); - if (lookahead == '|') - ADVANCE(608); + ADVANCE(422); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19869,22 +20495,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 825: + case 869: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '(') ADVANCE(5); + if (lookahead == ')') + ADVANCE(7); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') - ADVANCE(11); - if (lookahead == ':') - ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); + ADVANCE(316); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -19894,13 +20520,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(826); + ADVANCE(870); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19912,26 +20538,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(389); + ADVANCE(422); if (lookahead == '{') ADVANCE(368); if (lookahead == '|') - ADVANCE(608); + ADVANCE(397); + if (lookahead == '}') + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(825); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '(' && - lookahead != ')' && + SKIP(869); + if (lookahead != '\"' && + lookahead != ';' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 826: + case 870: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -19940,7 +20565,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(827); + ADVANCE(871); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19954,14 +20579,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 827: + case 871: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') - ADVANCE(405); - if (lookahead == ':') - ADVANCE(372); + ADVANCE(328); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -19973,13 +20596,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(826); + ADVANCE(870); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -19991,9 +20614,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(389); + ADVANCE(422); if (lookahead == '|') - ADVANCE(608); + ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20002,12 +20625,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != ';' && (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 828: + case 872: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -20016,8 +20638,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(316); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -20027,13 +20647,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(829); + ADVANCE(873); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -20045,26 +20665,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(608); + if (lookahead == '}') + ADVANCE(370); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(828); + SKIP(872); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 829: + case 873: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -20073,7 +20694,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(830); + ADVANCE(874); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20087,7 +20708,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 830: + case 874: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -20106,13 +20727,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(829); + ADVANCE(873); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -20124,9 +20745,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); - if (lookahead == '|') - ADVANCE(608); + ADVANCE(389); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20137,10 +20756,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 831: + case 875: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -20149,8 +20769,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(11); if (lookahead == ':') ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -20160,13 +20778,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(832); + ADVANCE(876); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -20178,26 +20796,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(608); + if (lookahead == '}') + ADVANCE(370); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(831); + SKIP(875); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 832: + case 876: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -20206,7 +20825,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(833); + ADVANCE(877); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20220,7 +20839,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 833: + case 877: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -20239,13 +20858,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(832); + ADVANCE(876); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -20257,9 +20876,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); - if (lookahead == '|') - ADVANCE(608); + ADVANCE(389); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20270,18 +20887,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 834: + case 878: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -20291,13 +20909,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(835); + ADVANCE(879); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -20312,23 +20930,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(608); + if (lookahead == '}') + ADVANCE(370); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(834); + SKIP(878); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 835: + case 879: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -20337,7 +20956,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(836); + ADVANCE(880); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20351,12 +20970,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 836: + case 880: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -20368,13 +20989,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(835); + ADVANCE(879); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -20387,8 +21008,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(422); - if (lookahead == '|') - ADVANCE(608); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20397,19 +21016,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 837: + case 881: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') ADVANCE(11); - if (lookahead == ';') - ADVANCE(15); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -20419,13 +21040,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(838); + ADVANCE(882); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -20440,23 +21061,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(608); + if (lookahead == '}') + ADVANCE(370); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(837); + SKIP(881); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && + lookahead != ';' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 838: + case 882: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -20465,7 +21087,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(839); + ADVANCE(883); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20479,12 +21101,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 839: + case 883: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') ADVANCE(405); + if (lookahead == ':') + ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -20496,13 +21120,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(838); + ADVANCE(882); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -20515,8 +21139,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(422); - if (lookahead == '|') - ADVANCE(608); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20525,19 +21147,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ':' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 840: + case 884: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(316); - if (lookahead == ';') - ADVANCE(15); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -20547,13 +21169,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(841); + ADVANCE(885); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -20568,23 +21190,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(531); + if (lookahead == '}') + ADVANCE(370); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(840); + SKIP(884); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && + lookahead != ';' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 841: + case 885: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -20593,7 +21215,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(842); + ADVANCE(886); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20607,10 +21229,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 842: + case 886: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(303); + ADVANCE(427); if (lookahead == '.') ADVANCE(328); if (lookahead == '=') @@ -20624,13 +21246,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(841); + ADVANCE(885); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -20643,8 +21265,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(361); if (lookahead == 'w') ADVANCE(422); - if (lookahead == '|') - ADVANCE(531); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20654,24 +21274,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || lookahead > '}')) + lookahead != '{' && + lookahead != '}') ADVANCE(315); END_STATE(); - case 843: - if (lookahead == 0) - ADVANCE(1); + case 887: if (lookahead == '(') ADVANCE(5); - if (lookahead == ')') - ADVANCE(7); if (lookahead == '-') ADVANCE(427); if (lookahead == '.') - ADVANCE(316); - if (lookahead == ':') - ADVANCE(372); - if (lookahead == ';') - ADVANCE(15); + ADVANCE(11); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -20681,13 +21294,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(844); + ADVANCE(888); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -20699,24 +21312,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(389); + ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(397); if (lookahead == '}') - ADVANCE(406); + ADVANCE(370); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(843); - if (lookahead != '\"' && + SKIP(887); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && lookahead != '?' && lookahead != '@') ADVANCE(315); END_STATE(); - case 844: + case 888: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -20725,7 +21340,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(845); + ADVANCE(889); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20739,14 +21354,139 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 845: + case 889: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); + if (lookahead == '.') + ADVANCE(405); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(888); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 890: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(891); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '}') + ADVANCE(370); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(890); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 891: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(892); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 892: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); if (lookahead == '.') ADVANCE(328); - if (lookahead == ':') - ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -20758,13 +21498,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(844); + ADVANCE(891); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -20776,7 +21516,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(389); + ADVANCE(422); if (lookahead == '|') ADVANCE(397); if (lookahead != 0 && @@ -20787,20 +21527,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\"' && lookahead != '(' && lookahead != ')' && - lookahead != ':' && lookahead != ';' && (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 846: + case 893: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(316); - if (lookahead == ':') - ADVANCE(372); if (lookahead == ';') ADVANCE(15); if (lookahead == '=') @@ -20812,13 +21549,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(847); + ADVANCE(894); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -20830,18 +21567,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(389); + ADVANCE(422); if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') - ADVANCE(397); if (lookahead == '}') - ADVANCE(370); + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(846); + SKIP(893); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && @@ -20850,7 +21585,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@') ADVANCE(315); END_STATE(); - case 847: + case 894: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -20859,7 +21594,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(848); + ADVANCE(895); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20873,14 +21608,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 848: + case 895: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(328); - if (lookahead == ':') - ADVANCE(372); if (lookahead == '=') ADVANCE(373); if (lookahead == '?') @@ -20892,13 +21625,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(847); + ADVANCE(894); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -20910,7 +21643,304 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(389); + ADVANCE(422); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 896: + if (lookahead == '-') + ADVANCE(8); + if (lookahead == ':') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(897); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(896); + END_STATE(); + case 897: + if (lookahead == 'n') + SKIP(896); + END_STATE(); + case 898: + if (lookahead == '(') + ADVANCE(411); + if (lookahead == '-') + ADVANCE(8); + if (lookahead == '.') + ADVANCE(412); + if (lookahead == ':') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(899); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(898); + END_STATE(); + case 899: + if (lookahead == 'n') + SKIP(898); + END_STATE(); + case 900: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(901); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(900); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 901: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(902); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 902: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(901); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 903: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(904); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(903); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 904: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(905); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 905: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(904); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); if (lookahead == '|') ADVANCE(397); if (lookahead != 0 && @@ -20926,7 +21956,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 849: + case 906: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') @@ -20946,19 +21976,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(850); + ADVANCE(907); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') @@ -20968,22 +22000,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(368); if (lookahead == '|') - ADVANCE(531); + ADVANCE(397); + if (lookahead == '}') + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(849); + SKIP(906); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 850: + case 907: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -20992,7 +22025,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(851); + ADVANCE(908); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -21006,7 +22039,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 851: + case 908: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') ADVANCE(427); @@ -21025,19 +22058,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(850); + ADVANCE(907); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') ADVANCE(376); if (lookahead == 'q') ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); if (lookahead == 's') ADVANCE(355); if (lookahead == 'u') @@ -21045,7 +22080,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(389); if (lookahead == '|') - ADVANCE(531); + ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -21059,11 +22094,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - case 852: + case 909: if (lookahead == '(') ADVANCE(5); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(316); if (lookahead == ':') @@ -21079,13 +22114,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(853); + ADVANCE(910); if (lookahead == '_') ADVANCE(150); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -21097,26 +22132,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '{') ADVANCE(368); if (lookahead == '|') - ADVANCE(531); + ADVANCE(397); + if (lookahead == '}') + ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(852); + SKIP(909); if (lookahead != 0 && lookahead != '\"' && lookahead != '(' && lookahead != ')' && lookahead != '?' && - lookahead != '@' && - (lookahead < '{' || lookahead > '}')) + lookahead != '@') ADVANCE(315); END_STATE(); - case 853: + case 910: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '.') ADVANCE(310); @@ -21125,7 +22161,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(313); if (lookahead == 'n') - ADVANCE(854); + ADVANCE(911); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -21139,10 +22175,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(315); END_STATE(); - case 854: + case 911: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(427); + ADVANCE(303); if (lookahead == '.') ADVANCE(328); if (lookahead == ':') @@ -21158,13 +22194,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'S') ADVANCE(323); if (lookahead == '\\') - ADVANCE(853); + ADVANCE(910); if (lookahead == '_') ADVANCE(329); if (lookahead == 'f') ADVANCE(330); if (lookahead == 'i') - ADVANCE(523); + ADVANCE(527); if (lookahead == 'l') ADVANCE(336); if (lookahead == 'm') @@ -21176,9 +22212,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(361); if (lookahead == 'w') - ADVANCE(422); + ADVANCE(389); if (lookahead == '|') - ADVANCE(531); + ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -21192,45 +22228,5910 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(315); END_STATE(); - default: - return false; - } -} - -static TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0}, - [1] = {.lex_state = 302}, - [2] = {.lex_state = 371}, - [3] = {.lex_state = 398}, - [4] = {.lex_state = 402}, - [5] = {.lex_state = 407}, - [6] = {.lex_state = 410}, - [7] = {.lex_state = 410}, - [8] = {.lex_state = 302}, - [9] = {.lex_state = 402}, - [10] = {.lex_state = 402}, - [11] = {.lex_state = 410}, - [12] = {.lex_state = 416}, - [13] = {.lex_state = 416}, - [14] = {.lex_state = 416}, - [15] = {.lex_state = 410}, - [16] = {.lex_state = 371}, - [17] = {.lex_state = 371}, - [18] = {.lex_state = 419}, - [19] = {.lex_state = 302}, - [20] = {.lex_state = 302}, - [21] = {.lex_state = 302}, - [22] = {.lex_state = 302}, - [23] = {.lex_state = 423}, - [24] = {.lex_state = 371}, - [25] = {.lex_state = 426}, - [26] = {.lex_state = 398}, - [27] = {.lex_state = 398}, - [28] = {.lex_state = 410}, - [29] = {.lex_state = 402}, - [30] = {.lex_state = 371}, - [31] = {.lex_state = 407}, - [32] = {.lex_state = 410}, + case 912: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(913); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(912); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 913: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(914); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 914: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(913); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 915: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(916); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(915); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 916: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(917); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 917: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(916); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 918: + if (lookahead == '-') + ADVANCE(8); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '\\') + SKIP(919); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(918); + END_STATE(); + case 919: + if (lookahead == 'n') + SKIP(918); + END_STATE(); + case 920: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(921); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(920); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 921: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(922); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 922: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(921); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 923: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(11); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(924); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(923); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 924: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(925); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 925: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(405); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(924); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 926: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(927); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(926); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 927: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(928); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 928: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(927); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 929: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(930); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(929); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 930: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(931); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 931: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(930); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 932: + if (lookahead == '(') + ADVANCE(411); + if (lookahead == '-') + ADVANCE(8); + if (lookahead == '.') + ADVANCE(412); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '\\') + SKIP(933); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(932); + END_STATE(); + case 933: + if (lookahead == 'n') + SKIP(932); + END_STATE(); + case 934: + if (lookahead == '-') + ADVANCE(8); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(935); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(934); + END_STATE(); + case 935: + if (lookahead == 'n') + SKIP(934); + END_STATE(); + case 936: + if (lookahead == '(') + ADVANCE(411); + if (lookahead == '-') + ADVANCE(8); + if (lookahead == '.') + ADVANCE(412); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(937); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(936); + END_STATE(); + case 937: + if (lookahead == 'n') + SKIP(936); + END_STATE(); + case 938: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(939); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(938); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 939: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(940); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 940: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(939); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 941: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(942); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(941); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 942: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(943); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 943: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(942); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 944: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(945); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(944); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 945: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(946); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 946: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(945); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 947: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(948); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(617); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(947); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 948: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(949); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 949: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(948); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '|') + ADVANCE(617); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 950: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(11); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(951); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(617); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(950); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 951: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(952); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 952: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(405); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(951); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '|') + ADVANCE(617); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 953: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(954); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(617); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(953); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 954: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(955); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 955: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(954); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(617); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 956: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(11); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(957); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(617); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(956); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 957: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(958); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 958: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(405); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(957); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(617); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 959: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(960); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(617); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(959); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 960: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(961); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 961: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(960); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(617); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 962: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(11); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(963); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(617); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(962); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 963: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(964); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 964: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(405); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(963); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(617); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 965: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(966); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(535); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(965); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 966: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(967); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 967: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(966); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(535); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 968: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '(') + ADVANCE(5); + if (lookahead == ')') + ADVANCE(7); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(969); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(968); + if (lookahead != '\"' && + lookahead != ':' && + lookahead != ';' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 969: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(970); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 970: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(969); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 971: + if (lookahead == '-') + ADVANCE(458); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(972); + if (lookahead == 'm') + ADVANCE(212); + if (lookahead == 'w') + ADVANCE(415); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(971); + END_STATE(); + case 972: + if (lookahead == 'n') + SKIP(971); + END_STATE(); + case 973: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(974); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '}') + ADVANCE(370); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(973); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 974: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(975); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 975: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(974); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 976: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(977); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(976); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 977: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(978); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 978: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(977); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 979: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(980); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(979); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 980: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(981); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 981: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(980); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 982: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(11); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(983); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(982); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 983: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(984); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 984: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(405); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(983); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 985: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(986); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(985); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 986: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(987); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 987: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(986); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 988: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(11); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(989); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(988); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 989: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(990); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 990: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(405); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(989); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 991: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(992); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(991); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 992: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(993); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 993: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(992); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 994: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(995); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(994); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 995: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(996); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 996: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(995); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 'r') + ADVANCE(382); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 997: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(998); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(997); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 998: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(999); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 999: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(998); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1000: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1001); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1000); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1001: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1002); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1002: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1001); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1003: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1004); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1003); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1004: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1005); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1005: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1004); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1006: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1007); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(535); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1006); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1007: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1008); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1008: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1007); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '|') + ADVANCE(535); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1009: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1010); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(535); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1009); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1010: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1011); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1011: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1010); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(535); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1012: + if (lookahead == '-') + ADVANCE(8); + if (lookahead == ':') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(1013); + if (lookahead == 'm') + ADVANCE(212); + if (lookahead == 'w') + ADVANCE(275); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1012); + END_STATE(); + case 1013: + if (lookahead == 'n') + SKIP(1012); + END_STATE(); + case 1014: + if (lookahead == '(') + ADVANCE(411); + if (lookahead == '-') + ADVANCE(8); + if (lookahead == '.') + ADVANCE(412); + if (lookahead == ':') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(1015); + if (lookahead == 'm') + ADVANCE(212); + if (lookahead == 'w') + ADVANCE(275); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1014); + END_STATE(); + case 1015: + if (lookahead == 'n') + SKIP(1014); + END_STATE(); + case 1016: + if (lookahead == '-') + ADVANCE(8); + if (lookahead == ':') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(1017); + if (lookahead == 'm') + ADVANCE(212); + if (lookahead == 'w') + ADVANCE(415); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1016); + END_STATE(); + case 1017: + if (lookahead == 'n') + SKIP(1016); + END_STATE(); + case 1018: + if (lookahead == '(') + ADVANCE(411); + if (lookahead == '-') + ADVANCE(8); + if (lookahead == '.') + ADVANCE(412); + if (lookahead == ':') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(1019); + if (lookahead == 'm') + ADVANCE(212); + if (lookahead == 'w') + ADVANCE(415); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1018); + END_STATE(); + case 1019: + if (lookahead == 'n') + SKIP(1018); + END_STATE(); + case 1020: + if (lookahead == '-') + ADVANCE(8); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(1021); + if (lookahead == 'm') + ADVANCE(212); + if (lookahead == 'w') + ADVANCE(415); + if (lookahead == '{') + ADVANCE(460); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1020); + END_STATE(); + case 1021: + if (lookahead == 'n') + SKIP(1020); + END_STATE(); + case 1022: + if (lookahead == '(') + ADVANCE(411); + if (lookahead == '-') + ADVANCE(8); + if (lookahead == '.') + ADVANCE(412); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(16); + if (lookahead == '\\') + SKIP(1023); + if (lookahead == 'm') + ADVANCE(212); + if (lookahead == 'w') + ADVANCE(415); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1022); + END_STATE(); + case 1023: + if (lookahead == 'n') + SKIP(1022); + END_STATE(); + case 1024: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1025); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1024); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 1025: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1026); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1026: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1025); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1027: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(11); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1028); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1027); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 1028: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1029); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1029: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(405); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1028); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1030: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1031); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1030); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 1031: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1032); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1032: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1031); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1033: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1034); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '}') + ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1033); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@') + ADVANCE(315); + END_STATE(); + case 1034: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1035); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1035: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1034); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1036: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1037); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1036); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1037: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1038); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1038: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1037); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1039: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(11); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1040); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1039); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1040: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1041); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1041: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(405); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1040); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1042: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1043); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1042); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1043: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1044); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1044: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1043); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1045: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(11); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1046); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1045); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1046: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1047); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1047: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(405); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1046); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1048: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1049); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1048); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1049: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1050); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1050: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1049); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1051: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(11); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1052); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1051); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1052: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1053); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1053: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(405); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1052); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1054: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1055); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1054); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1055: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1056); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1056: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(303); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1055); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1057: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1058); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1057); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1058: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1059); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1059: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1058); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(389); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1060: + if (lookahead == '(') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(316); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == ';') + ADVANCE(15); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1061); + if (lookahead == '_') + ADVANCE(150); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '{') + ADVANCE(368); + if (lookahead == '|') + ADVANCE(397); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(1060); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + case 1061: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.') + ADVANCE(310); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == '_') + ADVANCE(313); + if (lookahead == 'n') + ADVANCE(1062); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '{' && + lookahead != '}') + ADVANCE(315); + END_STATE(); + case 1062: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(427); + if (lookahead == '.') + ADVANCE(328); + if (lookahead == ':') + ADVANCE(372); + if (lookahead == '=') + ADVANCE(373); + if (lookahead == '?') + ADVANCE(318); + if (lookahead == '@') + ADVANCE(312); + if (lookahead == 'P') + ADVANCE(319); + if (lookahead == 'S') + ADVANCE(323); + if (lookahead == '\\') + ADVANCE(1061); + if (lookahead == '_') + ADVANCE(329); + if (lookahead == 'f') + ADVANCE(330); + if (lookahead == 'i') + ADVANCE(527); + if (lookahead == 'l') + ADVANCE(336); + if (lookahead == 'm') + ADVANCE(376); + if (lookahead == 'q') + ADVANCE(346); + if (lookahead == 's') + ADVANCE(355); + if (lookahead == 'u') + ADVANCE(361); + if (lookahead == 'w') + ADVANCE(422); + if (lookahead == '|') + ADVANCE(397); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '\"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ':' && + lookahead != ';' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(315); + END_STATE(); + default: + return false; + } +} + +static TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 302}, + [2] = {.lex_state = 371}, + [3] = {.lex_state = 398}, + [4] = {.lex_state = 402}, + [5] = {.lex_state = 407}, + [6] = {.lex_state = 410}, + [7] = {.lex_state = 410}, + [8] = {.lex_state = 302}, + [9] = {.lex_state = 402}, + [10] = {.lex_state = 402}, + [11] = {.lex_state = 410}, + [12] = {.lex_state = 416}, + [13] = {.lex_state = 416}, + [14] = {.lex_state = 416}, + [15] = {.lex_state = 410}, + [16] = {.lex_state = 371}, + [17] = {.lex_state = 371}, + [18] = {.lex_state = 419}, + [19] = {.lex_state = 302}, + [20] = {.lex_state = 302}, + [21] = {.lex_state = 302}, + [22] = {.lex_state = 302}, + [23] = {.lex_state = 423}, + [24] = {.lex_state = 371}, + [25] = {.lex_state = 426, .external_lex_state = 2}, + [26] = {.lex_state = 398}, + [27] = {.lex_state = 398}, + [28] = {.lex_state = 410}, + [29] = {.lex_state = 402}, + [30] = {.lex_state = 371}, + [31] = {.lex_state = 407}, + [32] = {.lex_state = 410}, [33] = {.lex_state = 410}, [34] = {.lex_state = 302}, [35] = {.lex_state = 402}, @@ -21239,15 +28140,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [38] = {.lex_state = 410}, [39] = {.lex_state = 410}, [40] = {.lex_state = 410}, - [41] = {.lex_state = 410}, - [42] = {.lex_state = 426}, - [43] = {.lex_state = 426}, + [41] = {.lex_state = 410, .external_lex_state = 2}, + [42] = {.lex_state = 426, .external_lex_state = 2}, + [43] = {.lex_state = 426, .external_lex_state = 2}, [44] = {.lex_state = 402}, - [45] = {.lex_state = 410}, + [45] = {.lex_state = 410, .external_lex_state = 2}, [46] = {.lex_state = 302}, - [47] = {.lex_state = 431}, - [48] = {.lex_state = 410}, - [49] = {.lex_state = 434}, + [47] = {.lex_state = 431, .external_lex_state = 2}, + [48] = {.lex_state = 410, .external_lex_state = 2}, + [49] = {.lex_state = 434, .external_lex_state = 2}, [50] = {.lex_state = 398}, [51] = {.lex_state = 398}, [52] = {.lex_state = 402}, @@ -21261,28 +28162,28 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [60] = {.lex_state = 437}, [61] = {.lex_state = 437}, [62] = {.lex_state = 437}, - [63] = {.lex_state = 410}, - [64] = {.lex_state = 434}, - [65] = {.lex_state = 434}, + [63] = {.lex_state = 410, .external_lex_state = 2}, + [64] = {.lex_state = 434, .external_lex_state = 2}, + [65] = {.lex_state = 434, .external_lex_state = 2}, [66] = {.lex_state = 402}, [67] = {.lex_state = 302}, - [68] = {.lex_state = 431}, + [68] = {.lex_state = 431, .external_lex_state = 2}, [69] = {.lex_state = 410}, - [70] = {.lex_state = 439}, + [70] = {.lex_state = 439, .external_lex_state = 2}, [71] = {.lex_state = 302}, - [72] = {.lex_state = 439}, - [73] = {.lex_state = 457}, - [74] = {.lex_state = 514}, - [75] = {.lex_state = 517}, + [72] = {.lex_state = 457, .external_lex_state = 3}, + [73] = {.lex_state = 461}, + [74] = {.lex_state = 518, .external_lex_state = 2}, + [75] = {.lex_state = 521, .external_lex_state = 2}, [76] = {.lex_state = 410}, [77] = {.lex_state = 302}, [78] = {.lex_state = 302}, - [79] = {.lex_state = 457}, + [79] = {.lex_state = 461}, [80] = {.lex_state = 402}, - [81] = {.lex_state = 410}, - [82] = {.lex_state = 410}, - [83] = {.lex_state = 410}, - [84] = {.lex_state = 520}, + [81] = {.lex_state = 410, .external_lex_state = 2}, + [82] = {.lex_state = 410, .external_lex_state = 2}, + [83] = {.lex_state = 410, .external_lex_state = 2}, + [84] = {.lex_state = 524}, [85] = {.lex_state = 398}, [86] = {.lex_state = 402}, [87] = {.lex_state = 407}, @@ -21291,15 +28192,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [90] = {.lex_state = 302}, [91] = {.lex_state = 402}, [92] = {.lex_state = 402}, - [93] = {.lex_state = 525}, - [94] = {.lex_state = 525}, - [95] = {.lex_state = 525}, - [96] = {.lex_state = 520}, - [97] = {.lex_state = 520}, - [98] = {.lex_state = 525}, - [99] = {.lex_state = 525}, - [100] = {.lex_state = 525}, - [101] = {.lex_state = 525}, + [93] = {.lex_state = 529}, + [94] = {.lex_state = 529}, + [95] = {.lex_state = 529}, + [96] = {.lex_state = 524}, + [97] = {.lex_state = 524}, + [98] = {.lex_state = 529}, + [99] = {.lex_state = 529}, + [100] = {.lex_state = 529}, + [101] = {.lex_state = 529}, [102] = {.lex_state = 302}, [103] = {.lex_state = 423}, [104] = {.lex_state = 398}, @@ -21309,11 +28210,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [108] = {.lex_state = 302}, [109] = {.lex_state = 410}, [110] = {.lex_state = 410}, - [111] = {.lex_state = 410}, + [111] = {.lex_state = 410, .external_lex_state = 2}, [112] = {.lex_state = 402}, [113] = {.lex_state = 302}, - [114] = {.lex_state = 431}, - [115] = {.lex_state = 528}, + [114] = {.lex_state = 431, .external_lex_state = 2}, + [115] = {.lex_state = 532, .external_lex_state = 2}, [116] = {.lex_state = 398}, [117] = {.lex_state = 398}, [118] = {.lex_state = 402}, @@ -21325,22 +28226,22 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [124] = {.lex_state = 402}, [125] = {.lex_state = 410}, [126] = {.lex_state = 410}, - [127] = {.lex_state = 410}, - [128] = {.lex_state = 528}, - [129] = {.lex_state = 528}, + [127] = {.lex_state = 410, .external_lex_state = 2}, + [128] = {.lex_state = 532, .external_lex_state = 2}, + [129] = {.lex_state = 532, .external_lex_state = 2}, [130] = {.lex_state = 402}, [131] = {.lex_state = 302}, - [132] = {.lex_state = 431}, + [132] = {.lex_state = 431, .external_lex_state = 2}, [133] = {.lex_state = 302}, [134] = {.lex_state = 302}, - [135] = {.lex_state = 532}, + [135] = {.lex_state = 536}, [136] = {.lex_state = 419}, [137] = {.lex_state = 302}, [138] = {.lex_state = 402}, - [139] = {.lex_state = 302}, - [140] = {.lex_state = 535}, + [139] = {.lex_state = 457, .external_lex_state = 3}, + [140] = {.lex_state = 539}, [141] = {.lex_state = 302}, - [142] = {.lex_state = 545}, + [142] = {.lex_state = 548}, [143] = {.lex_state = 302}, [144] = {.lex_state = 416}, [145] = {.lex_state = 302}, @@ -21349,18 +28250,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [148] = {.lex_state = 402}, [149] = {.lex_state = 407}, [150] = {.lex_state = 402}, - [151] = {.lex_state = 426}, + [151] = {.lex_state = 426, .external_lex_state = 2}, [152] = {.lex_state = 402}, [153] = {.lex_state = 407}, [154] = {.lex_state = 402}, [155] = {.lex_state = 302}, [156] = {.lex_state = 302}, [157] = {.lex_state = 302}, - [158] = {.lex_state = 548}, + [158] = {.lex_state = 551, .external_lex_state = 2}, [159] = {.lex_state = 398}, [160] = {.lex_state = 398}, [161] = {.lex_state = 402}, - [162] = {.lex_state = 426}, + [162] = {.lex_state = 426, .external_lex_state = 2}, [163] = {.lex_state = 407}, [164] = {.lex_state = 410}, [165] = {.lex_state = 410}, @@ -21369,10 +28270,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [168] = {.lex_state = 402}, [169] = {.lex_state = 410}, [170] = {.lex_state = 410}, - [171] = {.lex_state = 548}, - [172] = {.lex_state = 548}, - [173] = {.lex_state = 431}, - [174] = {.lex_state = 551}, + [171] = {.lex_state = 551, .external_lex_state = 2}, + [172] = {.lex_state = 551, .external_lex_state = 2}, + [173] = {.lex_state = 431, .external_lex_state = 2}, + [174] = {.lex_state = 554, .external_lex_state = 2}, [175] = {.lex_state = 398}, [176] = {.lex_state = 398}, [177] = {.lex_state = 402}, @@ -21384,25 +28285,25 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [183] = {.lex_state = 402}, [184] = {.lex_state = 437}, [185] = {.lex_state = 437}, - [186] = {.lex_state = 551}, - [187] = {.lex_state = 551}, - [188] = {.lex_state = 431}, - [189] = {.lex_state = 439}, + [186] = {.lex_state = 554, .external_lex_state = 2}, + [187] = {.lex_state = 554, .external_lex_state = 2}, + [188] = {.lex_state = 431, .external_lex_state = 2}, + [189] = {.lex_state = 439, .external_lex_state = 2}, [190] = {.lex_state = 302}, - [191] = {.lex_state = 439}, - [192] = {.lex_state = 457}, - [193] = {.lex_state = 410}, - [194] = {.lex_state = 410}, + [191] = {.lex_state = 457, .external_lex_state = 3}, + [192] = {.lex_state = 461}, + [193] = {.lex_state = 410, .external_lex_state = 2}, + [194] = {.lex_state = 410, .external_lex_state = 2}, [195] = {.lex_state = 402}, [196] = {.lex_state = 398}, [197] = {.lex_state = 410}, [198] = {.lex_state = 410}, [199] = {.lex_state = 302}, - [200] = {.lex_state = 525}, - [201] = {.lex_state = 554}, - [202] = {.lex_state = 557}, - [203] = {.lex_state = 557}, - [204] = {.lex_state = 557}, + [200] = {.lex_state = 529}, + [201] = {.lex_state = 557}, + [202] = {.lex_state = 560}, + [203] = {.lex_state = 560}, + [204] = {.lex_state = 560}, [205] = {.lex_state = 302}, [206] = {.lex_state = 423}, [207] = {.lex_state = 398}, @@ -21412,47 +28313,47 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [211] = {.lex_state = 302}, [212] = {.lex_state = 410}, [213] = {.lex_state = 410}, - [214] = {.lex_state = 431}, + [214] = {.lex_state = 431, .external_lex_state = 2}, [215] = {.lex_state = 410}, [216] = {.lex_state = 371}, [217] = {.lex_state = 402}, [218] = {.lex_state = 410}, - [219] = {.lex_state = 560}, + [219] = {.lex_state = 563}, [220] = {.lex_state = 398}, [221] = {.lex_state = 402}, [222] = {.lex_state = 407}, [223] = {.lex_state = 402}, [224] = {.lex_state = 402}, [225] = {.lex_state = 410}, - [226] = {.lex_state = 560}, - [227] = {.lex_state = 560}, + [226] = {.lex_state = 563}, + [227] = {.lex_state = 563}, [228] = {.lex_state = 423}, [229] = {.lex_state = 410}, - [230] = {.lex_state = 431}, + [230] = {.lex_state = 431, .external_lex_state = 2}, [231] = {.lex_state = 302}, [232] = {.lex_state = 302}, [233] = {.lex_state = 402}, [234] = {.lex_state = 302}, - [235] = {.lex_state = 410}, + [235] = {.lex_state = 410, .external_lex_state = 2}, [236] = {.lex_state = 402}, [237] = {.lex_state = 407}, [238] = {.lex_state = 402}, - [239] = {.lex_state = 434}, + [239] = {.lex_state = 434, .external_lex_state = 2}, [240] = {.lex_state = 402}, [241] = {.lex_state = 407}, [242] = {.lex_state = 402}, - [243] = {.lex_state = 434}, + [243] = {.lex_state = 434, .external_lex_state = 2}, [244] = {.lex_state = 410}, [245] = {.lex_state = 437}, [246] = {.lex_state = 410}, - [247] = {.lex_state = 439}, + [247] = {.lex_state = 439, .external_lex_state = 2}, [248] = {.lex_state = 302}, - [249] = {.lex_state = 439}, - [250] = {.lex_state = 457}, - [251] = {.lex_state = 437}, - [252] = {.lex_state = 437}, + [249] = {.lex_state = 457, .external_lex_state = 3}, + [250] = {.lex_state = 461}, + [251] = {.lex_state = 437, .external_lex_state = 2}, + [252] = {.lex_state = 437, .external_lex_state = 2}, [253] = {.lex_state = 402}, - [254] = {.lex_state = 563}, + [254] = {.lex_state = 566}, [255] = {.lex_state = 398}, [256] = {.lex_state = 402}, [257] = {.lex_state = 407}, @@ -21461,15 +28362,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [260] = {.lex_state = 302}, [261] = {.lex_state = 402}, [262] = {.lex_state = 402}, - [263] = {.lex_state = 566}, - [264] = {.lex_state = 566}, - [265] = {.lex_state = 566}, - [266] = {.lex_state = 563}, - [267] = {.lex_state = 563}, - [268] = {.lex_state = 569}, - [269] = {.lex_state = 572}, - [270] = {.lex_state = 572}, - [271] = {.lex_state = 572}, + [263] = {.lex_state = 569}, + [264] = {.lex_state = 569}, + [265] = {.lex_state = 569}, + [266] = {.lex_state = 566}, + [267] = {.lex_state = 566}, + [268] = {.lex_state = 572}, + [269] = {.lex_state = 575}, + [270] = {.lex_state = 575}, + [271] = {.lex_state = 575}, [272] = {.lex_state = 302}, [273] = {.lex_state = 423}, [274] = {.lex_state = 410}, @@ -21477,24 +28378,24 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [276] = {.lex_state = 371}, [277] = {.lex_state = 402}, [278] = {.lex_state = 437}, - [279] = {.lex_state = 575}, + [279] = {.lex_state = 578}, [280] = {.lex_state = 398}, [281] = {.lex_state = 402}, [282] = {.lex_state = 407}, [283] = {.lex_state = 402}, [284] = {.lex_state = 402}, [285] = {.lex_state = 437}, - [286] = {.lex_state = 575}, - [287] = {.lex_state = 575}, + [286] = {.lex_state = 578}, + [287] = {.lex_state = 578}, [288] = {.lex_state = 423}, [289] = {.lex_state = 437}, [290] = {.lex_state = 302}, [291] = {.lex_state = 302}, - [292] = {.lex_state = 457}, - [293] = {.lex_state = 578}, + [292] = {.lex_state = 461}, + [293] = {.lex_state = 581, .external_lex_state = 4}, [294] = {.lex_state = 398}, [295] = {.lex_state = 402}, - [296] = {.lex_state = 514}, + [296] = {.lex_state = 518, .external_lex_state = 2}, [297] = {.lex_state = 407}, [298] = {.lex_state = 402}, [299] = {.lex_state = 410}, @@ -21502,180 +28403,180 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [301] = {.lex_state = 302}, [302] = {.lex_state = 402}, [303] = {.lex_state = 402}, - [304] = {.lex_state = 581}, - [305] = {.lex_state = 410}, - [306] = {.lex_state = 578}, - [307] = {.lex_state = 578}, - [308] = {.lex_state = 410}, - [309] = {.lex_state = 410}, - [310] = {.lex_state = 410}, - [311] = {.lex_state = 581}, - [312] = {.lex_state = 584}, - [313] = {.lex_state = 398}, - [314] = {.lex_state = 402}, - [315] = {.lex_state = 407}, - [316] = {.lex_state = 410}, + [304] = {.lex_state = 584, .external_lex_state = 2}, + [305] = {.lex_state = 587, .external_lex_state = 5}, + [306] = {.lex_state = 587, .external_lex_state = 5}, + [307] = {.lex_state = 581, .external_lex_state = 4}, + [308] = {.lex_state = 581, .external_lex_state = 4}, + [309] = {.lex_state = 589, .external_lex_state = 5}, + [310] = {.lex_state = 591, .external_lex_state = 5}, + [311] = {.lex_state = 589, .external_lex_state = 5}, + [312] = {.lex_state = 584, .external_lex_state = 2}, + [313] = {.lex_state = 593}, + [314] = {.lex_state = 398}, + [315] = {.lex_state = 402}, + [316] = {.lex_state = 407}, [317] = {.lex_state = 410}, - [318] = {.lex_state = 302}, - [319] = {.lex_state = 402}, + [318] = {.lex_state = 410}, + [319] = {.lex_state = 302}, [320] = {.lex_state = 402}, - [321] = {.lex_state = 437}, - [322] = {.lex_state = 584}, - [323] = {.lex_state = 584}, - [324] = {.lex_state = 302}, - [325] = {.lex_state = 514}, - [326] = {.lex_state = 398}, - [327] = {.lex_state = 402}, - [328] = {.lex_state = 407}, - [329] = {.lex_state = 402}, - [330] = {.lex_state = 410}, + [321] = {.lex_state = 402}, + [322] = {.lex_state = 437}, + [323] = {.lex_state = 593}, + [324] = {.lex_state = 593}, + [325] = {.lex_state = 302}, + [326] = {.lex_state = 439, .external_lex_state = 2}, + [327] = {.lex_state = 439, .external_lex_state = 2}, + [328] = {.lex_state = 410}, + [329] = {.lex_state = 398}, + [330] = {.lex_state = 593}, [331] = {.lex_state = 410}, - [332] = {.lex_state = 302}, - [333] = {.lex_state = 402}, - [334] = {.lex_state = 402}, - [335] = {.lex_state = 581}, - [336] = {.lex_state = 416}, - [337] = {.lex_state = 514}, - [338] = {.lex_state = 514}, - [339] = {.lex_state = 416}, - [340] = {.lex_state = 416}, - [341] = {.lex_state = 416}, - [342] = {.lex_state = 581}, - [343] = {.lex_state = 410}, - [344] = {.lex_state = 398}, - [345] = {.lex_state = 584}, + [332] = {.lex_state = 410}, + [333] = {.lex_state = 302}, + [334] = {.lex_state = 410}, + [335] = {.lex_state = 410}, + [336] = {.lex_state = 302}, + [337] = {.lex_state = 402}, + [338] = {.lex_state = 596}, + [339] = {.lex_state = 302}, + [340] = {.lex_state = 302}, + [341] = {.lex_state = 461}, + [342] = {.lex_state = 599}, + [343] = {.lex_state = 398}, + [344] = {.lex_state = 402}, + [345] = {.lex_state = 407}, [346] = {.lex_state = 410}, [347] = {.lex_state = 410}, [348] = {.lex_state = 302}, - [349] = {.lex_state = 410}, - [350] = {.lex_state = 410}, - [351] = {.lex_state = 302}, - [352] = {.lex_state = 402}, - [353] = {.lex_state = 587}, + [349] = {.lex_state = 402}, + [350] = {.lex_state = 402}, + [351] = {.lex_state = 410}, + [352] = {.lex_state = 599}, + [353] = {.lex_state = 599}, [354] = {.lex_state = 302}, - [355] = {.lex_state = 302}, - [356] = {.lex_state = 457}, - [357] = {.lex_state = 590}, - [358] = {.lex_state = 398}, - [359] = {.lex_state = 402}, - [360] = {.lex_state = 407}, - [361] = {.lex_state = 410}, - [362] = {.lex_state = 410}, - [363] = {.lex_state = 302}, + [355] = {.lex_state = 437}, + [356] = {.lex_state = 410}, + [357] = {.lex_state = 410}, + [358] = {.lex_state = 602, .external_lex_state = 2}, + [359] = {.lex_state = 398}, + [360] = {.lex_state = 398}, + [361] = {.lex_state = 402}, + [362] = {.lex_state = 407}, + [363] = {.lex_state = 402}, [364] = {.lex_state = 402}, - [365] = {.lex_state = 402}, - [366] = {.lex_state = 410}, - [367] = {.lex_state = 590}, - [368] = {.lex_state = 590}, - [369] = {.lex_state = 302}, - [370] = {.lex_state = 437}, - [371] = {.lex_state = 410}, - [372] = {.lex_state = 410}, - [373] = {.lex_state = 593}, - [374] = {.lex_state = 398}, - [375] = {.lex_state = 398}, - [376] = {.lex_state = 402}, - [377] = {.lex_state = 407}, - [378] = {.lex_state = 402}, - [379] = {.lex_state = 402}, - [380] = {.lex_state = 416}, - [381] = {.lex_state = 410}, - [382] = {.lex_state = 593}, - [383] = {.lex_state = 593}, - [384] = {.lex_state = 402}, - [385] = {.lex_state = 431}, - [386] = {.lex_state = 402}, + [365] = {.lex_state = 416}, + [366] = {.lex_state = 416}, + [367] = {.lex_state = 410, .external_lex_state = 2}, + [368] = {.lex_state = 602, .external_lex_state = 2}, + [369] = {.lex_state = 602, .external_lex_state = 2}, + [370] = {.lex_state = 402}, + [371] = {.lex_state = 431, .external_lex_state = 2}, + [372] = {.lex_state = 402}, + [373] = {.lex_state = 410, .external_lex_state = 2}, + [374] = {.lex_state = 524}, + [375] = {.lex_state = 524}, + [376] = {.lex_state = 410}, + [377] = {.lex_state = 437}, + [378] = {.lex_state = 410}, + [379] = {.lex_state = 439, .external_lex_state = 2}, + [380] = {.lex_state = 302}, + [381] = {.lex_state = 457, .external_lex_state = 3}, + [382] = {.lex_state = 461}, + [383] = {.lex_state = 605, .external_lex_state = 2}, + [384] = {.lex_state = 608, .external_lex_state = 2}, + [385] = {.lex_state = 402}, + [386] = {.lex_state = 529}, [387] = {.lex_state = 410}, - [388] = {.lex_state = 520}, - [389] = {.lex_state = 520}, - [390] = {.lex_state = 410}, - [391] = {.lex_state = 437}, - [392] = {.lex_state = 410}, - [393] = {.lex_state = 439}, - [394] = {.lex_state = 302}, - [395] = {.lex_state = 439}, - [396] = {.lex_state = 457}, - [397] = {.lex_state = 596}, - [398] = {.lex_state = 599}, - [399] = {.lex_state = 402}, - [400] = {.lex_state = 525}, - [401] = {.lex_state = 410}, - [402] = {.lex_state = 410}, - [403] = {.lex_state = 302}, - [404] = {.lex_state = 302}, - [405] = {.lex_state = 525}, - [406] = {.lex_state = 525}, - [407] = {.lex_state = 402}, - [408] = {.lex_state = 525}, - [409] = {.lex_state = 535}, - [410] = {.lex_state = 525}, - [411] = {.lex_state = 525}, - [412] = {.lex_state = 525}, - [413] = {.lex_state = 525}, - [414] = {.lex_state = 525}, - [415] = {.lex_state = 439}, - [416] = {.lex_state = 410}, - [417] = {.lex_state = 410}, + [388] = {.lex_state = 410}, + [389] = {.lex_state = 302}, + [390] = {.lex_state = 302}, + [391] = {.lex_state = 529}, + [392] = {.lex_state = 529}, + [393] = {.lex_state = 402}, + [394] = {.lex_state = 457, .external_lex_state = 3}, + [395] = {.lex_state = 539}, + [396] = {.lex_state = 529}, + [397] = {.lex_state = 529}, + [398] = {.lex_state = 529}, + [399] = {.lex_state = 529}, + [400] = {.lex_state = 529}, + [401] = {.lex_state = 410, .external_lex_state = 2}, + [402] = {.lex_state = 410, .external_lex_state = 2}, + [403] = {.lex_state = 402}, + [404] = {.lex_state = 398}, + [405] = {.lex_state = 410}, + [406] = {.lex_state = 410}, + [407] = {.lex_state = 302}, + [408] = {.lex_state = 529}, + [409] = {.lex_state = 557}, + [410] = {.lex_state = 560}, + [411] = {.lex_state = 302}, + [412] = {.lex_state = 423}, + [413] = {.lex_state = 402}, + [414] = {.lex_state = 398}, + [415] = {.lex_state = 423}, + [416] = {.lex_state = 402}, + [417] = {.lex_state = 407}, [418] = {.lex_state = 402}, - [419] = {.lex_state = 398}, - [420] = {.lex_state = 410}, - [421] = {.lex_state = 410}, - [422] = {.lex_state = 302}, - [423] = {.lex_state = 525}, - [424] = {.lex_state = 554}, - [425] = {.lex_state = 557}, - [426] = {.lex_state = 302}, - [427] = {.lex_state = 423}, + [419] = {.lex_state = 532, .external_lex_state = 2}, + [420] = {.lex_state = 402}, + [421] = {.lex_state = 407}, + [422] = {.lex_state = 402}, + [423] = {.lex_state = 532, .external_lex_state = 2}, + [424] = {.lex_state = 410}, + [425] = {.lex_state = 437}, + [426] = {.lex_state = 410, .external_lex_state = 2}, + [427] = {.lex_state = 410, .external_lex_state = 2}, [428] = {.lex_state = 402}, - [429] = {.lex_state = 398}, - [430] = {.lex_state = 423}, + [429] = {.lex_state = 611}, + [430] = {.lex_state = 398}, [431] = {.lex_state = 402}, [432] = {.lex_state = 407}, - [433] = {.lex_state = 402}, - [434] = {.lex_state = 528}, - [435] = {.lex_state = 402}, - [436] = {.lex_state = 407}, + [433] = {.lex_state = 410}, + [434] = {.lex_state = 410}, + [435] = {.lex_state = 302}, + [436] = {.lex_state = 402}, [437] = {.lex_state = 402}, - [438] = {.lex_state = 528}, - [439] = {.lex_state = 410}, - [440] = {.lex_state = 437}, - [441] = {.lex_state = 439}, - [442] = {.lex_state = 410}, - [443] = {.lex_state = 410}, - [444] = {.lex_state = 402}, - [445] = {.lex_state = 602}, - [446] = {.lex_state = 398}, - [447] = {.lex_state = 402}, - [448] = {.lex_state = 407}, + [438] = {.lex_state = 614}, + [439] = {.lex_state = 614}, + [440] = {.lex_state = 614}, + [441] = {.lex_state = 611}, + [442] = {.lex_state = 611}, + [443] = {.lex_state = 618}, + [444] = {.lex_state = 621}, + [445] = {.lex_state = 621}, + [446] = {.lex_state = 621}, + [447] = {.lex_state = 302}, + [448] = {.lex_state = 423}, [449] = {.lex_state = 410}, [450] = {.lex_state = 410}, - [451] = {.lex_state = 302}, - [452] = {.lex_state = 402}, - [453] = {.lex_state = 402}, - [454] = {.lex_state = 605}, - [455] = {.lex_state = 605}, - [456] = {.lex_state = 605}, - [457] = {.lex_state = 602}, - [458] = {.lex_state = 602}, - [459] = {.lex_state = 609}, - [460] = {.lex_state = 612}, - [461] = {.lex_state = 612}, - [462] = {.lex_state = 612}, - [463] = {.lex_state = 302}, - [464] = {.lex_state = 423}, + [451] = {.lex_state = 402}, + [452] = {.lex_state = 624}, + [453] = {.lex_state = 398}, + [454] = {.lex_state = 402}, + [455] = {.lex_state = 407}, + [456] = {.lex_state = 402}, + [457] = {.lex_state = 402}, + [458] = {.lex_state = 624}, + [459] = {.lex_state = 624}, + [460] = {.lex_state = 423}, + [461] = {.lex_state = 627}, + [462] = {.lex_state = 398}, + [463] = {.lex_state = 402}, + [464] = {.lex_state = 407}, [465] = {.lex_state = 410}, [466] = {.lex_state = 410}, - [467] = {.lex_state = 402}, - [468] = {.lex_state = 615}, - [469] = {.lex_state = 398}, - [470] = {.lex_state = 402}, - [471] = {.lex_state = 407}, - [472] = {.lex_state = 402}, - [473] = {.lex_state = 402}, - [474] = {.lex_state = 615}, - [475] = {.lex_state = 615}, + [467] = {.lex_state = 302}, + [468] = {.lex_state = 402}, + [469] = {.lex_state = 402}, + [470] = {.lex_state = 536}, + [471] = {.lex_state = 536}, + [472] = {.lex_state = 536}, + [473] = {.lex_state = 627}, + [474] = {.lex_state = 627}, + [475] = {.lex_state = 302}, [476] = {.lex_state = 423}, - [477] = {.lex_state = 618}, + [477] = {.lex_state = 630}, [478] = {.lex_state = 398}, [479] = {.lex_state = 402}, [480] = {.lex_state = 407}, @@ -21684,745 +28585,745 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [483] = {.lex_state = 302}, [484] = {.lex_state = 402}, [485] = {.lex_state = 402}, - [486] = {.lex_state = 532}, - [487] = {.lex_state = 532}, - [488] = {.lex_state = 532}, - [489] = {.lex_state = 618}, - [490] = {.lex_state = 618}, + [486] = {.lex_state = 419}, + [487] = {.lex_state = 419}, + [488] = {.lex_state = 419}, + [489] = {.lex_state = 630}, + [490] = {.lex_state = 630}, [491] = {.lex_state = 302}, [492] = {.lex_state = 423}, - [493] = {.lex_state = 621}, - [494] = {.lex_state = 398}, - [495] = {.lex_state = 402}, - [496] = {.lex_state = 407}, - [497] = {.lex_state = 410}, - [498] = {.lex_state = 410}, - [499] = {.lex_state = 302}, - [500] = {.lex_state = 402}, - [501] = {.lex_state = 402}, - [502] = {.lex_state = 419}, - [503] = {.lex_state = 419}, - [504] = {.lex_state = 419}, - [505] = {.lex_state = 621}, - [506] = {.lex_state = 621}, - [507] = {.lex_state = 302}, - [508] = {.lex_state = 423}, - [509] = {.lex_state = 419}, - [510] = {.lex_state = 624}, - [511] = {.lex_state = 398}, - [512] = {.lex_state = 398}, - [513] = {.lex_state = 402}, - [514] = {.lex_state = 407}, - [515] = {.lex_state = 410}, - [516] = {.lex_state = 410}, + [493] = {.lex_state = 419}, + [494] = {.lex_state = 633, .external_lex_state = 2}, + [495] = {.lex_state = 398}, + [496] = {.lex_state = 398}, + [497] = {.lex_state = 402}, + [498] = {.lex_state = 407}, + [499] = {.lex_state = 410}, + [500] = {.lex_state = 410}, + [501] = {.lex_state = 302}, + [502] = {.lex_state = 402}, + [503] = {.lex_state = 402}, + [504] = {.lex_state = 548}, + [505] = {.lex_state = 636}, + [506] = {.lex_state = 636}, + [507] = {.lex_state = 636}, + [508] = {.lex_state = 410, .external_lex_state = 2}, + [509] = {.lex_state = 633, .external_lex_state = 2}, + [510] = {.lex_state = 633, .external_lex_state = 2}, + [511] = {.lex_state = 402}, + [512] = {.lex_state = 302}, + [513] = {.lex_state = 431, .external_lex_state = 2}, + [514] = {.lex_state = 639, .external_lex_state = 6}, + [515] = {.lex_state = 639, .external_lex_state = 6}, + [516] = {.lex_state = 302}, [517] = {.lex_state = 302}, - [518] = {.lex_state = 402}, - [519] = {.lex_state = 402}, - [520] = {.lex_state = 545}, - [521] = {.lex_state = 627}, - [522] = {.lex_state = 627}, - [523] = {.lex_state = 627}, - [524] = {.lex_state = 410}, - [525] = {.lex_state = 624}, - [526] = {.lex_state = 624}, - [527] = {.lex_state = 402}, - [528] = {.lex_state = 302}, - [529] = {.lex_state = 431}, - [530] = {.lex_state = 398}, - [531] = {.lex_state = 416}, - [532] = {.lex_state = 419}, - [533] = {.lex_state = 302}, - [534] = {.lex_state = 302}, - [535] = {.lex_state = 302}, + [518] = {.lex_state = 410}, + [519] = {.lex_state = 410}, + [520] = {.lex_state = 302}, + [521] = {.lex_state = 642}, + [522] = {.lex_state = 398}, + [523] = {.lex_state = 402}, + [524] = {.lex_state = 407}, + [525] = {.lex_state = 402}, + [526] = {.lex_state = 402}, + [527] = {.lex_state = 642}, + [528] = {.lex_state = 642}, + [529] = {.lex_state = 642}, + [530] = {.lex_state = 423}, + [531] = {.lex_state = 398}, + [532] = {.lex_state = 402}, + [533] = {.lex_state = 407}, + [534] = {.lex_state = 402}, + [535] = {.lex_state = 402}, [536] = {.lex_state = 423}, - [537] = {.lex_state = 410}, + [537] = {.lex_state = 423}, [538] = {.lex_state = 410}, - [539] = {.lex_state = 302}, - [540] = {.lex_state = 630}, - [541] = {.lex_state = 398}, - [542] = {.lex_state = 402}, - [543] = {.lex_state = 407}, + [539] = {.lex_state = 437}, + [540] = {.lex_state = 410}, + [541] = {.lex_state = 410}, + [542] = {.lex_state = 410}, + [543] = {.lex_state = 410}, [544] = {.lex_state = 402}, - [545] = {.lex_state = 402}, - [546] = {.lex_state = 630}, - [547] = {.lex_state = 630}, - [548] = {.lex_state = 630}, - [549] = {.lex_state = 423}, - [550] = {.lex_state = 398}, - [551] = {.lex_state = 402}, - [552] = {.lex_state = 407}, - [553] = {.lex_state = 402}, - [554] = {.lex_state = 402}, - [555] = {.lex_state = 423}, - [556] = {.lex_state = 423}, - [557] = {.lex_state = 410}, - [558] = {.lex_state = 437}, - [559] = {.lex_state = 410}, - [560] = {.lex_state = 410}, + [545] = {.lex_state = 407}, + [546] = {.lex_state = 402}, + [547] = {.lex_state = 551, .external_lex_state = 2}, + [548] = {.lex_state = 402}, + [549] = {.lex_state = 407}, + [550] = {.lex_state = 402}, + [551] = {.lex_state = 551, .external_lex_state = 2}, + [552] = {.lex_state = 410}, + [553] = {.lex_state = 437}, + [554] = {.lex_state = 410, .external_lex_state = 2}, + [555] = {.lex_state = 410, .external_lex_state = 2}, + [556] = {.lex_state = 402}, + [557] = {.lex_state = 557}, + [558] = {.lex_state = 645}, + [559] = {.lex_state = 645}, + [560] = {.lex_state = 645}, [561] = {.lex_state = 410}, [562] = {.lex_state = 410}, - [563] = {.lex_state = 402}, - [564] = {.lex_state = 407}, + [563] = {.lex_state = 426, .external_lex_state = 2}, + [564] = {.lex_state = 402}, [565] = {.lex_state = 402}, - [566] = {.lex_state = 548}, + [566] = {.lex_state = 407}, [567] = {.lex_state = 402}, - [568] = {.lex_state = 407}, + [568] = {.lex_state = 554, .external_lex_state = 2}, [569] = {.lex_state = 402}, - [570] = {.lex_state = 548}, - [571] = {.lex_state = 410}, - [572] = {.lex_state = 437}, - [573] = {.lex_state = 439}, - [574] = {.lex_state = 410}, - [575] = {.lex_state = 410}, - [576] = {.lex_state = 402}, - [577] = {.lex_state = 554}, - [578] = {.lex_state = 633}, - [579] = {.lex_state = 633}, - [580] = {.lex_state = 633}, - [581] = {.lex_state = 410}, + [570] = {.lex_state = 407}, + [571] = {.lex_state = 402}, + [572] = {.lex_state = 554, .external_lex_state = 2}, + [573] = {.lex_state = 410}, + [574] = {.lex_state = 437}, + [575] = {.lex_state = 437, .external_lex_state = 2}, + [576] = {.lex_state = 437, .external_lex_state = 2}, + [577] = {.lex_state = 402}, + [578] = {.lex_state = 572}, + [579] = {.lex_state = 648}, + [580] = {.lex_state = 648}, + [581] = {.lex_state = 648}, [582] = {.lex_state = 410}, - [583] = {.lex_state = 426}, - [584] = {.lex_state = 402}, + [583] = {.lex_state = 410}, + [584] = {.lex_state = 426, .external_lex_state = 2}, [585] = {.lex_state = 402}, - [586] = {.lex_state = 407}, - [587] = {.lex_state = 402}, - [588] = {.lex_state = 551}, - [589] = {.lex_state = 402}, - [590] = {.lex_state = 407}, - [591] = {.lex_state = 402}, - [592] = {.lex_state = 551}, + [586] = {.lex_state = 410, .external_lex_state = 2}, + [587] = {.lex_state = 587, .external_lex_state = 5}, + [588] = {.lex_state = 589, .external_lex_state = 5}, + [589] = {.lex_state = 439, .external_lex_state = 2}, + [590] = {.lex_state = 402}, + [591] = {.lex_state = 596}, + [592] = {.lex_state = 410}, [593] = {.lex_state = 410}, - [594] = {.lex_state = 437}, - [595] = {.lex_state = 439}, - [596] = {.lex_state = 437}, - [597] = {.lex_state = 437}, + [594] = {.lex_state = 410, .external_lex_state = 2}, + [595] = {.lex_state = 402}, + [596] = {.lex_state = 605, .external_lex_state = 2}, + [597] = {.lex_state = 608, .external_lex_state = 2}, [598] = {.lex_state = 402}, - [599] = {.lex_state = 569}, - [600] = {.lex_state = 636}, - [601] = {.lex_state = 636}, - [602] = {.lex_state = 636}, - [603] = {.lex_state = 410}, - [604] = {.lex_state = 410}, - [605] = {.lex_state = 426}, - [606] = {.lex_state = 402}, - [607] = {.lex_state = 410}, - [608] = {.lex_state = 410}, - [609] = {.lex_state = 410}, - [610] = {.lex_state = 639}, - [611] = {.lex_state = 398}, + [599] = {.lex_state = 529}, + [600] = {.lex_state = 302}, + [601] = {.lex_state = 302}, + [602] = {.lex_state = 651}, + [603] = {.lex_state = 557}, + [604] = {.lex_state = 402}, + [605] = {.lex_state = 457, .external_lex_state = 3}, + [606] = {.lex_state = 539}, + [607] = {.lex_state = 560}, + [608] = {.lex_state = 654}, + [609] = {.lex_state = 560}, + [610] = {.lex_state = 410, .external_lex_state = 2}, + [611] = {.lex_state = 410, .external_lex_state = 2}, [612] = {.lex_state = 402}, - [613] = {.lex_state = 407}, + [613] = {.lex_state = 645}, [614] = {.lex_state = 402}, [615] = {.lex_state = 410}, - [616] = {.lex_state = 410}, - [617] = {.lex_state = 302}, - [618] = {.lex_state = 402}, - [619] = {.lex_state = 402}, - [620] = {.lex_state = 581}, + [616] = {.lex_state = 563}, + [617] = {.lex_state = 563}, + [618] = {.lex_state = 410}, + [619] = {.lex_state = 437}, + [620] = {.lex_state = 410}, [621] = {.lex_state = 410}, - [622] = {.lex_state = 639}, - [623] = {.lex_state = 639}, - [624] = {.lex_state = 410}, - [625] = {.lex_state = 410}, - [626] = {.lex_state = 410}, - [627] = {.lex_state = 581}, - [628] = {.lex_state = 402}, - [629] = {.lex_state = 587}, + [622] = {.lex_state = 431, .external_lex_state = 2}, + [623] = {.lex_state = 398}, + [624] = {.lex_state = 402}, + [625] = {.lex_state = 407}, + [626] = {.lex_state = 402}, + [627] = {.lex_state = 402}, + [628] = {.lex_state = 431, .external_lex_state = 2}, + [629] = {.lex_state = 431, .external_lex_state = 2}, [630] = {.lex_state = 410}, [631] = {.lex_state = 410}, - [632] = {.lex_state = 402}, - [633] = {.lex_state = 439}, - [634] = {.lex_state = 596}, - [635] = {.lex_state = 599}, - [636] = {.lex_state = 402}, - [637] = {.lex_state = 525}, - [638] = {.lex_state = 525}, - [639] = {.lex_state = 525}, - [640] = {.lex_state = 302}, - [641] = {.lex_state = 302}, - [642] = {.lex_state = 642}, - [643] = {.lex_state = 554}, + [632] = {.lex_state = 434, .external_lex_state = 2}, + [633] = {.lex_state = 434, .external_lex_state = 2}, + [634] = {.lex_state = 302}, + [635] = {.lex_state = 302}, + [636] = {.lex_state = 461}, + [637] = {.lex_state = 437, .external_lex_state = 2}, + [638] = {.lex_state = 587, .external_lex_state = 5}, + [639] = {.lex_state = 589, .external_lex_state = 5}, + [640] = {.lex_state = 437}, + [641] = {.lex_state = 439, .external_lex_state = 2}, + [642] = {.lex_state = 410}, + [643] = {.lex_state = 410}, [644] = {.lex_state = 402}, - [645] = {.lex_state = 557}, - [646] = {.lex_state = 535}, - [647] = {.lex_state = 557}, - [648] = {.lex_state = 645}, - [649] = {.lex_state = 557}, - [650] = {.lex_state = 439}, - [651] = {.lex_state = 410}, + [645] = {.lex_state = 596}, + [646] = {.lex_state = 437}, + [647] = {.lex_state = 437}, + [648] = {.lex_state = 410, .external_lex_state = 2}, + [649] = {.lex_state = 402}, + [650] = {.lex_state = 566}, + [651] = {.lex_state = 566}, [652] = {.lex_state = 410}, - [653] = {.lex_state = 402}, - [654] = {.lex_state = 554}, - [655] = {.lex_state = 633}, - [656] = {.lex_state = 402}, - [657] = {.lex_state = 410}, - [658] = {.lex_state = 560}, - [659] = {.lex_state = 560}, - [660] = {.lex_state = 410}, - [661] = {.lex_state = 437}, - [662] = {.lex_state = 410}, - [663] = {.lex_state = 410}, - [664] = {.lex_state = 431}, - [665] = {.lex_state = 398}, - [666] = {.lex_state = 402}, - [667] = {.lex_state = 407}, - [668] = {.lex_state = 402}, - [669] = {.lex_state = 402}, - [670] = {.lex_state = 431}, - [671] = {.lex_state = 431}, - [672] = {.lex_state = 410}, - [673] = {.lex_state = 410}, - [674] = {.lex_state = 434}, - [675] = {.lex_state = 434}, - [676] = {.lex_state = 302}, - [677] = {.lex_state = 302}, - [678] = {.lex_state = 457}, - [679] = {.lex_state = 437}, - [680] = {.lex_state = 410}, - [681] = {.lex_state = 410}, - [682] = {.lex_state = 437}, - [683] = {.lex_state = 648}, - [684] = {.lex_state = 398}, - [685] = {.lex_state = 402}, - [686] = {.lex_state = 407}, - [687] = {.lex_state = 402}, + [653] = {.lex_state = 437}, + [654] = {.lex_state = 410}, + [655] = {.lex_state = 439, .external_lex_state = 2}, + [656] = {.lex_state = 302}, + [657] = {.lex_state = 457, .external_lex_state = 3}, + [658] = {.lex_state = 461}, + [659] = {.lex_state = 657, .external_lex_state = 2}, + [660] = {.lex_state = 660, .external_lex_state = 2}, + [661] = {.lex_state = 402}, + [662] = {.lex_state = 569}, + [663] = {.lex_state = 569}, + [664] = {.lex_state = 569}, + [665] = {.lex_state = 569}, + [666] = {.lex_state = 569}, + [667] = {.lex_state = 410}, + [668] = {.lex_state = 410}, + [669] = {.lex_state = 302}, + [670] = {.lex_state = 302}, + [671] = {.lex_state = 663}, + [672] = {.lex_state = 572}, + [673] = {.lex_state = 402}, + [674] = {.lex_state = 457, .external_lex_state = 3}, + [675] = {.lex_state = 539}, + [676] = {.lex_state = 575}, + [677] = {.lex_state = 666}, + [678] = {.lex_state = 575}, + [679] = {.lex_state = 569}, + [680] = {.lex_state = 569}, + [681] = {.lex_state = 437}, + [682] = {.lex_state = 578}, + [683] = {.lex_state = 578}, + [684] = {.lex_state = 410}, + [685] = {.lex_state = 437}, + [686] = {.lex_state = 410}, + [687] = {.lex_state = 410}, [688] = {.lex_state = 410}, - [689] = {.lex_state = 410}, - [690] = {.lex_state = 302}, - [691] = {.lex_state = 402}, - [692] = {.lex_state = 402}, - [693] = {.lex_state = 581}, - [694] = {.lex_state = 437}, - [695] = {.lex_state = 648}, - [696] = {.lex_state = 648}, - [697] = {.lex_state = 437}, - [698] = {.lex_state = 437}, - [699] = {.lex_state = 437}, - [700] = {.lex_state = 581}, + [689] = {.lex_state = 437}, + [690] = {.lex_state = 410}, + [691] = {.lex_state = 410}, + [692] = {.lex_state = 581, .external_lex_state = 4}, + [693] = {.lex_state = 581, .external_lex_state = 4}, + [694] = {.lex_state = 410}, + [695] = {.lex_state = 437}, + [696] = {.lex_state = 669, .external_lex_state = 4}, + [697] = {.lex_state = 398}, + [698] = {.lex_state = 398}, + [699] = {.lex_state = 402}, + [700] = {.lex_state = 407}, [701] = {.lex_state = 410}, [702] = {.lex_state = 410}, - [703] = {.lex_state = 402}, - [704] = {.lex_state = 587}, - [705] = {.lex_state = 437}, - [706] = {.lex_state = 410}, - [707] = {.lex_state = 402}, - [708] = {.lex_state = 563}, - [709] = {.lex_state = 563}, - [710] = {.lex_state = 410}, - [711] = {.lex_state = 437}, - [712] = {.lex_state = 410}, - [713] = {.lex_state = 439}, + [703] = {.lex_state = 302}, + [704] = {.lex_state = 402}, + [705] = {.lex_state = 402}, + [706] = {.lex_state = 589, .external_lex_state = 5}, + [707] = {.lex_state = 672, .external_lex_state = 5}, + [708] = {.lex_state = 672, .external_lex_state = 5}, + [709] = {.lex_state = 672, .external_lex_state = 5}, + [710] = {.lex_state = 410, .external_lex_state = 2}, + [711] = {.lex_state = 669, .external_lex_state = 4}, + [712] = {.lex_state = 669, .external_lex_state = 4}, + [713] = {.lex_state = 402}, [714] = {.lex_state = 302}, - [715] = {.lex_state = 439}, - [716] = {.lex_state = 457}, - [717] = {.lex_state = 651}, - [718] = {.lex_state = 654}, - [719] = {.lex_state = 402}, - [720] = {.lex_state = 566}, - [721] = {.lex_state = 566}, - [722] = {.lex_state = 566}, - [723] = {.lex_state = 566}, - [724] = {.lex_state = 566}, - [725] = {.lex_state = 410}, - [726] = {.lex_state = 410}, - [727] = {.lex_state = 302}, - [728] = {.lex_state = 302}, - [729] = {.lex_state = 657}, - [730] = {.lex_state = 569}, + [715] = {.lex_state = 431, .external_lex_state = 2}, + [716] = {.lex_state = 410}, + [717] = {.lex_state = 439, .external_lex_state = 2}, + [718] = {.lex_state = 302}, + [719] = {.lex_state = 457, .external_lex_state = 3}, + [720] = {.lex_state = 461}, + [721] = {.lex_state = 674, .external_lex_state = 4}, + [722] = {.lex_state = 676, .external_lex_state = 4}, + [723] = {.lex_state = 402}, + [724] = {.lex_state = 678, .external_lex_state = 5}, + [725] = {.lex_state = 398}, + [726] = {.lex_state = 402}, + [727] = {.lex_state = 407}, + [728] = {.lex_state = 410}, + [729] = {.lex_state = 410}, + [730] = {.lex_state = 302}, [731] = {.lex_state = 402}, - [732] = {.lex_state = 572}, - [733] = {.lex_state = 535}, - [734] = {.lex_state = 572}, - [735] = {.lex_state = 660}, - [736] = {.lex_state = 572}, - [737] = {.lex_state = 566}, - [738] = {.lex_state = 566}, - [739] = {.lex_state = 437}, - [740] = {.lex_state = 575}, - [741] = {.lex_state = 575}, - [742] = {.lex_state = 410}, - [743] = {.lex_state = 437}, + [732] = {.lex_state = 402}, + [733] = {.lex_state = 681, .external_lex_state = 5}, + [734] = {.lex_state = 681, .external_lex_state = 5}, + [735] = {.lex_state = 681, .external_lex_state = 5}, + [736] = {.lex_state = 678, .external_lex_state = 5}, + [737] = {.lex_state = 678, .external_lex_state = 5}, + [738] = {.lex_state = 684, .external_lex_state = 5}, + [739] = {.lex_state = 687, .external_lex_state = 5}, + [740] = {.lex_state = 687, .external_lex_state = 5}, + [741] = {.lex_state = 687, .external_lex_state = 5}, + [742] = {.lex_state = 302}, + [743] = {.lex_state = 423}, [744] = {.lex_state = 410}, [745] = {.lex_state = 410}, - [746] = {.lex_state = 410}, - [747] = {.lex_state = 437}, - [748] = {.lex_state = 410}, - [749] = {.lex_state = 410}, - [750] = {.lex_state = 578}, - [751] = {.lex_state = 578}, + [746] = {.lex_state = 584, .external_lex_state = 4}, + [747] = {.lex_state = 398}, + [748] = {.lex_state = 402}, + [749] = {.lex_state = 407}, + [750] = {.lex_state = 402}, + [751] = {.lex_state = 410}, [752] = {.lex_state = 410}, - [753] = {.lex_state = 437}, - [754] = {.lex_state = 398}, - [755] = {.lex_state = 398}, - [756] = {.lex_state = 410}, - [757] = {.lex_state = 410}, - [758] = {.lex_state = 410}, - [759] = {.lex_state = 402}, - [760] = {.lex_state = 302}, - [761] = {.lex_state = 431}, - [762] = {.lex_state = 439}, - [763] = {.lex_state = 410}, - [764] = {.lex_state = 410}, - [765] = {.lex_state = 402}, - [766] = {.lex_state = 398}, - [767] = {.lex_state = 410}, - [768] = {.lex_state = 410}, - [769] = {.lex_state = 302}, - [770] = {.lex_state = 525}, - [771] = {.lex_state = 554}, - [772] = {.lex_state = 663}, - [773] = {.lex_state = 663}, - [774] = {.lex_state = 663}, - [775] = {.lex_state = 302}, - [776] = {.lex_state = 423}, - [777] = {.lex_state = 410}, - [778] = {.lex_state = 410}, - [779] = {.lex_state = 581}, - [780] = {.lex_state = 398}, + [753] = {.lex_state = 302}, + [754] = {.lex_state = 402}, + [755] = {.lex_state = 402}, + [756] = {.lex_state = 589, .external_lex_state = 5}, + [757] = {.lex_state = 589, .external_lex_state = 5}, + [758] = {.lex_state = 584, .external_lex_state = 4}, + [759] = {.lex_state = 584, .external_lex_state = 4}, + [760] = {.lex_state = 584, .external_lex_state = 2}, + [761] = {.lex_state = 521, .external_lex_state = 2}, + [762] = {.lex_state = 402}, + [763] = {.lex_state = 439, .external_lex_state = 2}, + [764] = {.lex_state = 439, .external_lex_state = 2}, + [765] = {.lex_state = 416}, + [766] = {.lex_state = 587, .external_lex_state = 5}, + [767] = {.lex_state = 584, .external_lex_state = 2}, + [768] = {.lex_state = 593}, + [769] = {.lex_state = 593}, + [770] = {.lex_state = 410}, + [771] = {.lex_state = 437}, + [772] = {.lex_state = 437, .external_lex_state = 2}, + [773] = {.lex_state = 437, .external_lex_state = 2}, + [774] = {.lex_state = 402}, + [775] = {.lex_state = 572}, + [776] = {.lex_state = 690}, + [777] = {.lex_state = 690}, + [778] = {.lex_state = 690}, + [779] = {.lex_state = 410}, + [780] = {.lex_state = 410}, [781] = {.lex_state = 402}, - [782] = {.lex_state = 407}, - [783] = {.lex_state = 402}, - [784] = {.lex_state = 410}, - [785] = {.lex_state = 410}, - [786] = {.lex_state = 302}, + [782] = {.lex_state = 302}, + [783] = {.lex_state = 693, .external_lex_state = 7}, + [784] = {.lex_state = 398}, + [785] = {.lex_state = 402}, + [786] = {.lex_state = 407}, [787] = {.lex_state = 402}, - [788] = {.lex_state = 402}, + [788] = {.lex_state = 410}, [789] = {.lex_state = 410}, - [790] = {.lex_state = 581}, - [791] = {.lex_state = 581}, - [792] = {.lex_state = 581}, - [793] = {.lex_state = 517}, - [794] = {.lex_state = 402}, - [795] = {.lex_state = 439}, - [796] = {.lex_state = 439}, - [797] = {.lex_state = 416}, - [798] = {.lex_state = 581}, - [799] = {.lex_state = 584}, - [800] = {.lex_state = 584}, - [801] = {.lex_state = 410}, - [802] = {.lex_state = 437}, - [803] = {.lex_state = 439}, - [804] = {.lex_state = 437}, - [805] = {.lex_state = 437}, - [806] = {.lex_state = 402}, - [807] = {.lex_state = 569}, - [808] = {.lex_state = 666}, - [809] = {.lex_state = 666}, - [810] = {.lex_state = 666}, - [811] = {.lex_state = 410}, - [812] = {.lex_state = 410}, - [813] = {.lex_state = 402}, - [814] = {.lex_state = 302}, - [815] = {.lex_state = 514}, - [816] = {.lex_state = 514}, - [817] = {.lex_state = 410}, - [818] = {.lex_state = 437}, - [819] = {.lex_state = 398}, - [820] = {.lex_state = 398}, - [821] = {.lex_state = 416}, - [822] = {.lex_state = 416}, - [823] = {.lex_state = 410}, - [824] = {.lex_state = 402}, - [825] = {.lex_state = 431}, - [826] = {.lex_state = 514}, - [827] = {.lex_state = 517}, - [828] = {.lex_state = 402}, - [829] = {.lex_state = 398}, + [790] = {.lex_state = 302}, + [791] = {.lex_state = 402}, + [792] = {.lex_state = 402}, + [793] = {.lex_state = 584, .external_lex_state = 2}, + [794] = {.lex_state = 591, .external_lex_state = 8}, + [795] = {.lex_state = 591, .external_lex_state = 8}, + [796] = {.lex_state = 693, .external_lex_state = 7}, + [797] = {.lex_state = 693, .external_lex_state = 7}, + [798] = {.lex_state = 591, .external_lex_state = 8}, + [799] = {.lex_state = 591, .external_lex_state = 8}, + [800] = {.lex_state = 457, .external_lex_state = 6}, + [801] = {.lex_state = 584, .external_lex_state = 2}, + [802] = {.lex_state = 410, .external_lex_state = 2}, + [803] = {.lex_state = 410, .external_lex_state = 2}, + [804] = {.lex_state = 402}, + [805] = {.lex_state = 398}, + [806] = {.lex_state = 410}, + [807] = {.lex_state = 410}, + [808] = {.lex_state = 302}, + [809] = {.lex_state = 529}, + [810] = {.lex_state = 557}, + [811] = {.lex_state = 687}, + [812] = {.lex_state = 302}, + [813] = {.lex_state = 423}, + [814] = {.lex_state = 402}, + [815] = {.lex_state = 410}, + [816] = {.lex_state = 410}, + [817] = {.lex_state = 437}, + [818] = {.lex_state = 410}, + [819] = {.lex_state = 599}, + [820] = {.lex_state = 599}, + [821] = {.lex_state = 410}, + [822] = {.lex_state = 437}, + [823] = {.lex_state = 410, .external_lex_state = 2}, + [824] = {.lex_state = 410, .external_lex_state = 2}, + [825] = {.lex_state = 402}, + [826] = {.lex_state = 557}, + [827] = {.lex_state = 687}, + [828] = {.lex_state = 687}, + [829] = {.lex_state = 687}, [830] = {.lex_state = 410}, [831] = {.lex_state = 410}, - [832] = {.lex_state = 302}, - [833] = {.lex_state = 525}, - [834] = {.lex_state = 525}, - [835] = {.lex_state = 525}, - [836] = {.lex_state = 302}, - [837] = {.lex_state = 423}, - [838] = {.lex_state = 410}, - [839] = {.lex_state = 410}, - [840] = {.lex_state = 402}, - [841] = {.lex_state = 416}, - [842] = {.lex_state = 581}, - [843] = {.lex_state = 439}, - [844] = {.lex_state = 416}, - [845] = {.lex_state = 439}, - [846] = {.lex_state = 410}, - [847] = {.lex_state = 410}, - [848] = {.lex_state = 402}, - [849] = {.lex_state = 398}, - [850] = {.lex_state = 410}, - [851] = {.lex_state = 410}, - [852] = {.lex_state = 302}, - [853] = {.lex_state = 525}, - [854] = {.lex_state = 554}, - [855] = {.lex_state = 663}, - [856] = {.lex_state = 302}, - [857] = {.lex_state = 423}, - [858] = {.lex_state = 402}, - [859] = {.lex_state = 410}, - [860] = {.lex_state = 410}, - [861] = {.lex_state = 437}, - [862] = {.lex_state = 410}, - [863] = {.lex_state = 590}, - [864] = {.lex_state = 590}, - [865] = {.lex_state = 410}, - [866] = {.lex_state = 437}, - [867] = {.lex_state = 410}, - [868] = {.lex_state = 410}, - [869] = {.lex_state = 402}, - [870] = {.lex_state = 554}, - [871] = {.lex_state = 663}, - [872] = {.lex_state = 410}, - [873] = {.lex_state = 410}, - [874] = {.lex_state = 410}, - [875] = {.lex_state = 402}, - [876] = {.lex_state = 407}, - [877] = {.lex_state = 402}, - [878] = {.lex_state = 593}, - [879] = {.lex_state = 402}, - [880] = {.lex_state = 407}, - [881] = {.lex_state = 402}, - [882] = {.lex_state = 593}, - [883] = {.lex_state = 410}, - [884] = {.lex_state = 437}, + [832] = {.lex_state = 410, .external_lex_state = 2}, + [833] = {.lex_state = 402}, + [834] = {.lex_state = 407}, + [835] = {.lex_state = 402}, + [836] = {.lex_state = 602, .external_lex_state = 2}, + [837] = {.lex_state = 402}, + [838] = {.lex_state = 407}, + [839] = {.lex_state = 402}, + [840] = {.lex_state = 602, .external_lex_state = 2}, + [841] = {.lex_state = 410}, + [842] = {.lex_state = 437}, + [843] = {.lex_state = 410}, + [844] = {.lex_state = 410}, + [845] = {.lex_state = 402}, + [846] = {.lex_state = 416}, + [847] = {.lex_state = 524}, + [848] = {.lex_state = 524}, + [849] = {.lex_state = 302}, + [850] = {.lex_state = 302}, + [851] = {.lex_state = 461}, + [852] = {.lex_state = 605, .external_lex_state = 2}, + [853] = {.lex_state = 587, .external_lex_state = 5}, + [854] = {.lex_state = 589, .external_lex_state = 5}, + [855] = {.lex_state = 437}, + [856] = {.lex_state = 439, .external_lex_state = 2}, + [857] = {.lex_state = 410}, + [858] = {.lex_state = 410}, + [859] = {.lex_state = 402}, + [860] = {.lex_state = 596}, + [861] = {.lex_state = 696, .external_lex_state = 2}, + [862] = {.lex_state = 398}, + [863] = {.lex_state = 398}, + [864] = {.lex_state = 402}, + [865] = {.lex_state = 407}, + [866] = {.lex_state = 402}, + [867] = {.lex_state = 402}, + [868] = {.lex_state = 529}, + [869] = {.lex_state = 529}, + [870] = {.lex_state = 410, .external_lex_state = 2}, + [871] = {.lex_state = 696, .external_lex_state = 2}, + [872] = {.lex_state = 696, .external_lex_state = 2}, + [873] = {.lex_state = 402}, + [874] = {.lex_state = 431, .external_lex_state = 2}, + [875] = {.lex_state = 529}, + [876] = {.lex_state = 529}, + [877] = {.lex_state = 529}, + [878] = {.lex_state = 529}, + [879] = {.lex_state = 639, .external_lex_state = 6}, + [880] = {.lex_state = 529}, + [881] = {.lex_state = 529}, + [882] = {.lex_state = 410}, + [883] = {.lex_state = 529}, + [884] = {.lex_state = 402}, [885] = {.lex_state = 410}, - [886] = {.lex_state = 410}, + [886] = {.lex_state = 410, .external_lex_state = 2}, [887] = {.lex_state = 402}, - [888] = {.lex_state = 416}, - [889] = {.lex_state = 520}, - [890] = {.lex_state = 520}, - [891] = {.lex_state = 302}, + [888] = {.lex_state = 605, .external_lex_state = 2}, + [889] = {.lex_state = 608, .external_lex_state = 2}, + [890] = {.lex_state = 402}, + [891] = {.lex_state = 529}, [892] = {.lex_state = 302}, - [893] = {.lex_state = 457}, - [894] = {.lex_state = 596}, - [895] = {.lex_state = 410}, - [896] = {.lex_state = 410}, - [897] = {.lex_state = 437}, - [898] = {.lex_state = 596}, - [899] = {.lex_state = 398}, - [900] = {.lex_state = 402}, - [901] = {.lex_state = 407}, + [893] = {.lex_state = 302}, + [894] = {.lex_state = 651}, + [895] = {.lex_state = 402}, + [896] = {.lex_state = 560}, + [897] = {.lex_state = 532, .external_lex_state = 2}, + [898] = {.lex_state = 532, .external_lex_state = 2}, + [899] = {.lex_state = 402}, + [900] = {.lex_state = 410}, + [901] = {.lex_state = 410, .external_lex_state = 2}, [902] = {.lex_state = 402}, - [903] = {.lex_state = 402}, - [904] = {.lex_state = 402}, - [905] = {.lex_state = 581}, - [906] = {.lex_state = 525}, - [907] = {.lex_state = 596}, - [908] = {.lex_state = 596}, - [909] = {.lex_state = 525}, - [910] = {.lex_state = 525}, - [911] = {.lex_state = 525}, - [912] = {.lex_state = 581}, - [913] = {.lex_state = 410}, - [914] = {.lex_state = 410}, - [915] = {.lex_state = 402}, - [916] = {.lex_state = 587}, - [917] = {.lex_state = 669}, - [918] = {.lex_state = 398}, - [919] = {.lex_state = 398}, - [920] = {.lex_state = 402}, - [921] = {.lex_state = 407}, - [922] = {.lex_state = 402}, - [923] = {.lex_state = 402}, - [924] = {.lex_state = 525}, - [925] = {.lex_state = 410}, - [926] = {.lex_state = 669}, - [927] = {.lex_state = 669}, - [928] = {.lex_state = 402}, - [929] = {.lex_state = 431}, - [930] = {.lex_state = 525}, - [931] = {.lex_state = 525}, - [932] = {.lex_state = 525}, - [933] = {.lex_state = 525}, - [934] = {.lex_state = 525}, - [935] = {.lex_state = 525}, + [903] = {.lex_state = 611}, + [904] = {.lex_state = 611}, + [905] = {.lex_state = 410}, + [906] = {.lex_state = 437}, + [907] = {.lex_state = 410}, + [908] = {.lex_state = 439, .external_lex_state = 2}, + [909] = {.lex_state = 302}, + [910] = {.lex_state = 457, .external_lex_state = 3}, + [911] = {.lex_state = 461}, + [912] = {.lex_state = 699, .external_lex_state = 2}, + [913] = {.lex_state = 702, .external_lex_state = 2}, + [914] = {.lex_state = 402}, + [915] = {.lex_state = 614}, + [916] = {.lex_state = 614}, + [917] = {.lex_state = 614}, + [918] = {.lex_state = 614}, + [919] = {.lex_state = 614}, + [920] = {.lex_state = 410}, + [921] = {.lex_state = 410}, + [922] = {.lex_state = 302}, + [923] = {.lex_state = 302}, + [924] = {.lex_state = 705}, + [925] = {.lex_state = 618}, + [926] = {.lex_state = 402}, + [927] = {.lex_state = 457, .external_lex_state = 3}, + [928] = {.lex_state = 539}, + [929] = {.lex_state = 621}, + [930] = {.lex_state = 708}, + [931] = {.lex_state = 621}, + [932] = {.lex_state = 614}, + [933] = {.lex_state = 614}, + [934] = {.lex_state = 624}, + [935] = {.lex_state = 624}, [936] = {.lex_state = 410}, - [937] = {.lex_state = 525}, - [938] = {.lex_state = 398}, - [939] = {.lex_state = 402}, - [940] = {.lex_state = 410}, - [941] = {.lex_state = 410}, - [942] = {.lex_state = 302}, - [943] = {.lex_state = 581}, + [937] = {.lex_state = 437}, + [938] = {.lex_state = 410}, + [939] = {.lex_state = 410}, + [940] = {.lex_state = 627}, + [941] = {.lex_state = 627}, + [942] = {.lex_state = 410}, + [943] = {.lex_state = 437}, [944] = {.lex_state = 410}, - [945] = {.lex_state = 581}, - [946] = {.lex_state = 402}, - [947] = {.lex_state = 410}, - [948] = {.lex_state = 410}, - [949] = {.lex_state = 402}, - [950] = {.lex_state = 439}, - [951] = {.lex_state = 596}, - [952] = {.lex_state = 599}, - [953] = {.lex_state = 402}, - [954] = {.lex_state = 525}, - [955] = {.lex_state = 525}, - [956] = {.lex_state = 525}, - [957] = {.lex_state = 302}, - [958] = {.lex_state = 302}, - [959] = {.lex_state = 642}, - [960] = {.lex_state = 402}, - [961] = {.lex_state = 557}, - [962] = {.lex_state = 535}, - [963] = {.lex_state = 645}, - [964] = {.lex_state = 557}, - [965] = {.lex_state = 528}, - [966] = {.lex_state = 528}, - [967] = {.lex_state = 672}, - [968] = {.lex_state = 398}, - [969] = {.lex_state = 402}, - [970] = {.lex_state = 407}, - [971] = {.lex_state = 402}, - [972] = {.lex_state = 410}, - [973] = {.lex_state = 410}, - [974] = {.lex_state = 302}, - [975] = {.lex_state = 402}, - [976] = {.lex_state = 402}, - [977] = {.lex_state = 581}, - [978] = {.lex_state = 672}, - [979] = {.lex_state = 672}, - [980] = {.lex_state = 410}, - [981] = {.lex_state = 581}, + [945] = {.lex_state = 439, .external_lex_state = 2}, + [946] = {.lex_state = 302}, + [947] = {.lex_state = 457, .external_lex_state = 3}, + [948] = {.lex_state = 461}, + [949] = {.lex_state = 711, .external_lex_state = 2}, + [950] = {.lex_state = 714, .external_lex_state = 2}, + [951] = {.lex_state = 402}, + [952] = {.lex_state = 529}, + [953] = {.lex_state = 651}, + [954] = {.lex_state = 651}, + [955] = {.lex_state = 651}, + [956] = {.lex_state = 651}, + [957] = {.lex_state = 410}, + [958] = {.lex_state = 410}, + [959] = {.lex_state = 536}, + [960] = {.lex_state = 536}, + [961] = {.lex_state = 630}, + [962] = {.lex_state = 630}, + [963] = {.lex_state = 410}, + [964] = {.lex_state = 437}, + [965] = {.lex_state = 410}, + [966] = {.lex_state = 439, .external_lex_state = 2}, + [967] = {.lex_state = 302}, + [968] = {.lex_state = 457, .external_lex_state = 3}, + [969] = {.lex_state = 461}, + [970] = {.lex_state = 717, .external_lex_state = 2}, + [971] = {.lex_state = 720, .external_lex_state = 2}, + [972] = {.lex_state = 402}, + [973] = {.lex_state = 529}, + [974] = {.lex_state = 557}, + [975] = {.lex_state = 557}, + [976] = {.lex_state = 557}, + [977] = {.lex_state = 557}, + [978] = {.lex_state = 410}, + [979] = {.lex_state = 410}, + [980] = {.lex_state = 419}, + [981] = {.lex_state = 419}, [982] = {.lex_state = 402}, - [983] = {.lex_state = 410}, - [984] = {.lex_state = 410}, - [985] = {.lex_state = 402}, - [986] = {.lex_state = 602}, - [987] = {.lex_state = 602}, - [988] = {.lex_state = 410}, - [989] = {.lex_state = 437}, + [983] = {.lex_state = 407}, + [984] = {.lex_state = 402}, + [985] = {.lex_state = 633, .external_lex_state = 2}, + [986] = {.lex_state = 402}, + [987] = {.lex_state = 407}, + [988] = {.lex_state = 402}, + [989] = {.lex_state = 633, .external_lex_state = 2}, [990] = {.lex_state = 410}, - [991] = {.lex_state = 439}, - [992] = {.lex_state = 302}, - [993] = {.lex_state = 439}, - [994] = {.lex_state = 457}, - [995] = {.lex_state = 675}, - [996] = {.lex_state = 678}, - [997] = {.lex_state = 402}, - [998] = {.lex_state = 605}, - [999] = {.lex_state = 605}, - [1000] = {.lex_state = 605}, - [1001] = {.lex_state = 605}, - [1002] = {.lex_state = 605}, - [1003] = {.lex_state = 410}, + [991] = {.lex_state = 437}, + [992] = {.lex_state = 410}, + [993] = {.lex_state = 439, .external_lex_state = 2}, + [994] = {.lex_state = 302}, + [995] = {.lex_state = 457, .external_lex_state = 3}, + [996] = {.lex_state = 461}, + [997] = {.lex_state = 723, .external_lex_state = 2}, + [998] = {.lex_state = 726, .external_lex_state = 2}, + [999] = {.lex_state = 402}, + [1000] = {.lex_state = 557}, + [1001] = {.lex_state = 654}, + [1002] = {.lex_state = 654}, + [1003] = {.lex_state = 654}, [1004] = {.lex_state = 410}, - [1005] = {.lex_state = 302}, - [1006] = {.lex_state = 302}, - [1007] = {.lex_state = 681}, - [1008] = {.lex_state = 609}, - [1009] = {.lex_state = 402}, - [1010] = {.lex_state = 612}, - [1011] = {.lex_state = 535}, - [1012] = {.lex_state = 612}, - [1013] = {.lex_state = 684}, - [1014] = {.lex_state = 612}, - [1015] = {.lex_state = 605}, - [1016] = {.lex_state = 605}, - [1017] = {.lex_state = 615}, - [1018] = {.lex_state = 615}, - [1019] = {.lex_state = 410}, - [1020] = {.lex_state = 437}, - [1021] = {.lex_state = 410}, - [1022] = {.lex_state = 410}, - [1023] = {.lex_state = 618}, - [1024] = {.lex_state = 618}, + [1005] = {.lex_state = 410}, + [1006] = {.lex_state = 402}, + [1007] = {.lex_state = 548}, + [1008] = {.lex_state = 729}, + [1009] = {.lex_state = 398}, + [1010] = {.lex_state = 402}, + [1011] = {.lex_state = 407}, + [1012] = {.lex_state = 402}, + [1013] = {.lex_state = 402}, + [1014] = {.lex_state = 636}, + [1015] = {.lex_state = 729}, + [1016] = {.lex_state = 729}, + [1017] = {.lex_state = 423}, + [1018] = {.lex_state = 636}, + [1019] = {.lex_state = 302}, + [1020] = {.lex_state = 371, .external_lex_state = 8}, + [1021] = {.lex_state = 398}, + [1022] = {.lex_state = 402}, + [1023] = {.lex_state = 407}, + [1024] = {.lex_state = 410}, [1025] = {.lex_state = 410}, - [1026] = {.lex_state = 437}, - [1027] = {.lex_state = 410}, - [1028] = {.lex_state = 439}, + [1026] = {.lex_state = 302}, + [1027] = {.lex_state = 402}, + [1028] = {.lex_state = 402}, [1029] = {.lex_state = 302}, - [1030] = {.lex_state = 439}, - [1031] = {.lex_state = 457}, - [1032] = {.lex_state = 687}, - [1033] = {.lex_state = 690}, - [1034] = {.lex_state = 402}, - [1035] = {.lex_state = 525}, - [1036] = {.lex_state = 642}, - [1037] = {.lex_state = 642}, - [1038] = {.lex_state = 642}, - [1039] = {.lex_state = 642}, - [1040] = {.lex_state = 410}, - [1041] = {.lex_state = 410}, - [1042] = {.lex_state = 532}, - [1043] = {.lex_state = 532}, - [1044] = {.lex_state = 621}, - [1045] = {.lex_state = 621}, + [1030] = {.lex_state = 732, .external_lex_state = 8}, + [1031] = {.lex_state = 732, .external_lex_state = 8}, + [1032] = {.lex_state = 732, .external_lex_state = 8}, + [1033] = {.lex_state = 371, .external_lex_state = 8}, + [1034] = {.lex_state = 371, .external_lex_state = 8}, + [1035] = {.lex_state = 736, .external_lex_state = 8}, + [1036] = {.lex_state = 591, .external_lex_state = 8}, + [1037] = {.lex_state = 591, .external_lex_state = 8}, + [1038] = {.lex_state = 457, .external_lex_state = 6}, + [1039] = {.lex_state = 302}, + [1040] = {.lex_state = 423}, + [1041] = {.lex_state = 457, .external_lex_state = 3}, + [1042] = {.lex_state = 642}, + [1043] = {.lex_state = 642}, + [1044] = {.lex_state = 410}, + [1045] = {.lex_state = 437}, [1046] = {.lex_state = 410}, - [1047] = {.lex_state = 437}, - [1048] = {.lex_state = 410}, - [1049] = {.lex_state = 439}, - [1050] = {.lex_state = 302}, - [1051] = {.lex_state = 439}, - [1052] = {.lex_state = 457}, - [1053] = {.lex_state = 693}, - [1054] = {.lex_state = 696}, + [1047] = {.lex_state = 410}, + [1048] = {.lex_state = 642}, + [1049] = {.lex_state = 423}, + [1050] = {.lex_state = 423}, + [1051] = {.lex_state = 410}, + [1052] = {.lex_state = 437}, + [1053] = {.lex_state = 410}, + [1054] = {.lex_state = 410}, [1055] = {.lex_state = 402}, - [1056] = {.lex_state = 525}, - [1057] = {.lex_state = 554}, - [1058] = {.lex_state = 554}, - [1059] = {.lex_state = 554}, - [1060] = {.lex_state = 554}, + [1056] = {.lex_state = 402}, + [1057] = {.lex_state = 402}, + [1058] = {.lex_state = 551, .external_lex_state = 2}, + [1059] = {.lex_state = 551, .external_lex_state = 2}, + [1060] = {.lex_state = 402}, [1061] = {.lex_state = 410}, - [1062] = {.lex_state = 410}, - [1063] = {.lex_state = 419}, - [1064] = {.lex_state = 419}, + [1062] = {.lex_state = 410, .external_lex_state = 2}, + [1063] = {.lex_state = 402}, + [1064] = {.lex_state = 302}, [1065] = {.lex_state = 402}, - [1066] = {.lex_state = 407}, - [1067] = {.lex_state = 402}, - [1068] = {.lex_state = 624}, - [1069] = {.lex_state = 402}, - [1070] = {.lex_state = 407}, - [1071] = {.lex_state = 402}, - [1072] = {.lex_state = 624}, - [1073] = {.lex_state = 410}, - [1074] = {.lex_state = 437}, - [1075] = {.lex_state = 410}, - [1076] = {.lex_state = 439}, - [1077] = {.lex_state = 302}, - [1078] = {.lex_state = 439}, - [1079] = {.lex_state = 457}, - [1080] = {.lex_state = 699}, - [1081] = {.lex_state = 702}, - [1082] = {.lex_state = 402}, - [1083] = {.lex_state = 554}, - [1084] = {.lex_state = 645}, - [1085] = {.lex_state = 645}, - [1086] = {.lex_state = 645}, - [1087] = {.lex_state = 410}, - [1088] = {.lex_state = 410}, + [1066] = {.lex_state = 457, .external_lex_state = 3}, + [1067] = {.lex_state = 539}, + [1068] = {.lex_state = 645}, + [1069] = {.lex_state = 557}, + [1070] = {.lex_state = 645}, + [1071] = {.lex_state = 410}, + [1072] = {.lex_state = 554, .external_lex_state = 2}, + [1073] = {.lex_state = 554, .external_lex_state = 2}, + [1074] = {.lex_state = 402}, + [1075] = {.lex_state = 437}, + [1076] = {.lex_state = 410, .external_lex_state = 2}, + [1077] = {.lex_state = 402}, + [1078] = {.lex_state = 302}, + [1079] = {.lex_state = 402}, + [1080] = {.lex_state = 457, .external_lex_state = 3}, + [1081] = {.lex_state = 539}, + [1082] = {.lex_state = 648}, + [1083] = {.lex_state = 572}, + [1084] = {.lex_state = 648}, + [1085] = {.lex_state = 437}, + [1086] = {.lex_state = 410}, + [1087] = {.lex_state = 457, .external_lex_state = 6}, + [1088] = {.lex_state = 402}, [1089] = {.lex_state = 402}, - [1090] = {.lex_state = 545}, - [1091] = {.lex_state = 705}, - [1092] = {.lex_state = 398}, - [1093] = {.lex_state = 402}, - [1094] = {.lex_state = 407}, - [1095] = {.lex_state = 402}, - [1096] = {.lex_state = 402}, - [1097] = {.lex_state = 627}, - [1098] = {.lex_state = 705}, - [1099] = {.lex_state = 705}, - [1100] = {.lex_state = 423}, - [1101] = {.lex_state = 627}, - [1102] = {.lex_state = 302}, - [1103] = {.lex_state = 302}, - [1104] = {.lex_state = 532}, - [1105] = {.lex_state = 402}, + [1090] = {.lex_state = 398}, + [1091] = {.lex_state = 398}, + [1092] = {.lex_state = 529}, + [1093] = {.lex_state = 410, .external_lex_state = 2}, + [1094] = {.lex_state = 402}, + [1095] = {.lex_state = 431, .external_lex_state = 2}, + [1096] = {.lex_state = 302}, + [1097] = {.lex_state = 302}, + [1098] = {.lex_state = 402}, + [1099] = {.lex_state = 529}, + [1100] = {.lex_state = 738}, + [1101] = {.lex_state = 398}, + [1102] = {.lex_state = 402}, + [1103] = {.lex_state = 407}, + [1104] = {.lex_state = 410}, + [1105] = {.lex_state = 410}, [1106] = {.lex_state = 302}, - [1107] = {.lex_state = 302}, - [1108] = {.lex_state = 302}, - [1109] = {.lex_state = 302}, - [1110] = {.lex_state = 630}, - [1111] = {.lex_state = 630}, - [1112] = {.lex_state = 410}, - [1113] = {.lex_state = 437}, - [1114] = {.lex_state = 410}, - [1115] = {.lex_state = 410}, - [1116] = {.lex_state = 630}, - [1117] = {.lex_state = 423}, - [1118] = {.lex_state = 423}, - [1119] = {.lex_state = 410}, - [1120] = {.lex_state = 437}, + [1107] = {.lex_state = 402}, + [1108] = {.lex_state = 402}, + [1109] = {.lex_state = 651}, + [1110] = {.lex_state = 651}, + [1111] = {.lex_state = 651}, + [1112] = {.lex_state = 738}, + [1113] = {.lex_state = 738}, + [1114] = {.lex_state = 302}, + [1115] = {.lex_state = 423}, + [1116] = {.lex_state = 741}, + [1117] = {.lex_state = 398}, + [1118] = {.lex_state = 402}, + [1119] = {.lex_state = 407}, + [1120] = {.lex_state = 410}, [1121] = {.lex_state = 410}, - [1122] = {.lex_state = 410}, + [1122] = {.lex_state = 302}, [1123] = {.lex_state = 402}, [1124] = {.lex_state = 402}, - [1125] = {.lex_state = 402}, - [1126] = {.lex_state = 548}, - [1127] = {.lex_state = 548}, - [1128] = {.lex_state = 708}, - [1129] = {.lex_state = 398}, - [1130] = {.lex_state = 402}, - [1131] = {.lex_state = 407}, - [1132] = {.lex_state = 402}, - [1133] = {.lex_state = 410}, - [1134] = {.lex_state = 410}, - [1135] = {.lex_state = 302}, + [1125] = {.lex_state = 557}, + [1126] = {.lex_state = 557}, + [1127] = {.lex_state = 557}, + [1128] = {.lex_state = 741}, + [1129] = {.lex_state = 741}, + [1130] = {.lex_state = 302}, + [1131] = {.lex_state = 423}, + [1132] = {.lex_state = 557}, + [1133] = {.lex_state = 744, .external_lex_state = 2}, + [1134] = {.lex_state = 398}, + [1135] = {.lex_state = 398}, [1136] = {.lex_state = 402}, - [1137] = {.lex_state = 402}, - [1138] = {.lex_state = 581}, - [1139] = {.lex_state = 708}, - [1140] = {.lex_state = 708}, - [1141] = {.lex_state = 410}, - [1142] = {.lex_state = 581}, - [1143] = {.lex_state = 402}, - [1144] = {.lex_state = 410}, - [1145] = {.lex_state = 410}, - [1146] = {.lex_state = 402}, - [1147] = {.lex_state = 302}, - [1148] = {.lex_state = 402}, - [1149] = {.lex_state = 633}, - [1150] = {.lex_state = 535}, - [1151] = {.lex_state = 633}, - [1152] = {.lex_state = 554}, - [1153] = {.lex_state = 633}, - [1154] = {.lex_state = 410}, - [1155] = {.lex_state = 551}, - [1156] = {.lex_state = 551}, - [1157] = {.lex_state = 711}, - [1158] = {.lex_state = 398}, - [1159] = {.lex_state = 402}, - [1160] = {.lex_state = 407}, + [1137] = {.lex_state = 407}, + [1138] = {.lex_state = 410}, + [1139] = {.lex_state = 410}, + [1140] = {.lex_state = 302}, + [1141] = {.lex_state = 402}, + [1142] = {.lex_state = 402}, + [1143] = {.lex_state = 654}, + [1144] = {.lex_state = 654}, + [1145] = {.lex_state = 654}, + [1146] = {.lex_state = 654}, + [1147] = {.lex_state = 410, .external_lex_state = 2}, + [1148] = {.lex_state = 744, .external_lex_state = 2}, + [1149] = {.lex_state = 744, .external_lex_state = 2}, + [1150] = {.lex_state = 402}, + [1151] = {.lex_state = 302}, + [1152] = {.lex_state = 431, .external_lex_state = 2}, + [1153] = {.lex_state = 639, .external_lex_state = 6}, + [1154] = {.lex_state = 560}, + [1155] = {.lex_state = 560}, + [1156] = {.lex_state = 410}, + [1157] = {.lex_state = 560}, + [1158] = {.lex_state = 402}, + [1159] = {.lex_state = 410}, + [1160] = {.lex_state = 410, .external_lex_state = 2}, [1161] = {.lex_state = 402}, - [1162] = {.lex_state = 410}, - [1163] = {.lex_state = 410}, - [1164] = {.lex_state = 302}, - [1165] = {.lex_state = 402}, - [1166] = {.lex_state = 402}, - [1167] = {.lex_state = 581}, - [1168] = {.lex_state = 711}, - [1169] = {.lex_state = 711}, - [1170] = {.lex_state = 437}, - [1171] = {.lex_state = 581}, - [1172] = {.lex_state = 402}, - [1173] = {.lex_state = 437}, + [1162] = {.lex_state = 302}, + [1163] = {.lex_state = 402}, + [1164] = {.lex_state = 645}, + [1165] = {.lex_state = 410}, + [1166] = {.lex_state = 563}, + [1167] = {.lex_state = 563}, + [1168] = {.lex_state = 431, .external_lex_state = 2}, + [1169] = {.lex_state = 431, .external_lex_state = 2}, + [1170] = {.lex_state = 410}, + [1171] = {.lex_state = 437}, + [1172] = {.lex_state = 410}, + [1173] = {.lex_state = 410}, [1174] = {.lex_state = 410}, - [1175] = {.lex_state = 402}, - [1176] = {.lex_state = 302}, - [1177] = {.lex_state = 402}, - [1178] = {.lex_state = 636}, - [1179] = {.lex_state = 535}, - [1180] = {.lex_state = 636}, - [1181] = {.lex_state = 569}, - [1182] = {.lex_state = 636}, - [1183] = {.lex_state = 437}, + [1175] = {.lex_state = 437}, + [1176] = {.lex_state = 410}, + [1177] = {.lex_state = 410}, + [1178] = {.lex_state = 437, .external_lex_state = 2}, + [1179] = {.lex_state = 402}, + [1180] = {.lex_state = 437}, + [1181] = {.lex_state = 402}, + [1182] = {.lex_state = 457, .external_lex_state = 6}, + [1183] = {.lex_state = 402}, [1184] = {.lex_state = 410}, - [1185] = {.lex_state = 639}, - [1186] = {.lex_state = 639}, - [1187] = {.lex_state = 410}, - [1188] = {.lex_state = 437}, - [1189] = {.lex_state = 410}, - [1190] = {.lex_state = 410}, - [1191] = {.lex_state = 402}, - [1192] = {.lex_state = 410}, - [1193] = {.lex_state = 410}, - [1194] = {.lex_state = 402}, - [1195] = {.lex_state = 554}, - [1196] = {.lex_state = 557}, + [1185] = {.lex_state = 402}, + [1186] = {.lex_state = 566}, + [1187] = {.lex_state = 566}, + [1188] = {.lex_state = 302}, + [1189] = {.lex_state = 302}, + [1190] = {.lex_state = 461}, + [1191] = {.lex_state = 657, .external_lex_state = 2}, + [1192] = {.lex_state = 587, .external_lex_state = 5}, + [1193] = {.lex_state = 589, .external_lex_state = 5}, + [1194] = {.lex_state = 437}, + [1195] = {.lex_state = 439, .external_lex_state = 2}, + [1196] = {.lex_state = 410}, [1197] = {.lex_state = 410}, - [1198] = {.lex_state = 410}, - [1199] = {.lex_state = 402}, - [1200] = {.lex_state = 581}, - [1201] = {.lex_state = 439}, - [1202] = {.lex_state = 410}, + [1198] = {.lex_state = 402}, + [1199] = {.lex_state = 596}, + [1200] = {.lex_state = 747, .external_lex_state = 2}, + [1201] = {.lex_state = 398}, + [1202] = {.lex_state = 398}, [1203] = {.lex_state = 402}, - [1204] = {.lex_state = 398}, + [1204] = {.lex_state = 407}, [1205] = {.lex_state = 402}, - [1206] = {.lex_state = 581}, - [1207] = {.lex_state = 525}, - [1208] = {.lex_state = 581}, - [1209] = {.lex_state = 402}, - [1210] = {.lex_state = 398}, - [1211] = {.lex_state = 398}, - [1212] = {.lex_state = 525}, - [1213] = {.lex_state = 410}, - [1214] = {.lex_state = 402}, - [1215] = {.lex_state = 431}, - [1216] = {.lex_state = 302}, - [1217] = {.lex_state = 302}, - [1218] = {.lex_state = 525}, - [1219] = {.lex_state = 402}, - [1220] = {.lex_state = 525}, - [1221] = {.lex_state = 535}, - [1222] = {.lex_state = 525}, - [1223] = {.lex_state = 525}, - [1224] = {.lex_state = 714}, + [1206] = {.lex_state = 402}, + [1207] = {.lex_state = 569}, + [1208] = {.lex_state = 569}, + [1209] = {.lex_state = 410, .external_lex_state = 2}, + [1210] = {.lex_state = 747, .external_lex_state = 2}, + [1211] = {.lex_state = 747, .external_lex_state = 2}, + [1212] = {.lex_state = 402}, + [1213] = {.lex_state = 431, .external_lex_state = 2}, + [1214] = {.lex_state = 302}, + [1215] = {.lex_state = 302}, + [1216] = {.lex_state = 569}, + [1217] = {.lex_state = 569}, + [1218] = {.lex_state = 402}, + [1219] = {.lex_state = 457, .external_lex_state = 3}, + [1220] = {.lex_state = 539}, + [1221] = {.lex_state = 569}, + [1222] = {.lex_state = 569}, + [1223] = {.lex_state = 569}, + [1224] = {.lex_state = 750}, [1225] = {.lex_state = 398}, [1226] = {.lex_state = 402}, [1227] = {.lex_state = 407}, @@ -22431,14 +29332,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1230] = {.lex_state = 302}, [1231] = {.lex_state = 402}, [1232] = {.lex_state = 402}, - [1233] = {.lex_state = 642}, - [1234] = {.lex_state = 642}, - [1235] = {.lex_state = 642}, - [1236] = {.lex_state = 714}, - [1237] = {.lex_state = 714}, + [1233] = {.lex_state = 663}, + [1234] = {.lex_state = 663}, + [1235] = {.lex_state = 663}, + [1236] = {.lex_state = 750}, + [1237] = {.lex_state = 750}, [1238] = {.lex_state = 302}, [1239] = {.lex_state = 423}, - [1240] = {.lex_state = 717}, + [1240] = {.lex_state = 753}, [1241] = {.lex_state = 398}, [1242] = {.lex_state = 402}, [1243] = {.lex_state = 407}, @@ -22447,15 +29348,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1246] = {.lex_state = 302}, [1247] = {.lex_state = 402}, [1248] = {.lex_state = 402}, - [1249] = {.lex_state = 554}, - [1250] = {.lex_state = 554}, - [1251] = {.lex_state = 554}, - [1252] = {.lex_state = 717}, - [1253] = {.lex_state = 717}, + [1249] = {.lex_state = 572}, + [1250] = {.lex_state = 572}, + [1251] = {.lex_state = 572}, + [1252] = {.lex_state = 753}, + [1253] = {.lex_state = 753}, [1254] = {.lex_state = 302}, [1255] = {.lex_state = 423}, - [1256] = {.lex_state = 554}, - [1257] = {.lex_state = 720}, + [1256] = {.lex_state = 572}, + [1257] = {.lex_state = 756, .external_lex_state = 2}, [1258] = {.lex_state = 398}, [1259] = {.lex_state = 398}, [1260] = {.lex_state = 402}, @@ -22465,3770 +29366,4106 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1264] = {.lex_state = 302}, [1265] = {.lex_state = 402}, [1266] = {.lex_state = 402}, - [1267] = {.lex_state = 645}, - [1268] = {.lex_state = 645}, - [1269] = {.lex_state = 645}, - [1270] = {.lex_state = 645}, - [1271] = {.lex_state = 410}, - [1272] = {.lex_state = 720}, - [1273] = {.lex_state = 720}, + [1267] = {.lex_state = 666}, + [1268] = {.lex_state = 666}, + [1269] = {.lex_state = 666}, + [1270] = {.lex_state = 666}, + [1271] = {.lex_state = 410, .external_lex_state = 2}, + [1272] = {.lex_state = 756, .external_lex_state = 2}, + [1273] = {.lex_state = 756, .external_lex_state = 2}, [1274] = {.lex_state = 402}, [1275] = {.lex_state = 302}, - [1276] = {.lex_state = 431}, - [1277] = {.lex_state = 557}, - [1278] = {.lex_state = 557}, - [1279] = {.lex_state = 410}, - [1280] = {.lex_state = 557}, - [1281] = {.lex_state = 398}, - [1282] = {.lex_state = 402}, - [1283] = {.lex_state = 410}, - [1284] = {.lex_state = 410}, - [1285] = {.lex_state = 302}, - [1286] = {.lex_state = 581}, - [1287] = {.lex_state = 410}, - [1288] = {.lex_state = 581}, - [1289] = {.lex_state = 402}, - [1290] = {.lex_state = 410}, - [1291] = {.lex_state = 410}, + [1276] = {.lex_state = 431, .external_lex_state = 2}, + [1277] = {.lex_state = 639, .external_lex_state = 6}, + [1278] = {.lex_state = 575}, + [1279] = {.lex_state = 575}, + [1280] = {.lex_state = 410}, + [1281] = {.lex_state = 575}, + [1282] = {.lex_state = 578}, + [1283] = {.lex_state = 578}, + [1284] = {.lex_state = 521, .external_lex_state = 2}, + [1285] = {.lex_state = 402}, + [1286] = {.lex_state = 402}, + [1287] = {.lex_state = 402}, + [1288] = {.lex_state = 581, .external_lex_state = 4}, + [1289] = {.lex_state = 581, .external_lex_state = 4}, + [1290] = {.lex_state = 402}, + [1291] = {.lex_state = 407}, [1292] = {.lex_state = 402}, - [1293] = {.lex_state = 302}, + [1293] = {.lex_state = 669, .external_lex_state = 4}, [1294] = {.lex_state = 402}, - [1295] = {.lex_state = 633}, - [1296] = {.lex_state = 535}, - [1297] = {.lex_state = 554}, - [1298] = {.lex_state = 633}, - [1299] = {.lex_state = 410}, - [1300] = {.lex_state = 560}, - [1301] = {.lex_state = 560}, - [1302] = {.lex_state = 431}, - [1303] = {.lex_state = 431}, - [1304] = {.lex_state = 410}, - [1305] = {.lex_state = 437}, - [1306] = {.lex_state = 410}, - [1307] = {.lex_state = 410}, - [1308] = {.lex_state = 410}, - [1309] = {.lex_state = 437}, - [1310] = {.lex_state = 410}, - [1311] = {.lex_state = 410}, - [1312] = {.lex_state = 437}, - [1313] = {.lex_state = 402}, - [1314] = {.lex_state = 437}, - [1315] = {.lex_state = 402}, - [1316] = {.lex_state = 648}, - [1317] = {.lex_state = 648}, - [1318] = {.lex_state = 410}, - [1319] = {.lex_state = 437}, - [1320] = {.lex_state = 398}, - [1321] = {.lex_state = 398}, - [1322] = {.lex_state = 437}, - [1323] = {.lex_state = 437}, - [1324] = {.lex_state = 410}, - [1325] = {.lex_state = 402}, - [1326] = {.lex_state = 302}, - [1327] = {.lex_state = 431}, - [1328] = {.lex_state = 437}, - [1329] = {.lex_state = 437}, - [1330] = {.lex_state = 402}, - [1331] = {.lex_state = 398}, - [1332] = {.lex_state = 410}, - [1333] = {.lex_state = 410}, - [1334] = {.lex_state = 302}, - [1335] = {.lex_state = 566}, - [1336] = {.lex_state = 569}, - [1337] = {.lex_state = 572}, - [1338] = {.lex_state = 302}, - [1339] = {.lex_state = 423}, - [1340] = {.lex_state = 410}, - [1341] = {.lex_state = 410}, + [1295] = {.lex_state = 407}, + [1296] = {.lex_state = 402}, + [1297] = {.lex_state = 669, .external_lex_state = 4}, + [1298] = {.lex_state = 410}, + [1299] = {.lex_state = 437}, + [1300] = {.lex_state = 410}, + [1301] = {.lex_state = 439, .external_lex_state = 2}, + [1302] = {.lex_state = 302}, + [1303] = {.lex_state = 457, .external_lex_state = 3}, + [1304] = {.lex_state = 461}, + [1305] = {.lex_state = 759, .external_lex_state = 4}, + [1306] = {.lex_state = 761, .external_lex_state = 4}, + [1307] = {.lex_state = 402}, + [1308] = {.lex_state = 684, .external_lex_state = 5}, + [1309] = {.lex_state = 763, .external_lex_state = 5}, + [1310] = {.lex_state = 763, .external_lex_state = 5}, + [1311] = {.lex_state = 763, .external_lex_state = 5}, + [1312] = {.lex_state = 410}, + [1313] = {.lex_state = 410}, + [1314] = {.lex_state = 402}, + [1315] = {.lex_state = 589, .external_lex_state = 5}, + [1316] = {.lex_state = 766, .external_lex_state = 5}, + [1317] = {.lex_state = 398}, + [1318] = {.lex_state = 402}, + [1319] = {.lex_state = 407}, + [1320] = {.lex_state = 402}, + [1321] = {.lex_state = 402}, + [1322] = {.lex_state = 672, .external_lex_state = 5}, + [1323] = {.lex_state = 766, .external_lex_state = 5}, + [1324] = {.lex_state = 766, .external_lex_state = 5}, + [1325] = {.lex_state = 423}, + [1326] = {.lex_state = 672, .external_lex_state = 5}, + [1327] = {.lex_state = 302}, + [1328] = {.lex_state = 302}, + [1329] = {.lex_state = 461}, + [1330] = {.lex_state = 674, .external_lex_state = 4}, + [1331] = {.lex_state = 587, .external_lex_state = 5}, + [1332] = {.lex_state = 589, .external_lex_state = 5}, + [1333] = {.lex_state = 437}, + [1334] = {.lex_state = 439, .external_lex_state = 2}, + [1335] = {.lex_state = 410}, + [1336] = {.lex_state = 410}, + [1337] = {.lex_state = 402}, + [1338] = {.lex_state = 596}, + [1339] = {.lex_state = 769, .external_lex_state = 4}, + [1340] = {.lex_state = 398}, + [1341] = {.lex_state = 398}, [1342] = {.lex_state = 402}, - [1343] = {.lex_state = 437}, - [1344] = {.lex_state = 581}, - [1345] = {.lex_state = 439}, - [1346] = {.lex_state = 437}, + [1343] = {.lex_state = 407}, + [1344] = {.lex_state = 410}, + [1345] = {.lex_state = 410}, + [1346] = {.lex_state = 302}, [1347] = {.lex_state = 402}, - [1348] = {.lex_state = 410}, - [1349] = {.lex_state = 402}, - [1350] = {.lex_state = 563}, - [1351] = {.lex_state = 563}, - [1352] = {.lex_state = 302}, - [1353] = {.lex_state = 302}, - [1354] = {.lex_state = 457}, - [1355] = {.lex_state = 651}, - [1356] = {.lex_state = 410}, - [1357] = {.lex_state = 410}, - [1358] = {.lex_state = 437}, - [1359] = {.lex_state = 651}, - [1360] = {.lex_state = 398}, - [1361] = {.lex_state = 402}, - [1362] = {.lex_state = 407}, - [1363] = {.lex_state = 402}, - [1364] = {.lex_state = 402}, - [1365] = {.lex_state = 402}, - [1366] = {.lex_state = 581}, - [1367] = {.lex_state = 566}, - [1368] = {.lex_state = 651}, - [1369] = {.lex_state = 651}, - [1370] = {.lex_state = 566}, - [1371] = {.lex_state = 566}, - [1372] = {.lex_state = 566}, - [1373] = {.lex_state = 581}, - [1374] = {.lex_state = 410}, - [1375] = {.lex_state = 410}, - [1376] = {.lex_state = 402}, - [1377] = {.lex_state = 587}, - [1378] = {.lex_state = 723}, - [1379] = {.lex_state = 398}, - [1380] = {.lex_state = 398}, - [1381] = {.lex_state = 402}, - [1382] = {.lex_state = 407}, - [1383] = {.lex_state = 402}, - [1384] = {.lex_state = 402}, - [1385] = {.lex_state = 566}, - [1386] = {.lex_state = 410}, - [1387] = {.lex_state = 723}, - [1388] = {.lex_state = 723}, - [1389] = {.lex_state = 402}, - [1390] = {.lex_state = 431}, - [1391] = {.lex_state = 302}, - [1392] = {.lex_state = 302}, - [1393] = {.lex_state = 566}, - [1394] = {.lex_state = 566}, - [1395] = {.lex_state = 402}, - [1396] = {.lex_state = 566}, - [1397] = {.lex_state = 535}, - [1398] = {.lex_state = 566}, - [1399] = {.lex_state = 566}, - [1400] = {.lex_state = 566}, - [1401] = {.lex_state = 726}, - [1402] = {.lex_state = 398}, - [1403] = {.lex_state = 402}, - [1404] = {.lex_state = 407}, + [1348] = {.lex_state = 402}, + [1349] = {.lex_state = 587, .external_lex_state = 5}, + [1350] = {.lex_state = 772, .external_lex_state = 5}, + [1351] = {.lex_state = 772, .external_lex_state = 5}, + [1352] = {.lex_state = 772, .external_lex_state = 5}, + [1353] = {.lex_state = 410, .external_lex_state = 2}, + [1354] = {.lex_state = 769, .external_lex_state = 4}, + [1355] = {.lex_state = 769, .external_lex_state = 4}, + [1356] = {.lex_state = 402}, + [1357] = {.lex_state = 302}, + [1358] = {.lex_state = 431, .external_lex_state = 2}, + [1359] = {.lex_state = 678, .external_lex_state = 5}, + [1360] = {.lex_state = 678, .external_lex_state = 5}, + [1361] = {.lex_state = 410}, + [1362] = {.lex_state = 437}, + [1363] = {.lex_state = 410}, + [1364] = {.lex_state = 439, .external_lex_state = 2}, + [1365] = {.lex_state = 302}, + [1366] = {.lex_state = 457, .external_lex_state = 3}, + [1367] = {.lex_state = 461}, + [1368] = {.lex_state = 774, .external_lex_state = 4}, + [1369] = {.lex_state = 777, .external_lex_state = 4}, + [1370] = {.lex_state = 402}, + [1371] = {.lex_state = 681, .external_lex_state = 5}, + [1372] = {.lex_state = 681, .external_lex_state = 5}, + [1373] = {.lex_state = 681, .external_lex_state = 5}, + [1374] = {.lex_state = 681, .external_lex_state = 5}, + [1375] = {.lex_state = 681, .external_lex_state = 5}, + [1376] = {.lex_state = 410}, + [1377] = {.lex_state = 410}, + [1378] = {.lex_state = 302}, + [1379] = {.lex_state = 302}, + [1380] = {.lex_state = 780, .external_lex_state = 5}, + [1381] = {.lex_state = 684, .external_lex_state = 5}, + [1382] = {.lex_state = 402}, + [1383] = {.lex_state = 457, .external_lex_state = 3}, + [1384] = {.lex_state = 539}, + [1385] = {.lex_state = 687, .external_lex_state = 5}, + [1386] = {.lex_state = 783, .external_lex_state = 5}, + [1387] = {.lex_state = 687, .external_lex_state = 5}, + [1388] = {.lex_state = 681, .external_lex_state = 5}, + [1389] = {.lex_state = 681, .external_lex_state = 5}, + [1390] = {.lex_state = 584, .external_lex_state = 4}, + [1391] = {.lex_state = 584, .external_lex_state = 4}, + [1392] = {.lex_state = 410}, + [1393] = {.lex_state = 437}, + [1394] = {.lex_state = 589, .external_lex_state = 5}, + [1395] = {.lex_state = 410}, + [1396] = {.lex_state = 439, .external_lex_state = 2}, + [1397] = {.lex_state = 302}, + [1398] = {.lex_state = 457, .external_lex_state = 3}, + [1399] = {.lex_state = 461}, + [1400] = {.lex_state = 786, .external_lex_state = 4}, + [1401] = {.lex_state = 788, .external_lex_state = 4}, + [1402] = {.lex_state = 402}, + [1403] = {.lex_state = 398}, + [1404] = {.lex_state = 410}, [1405] = {.lex_state = 410}, - [1406] = {.lex_state = 410}, - [1407] = {.lex_state = 302}, - [1408] = {.lex_state = 402}, - [1409] = {.lex_state = 402}, - [1410] = {.lex_state = 657}, - [1411] = {.lex_state = 657}, - [1412] = {.lex_state = 657}, - [1413] = {.lex_state = 726}, - [1414] = {.lex_state = 726}, - [1415] = {.lex_state = 302}, - [1416] = {.lex_state = 423}, - [1417] = {.lex_state = 729}, - [1418] = {.lex_state = 398}, - [1419] = {.lex_state = 402}, - [1420] = {.lex_state = 407}, + [1406] = {.lex_state = 302}, + [1407] = {.lex_state = 790, .external_lex_state = 5}, + [1408] = {.lex_state = 793, .external_lex_state = 5}, + [1409] = {.lex_state = 796, .external_lex_state = 5}, + [1410] = {.lex_state = 796, .external_lex_state = 5}, + [1411] = {.lex_state = 799, .external_lex_state = 5}, + [1412] = {.lex_state = 302}, + [1413] = {.lex_state = 423}, + [1414] = {.lex_state = 410}, + [1415] = {.lex_state = 410}, + [1416] = {.lex_state = 402}, + [1417] = {.lex_state = 589, .external_lex_state = 5}, + [1418] = {.lex_state = 410}, + [1419] = {.lex_state = 398}, + [1420] = {.lex_state = 410}, [1421] = {.lex_state = 410}, - [1422] = {.lex_state = 410}, - [1423] = {.lex_state = 302}, - [1424] = {.lex_state = 402}, - [1425] = {.lex_state = 402}, - [1426] = {.lex_state = 569}, - [1427] = {.lex_state = 569}, - [1428] = {.lex_state = 569}, - [1429] = {.lex_state = 729}, - [1430] = {.lex_state = 729}, - [1431] = {.lex_state = 302}, - [1432] = {.lex_state = 423}, - [1433] = {.lex_state = 569}, - [1434] = {.lex_state = 732}, - [1435] = {.lex_state = 398}, - [1436] = {.lex_state = 398}, - [1437] = {.lex_state = 402}, - [1438] = {.lex_state = 407}, - [1439] = {.lex_state = 410}, - [1440] = {.lex_state = 410}, - [1441] = {.lex_state = 302}, + [1422] = {.lex_state = 302}, + [1423] = {.lex_state = 584, .external_lex_state = 2}, + [1424] = {.lex_state = 589, .external_lex_state = 5}, + [1425] = {.lex_state = 589, .external_lex_state = 5}, + [1426] = {.lex_state = 589, .external_lex_state = 5}, + [1427] = {.lex_state = 584, .external_lex_state = 2}, + [1428] = {.lex_state = 584, .external_lex_state = 2}, + [1429] = {.lex_state = 398}, + [1430] = {.lex_state = 402}, + [1431] = {.lex_state = 407}, + [1432] = {.lex_state = 402}, + [1433] = {.lex_state = 402}, + [1434] = {.lex_state = 584, .external_lex_state = 2}, + [1435] = {.lex_state = 584, .external_lex_state = 2}, + [1436] = {.lex_state = 593}, + [1437] = {.lex_state = 593}, + [1438] = {.lex_state = 402}, + [1439] = {.lex_state = 437}, + [1440] = {.lex_state = 410, .external_lex_state = 2}, + [1441] = {.lex_state = 402}, [1442] = {.lex_state = 402}, - [1443] = {.lex_state = 402}, - [1444] = {.lex_state = 660}, - [1445] = {.lex_state = 660}, - [1446] = {.lex_state = 660}, - [1447] = {.lex_state = 660}, - [1448] = {.lex_state = 410}, - [1449] = {.lex_state = 732}, - [1450] = {.lex_state = 732}, + [1443] = {.lex_state = 457, .external_lex_state = 3}, + [1444] = {.lex_state = 539}, + [1445] = {.lex_state = 690}, + [1446] = {.lex_state = 802}, + [1447] = {.lex_state = 690}, + [1448] = {.lex_state = 437}, + [1449] = {.lex_state = 302}, + [1450] = {.lex_state = 398}, [1451] = {.lex_state = 402}, - [1452] = {.lex_state = 302}, - [1453] = {.lex_state = 431}, - [1454] = {.lex_state = 572}, - [1455] = {.lex_state = 572}, - [1456] = {.lex_state = 410}, - [1457] = {.lex_state = 572}, - [1458] = {.lex_state = 575}, - [1459] = {.lex_state = 575}, - [1460] = {.lex_state = 517}, - [1461] = {.lex_state = 402}, - [1462] = {.lex_state = 402}, - [1463] = {.lex_state = 402}, - [1464] = {.lex_state = 578}, - [1465] = {.lex_state = 578}, - [1466] = {.lex_state = 402}, - [1467] = {.lex_state = 398}, - [1468] = {.lex_state = 423}, + [1452] = {.lex_state = 407}, + [1453] = {.lex_state = 402}, + [1454] = {.lex_state = 402}, + [1455] = {.lex_state = 302}, + [1456] = {.lex_state = 302}, + [1457] = {.lex_state = 693, .external_lex_state = 7}, + [1458] = {.lex_state = 693, .external_lex_state = 7}, + [1459] = {.lex_state = 410}, + [1460] = {.lex_state = 437}, + [1461] = {.lex_state = 805, .external_lex_state = 7}, + [1462] = {.lex_state = 398}, + [1463] = {.lex_state = 398}, + [1464] = {.lex_state = 402}, + [1465] = {.lex_state = 407}, + [1466] = {.lex_state = 410}, + [1467] = {.lex_state = 410}, + [1468] = {.lex_state = 302}, [1469] = {.lex_state = 402}, - [1470] = {.lex_state = 581}, - [1471] = {.lex_state = 410}, - [1472] = {.lex_state = 581}, - [1473] = {.lex_state = 402}, - [1474] = {.lex_state = 398}, - [1475] = {.lex_state = 398}, - [1476] = {.lex_state = 410}, - [1477] = {.lex_state = 410}, + [1470] = {.lex_state = 402}, + [1471] = {.lex_state = 591, .external_lex_state = 8}, + [1472] = {.lex_state = 808, .external_lex_state = 8}, + [1473] = {.lex_state = 808, .external_lex_state = 8}, + [1474] = {.lex_state = 808, .external_lex_state = 8}, + [1475] = {.lex_state = 410, .external_lex_state = 2}, + [1476] = {.lex_state = 805, .external_lex_state = 7}, + [1477] = {.lex_state = 805, .external_lex_state = 7}, [1478] = {.lex_state = 402}, [1479] = {.lex_state = 302}, - [1480] = {.lex_state = 431}, - [1481] = {.lex_state = 596}, - [1482] = {.lex_state = 599}, - [1483] = {.lex_state = 402}, - [1484] = {.lex_state = 525}, - [1485] = {.lex_state = 525}, - [1486] = {.lex_state = 525}, - [1487] = {.lex_state = 302}, - [1488] = {.lex_state = 302}, - [1489] = {.lex_state = 642}, - [1490] = {.lex_state = 402}, - [1491] = {.lex_state = 663}, - [1492] = {.lex_state = 535}, - [1493] = {.lex_state = 663}, - [1494] = {.lex_state = 735}, - [1495] = {.lex_state = 663}, - [1496] = {.lex_state = 581}, - [1497] = {.lex_state = 581}, - [1498] = {.lex_state = 410}, - [1499] = {.lex_state = 437}, - [1500] = {.lex_state = 410}, - [1501] = {.lex_state = 439}, - [1502] = {.lex_state = 410}, - [1503] = {.lex_state = 410}, - [1504] = {.lex_state = 402}, - [1505] = {.lex_state = 398}, - [1506] = {.lex_state = 410}, - [1507] = {.lex_state = 410}, - [1508] = {.lex_state = 302}, - [1509] = {.lex_state = 525}, - [1510] = {.lex_state = 554}, - [1511] = {.lex_state = 738}, - [1512] = {.lex_state = 738}, - [1513] = {.lex_state = 738}, - [1514] = {.lex_state = 302}, - [1515] = {.lex_state = 423}, - [1516] = {.lex_state = 410}, - [1517] = {.lex_state = 410}, - [1518] = {.lex_state = 402}, - [1519] = {.lex_state = 410}, + [1480] = {.lex_state = 431, .external_lex_state = 2}, + [1481] = {.lex_state = 410}, + [1482] = {.lex_state = 439, .external_lex_state = 2}, + [1483] = {.lex_state = 302}, + [1484] = {.lex_state = 457, .external_lex_state = 3}, + [1485] = {.lex_state = 461}, + [1486] = {.lex_state = 786, .external_lex_state = 7}, + [1487] = {.lex_state = 788, .external_lex_state = 7}, + [1488] = {.lex_state = 402}, + [1489] = {.lex_state = 810, .external_lex_state = 8}, + [1490] = {.lex_state = 398}, + [1491] = {.lex_state = 402}, + [1492] = {.lex_state = 407}, + [1493] = {.lex_state = 410}, + [1494] = {.lex_state = 410}, + [1495] = {.lex_state = 302}, + [1496] = {.lex_state = 402}, + [1497] = {.lex_state = 402}, + [1498] = {.lex_state = 790, .external_lex_state = 8}, + [1499] = {.lex_state = 790, .external_lex_state = 8}, + [1500] = {.lex_state = 790, .external_lex_state = 8}, + [1501] = {.lex_state = 810, .external_lex_state = 8}, + [1502] = {.lex_state = 810, .external_lex_state = 8}, + [1503] = {.lex_state = 793, .external_lex_state = 8}, + [1504] = {.lex_state = 799, .external_lex_state = 8}, + [1505] = {.lex_state = 799, .external_lex_state = 8}, + [1506] = {.lex_state = 799, .external_lex_state = 8}, + [1507] = {.lex_state = 302}, + [1508] = {.lex_state = 423}, + [1509] = {.lex_state = 410}, + [1510] = {.lex_state = 410}, + [1511] = {.lex_state = 402}, + [1512] = {.lex_state = 591, .external_lex_state = 8}, + [1513] = {.lex_state = 584, .external_lex_state = 2}, + [1514] = {.lex_state = 439, .external_lex_state = 2}, + [1515] = {.lex_state = 591, .external_lex_state = 8}, + [1516] = {.lex_state = 416}, + [1517] = {.lex_state = 416}, + [1518] = {.lex_state = 591, .external_lex_state = 8}, + [1519] = {.lex_state = 402}, [1520] = {.lex_state = 398}, - [1521] = {.lex_state = 410}, + [1521] = {.lex_state = 398}, [1522] = {.lex_state = 410}, - [1523] = {.lex_state = 302}, - [1524] = {.lex_state = 581}, + [1523] = {.lex_state = 410}, + [1524] = {.lex_state = 302}, [1525] = {.lex_state = 410}, - [1526] = {.lex_state = 581}, - [1527] = {.lex_state = 398}, - [1528] = {.lex_state = 581}, - [1529] = {.lex_state = 584}, - [1530] = {.lex_state = 584}, - [1531] = {.lex_state = 741}, - [1532] = {.lex_state = 398}, - [1533] = {.lex_state = 402}, - [1534] = {.lex_state = 407}, - [1535] = {.lex_state = 402}, - [1536] = {.lex_state = 410}, - [1537] = {.lex_state = 410}, - [1538] = {.lex_state = 302}, - [1539] = {.lex_state = 402}, - [1540] = {.lex_state = 402}, - [1541] = {.lex_state = 581}, - [1542] = {.lex_state = 741}, - [1543] = {.lex_state = 741}, - [1544] = {.lex_state = 437}, - [1545] = {.lex_state = 581}, + [1526] = {.lex_state = 410, .external_lex_state = 2}, + [1527] = {.lex_state = 402}, + [1528] = {.lex_state = 302}, + [1529] = {.lex_state = 431, .external_lex_state = 2}, + [1530] = {.lex_state = 605, .external_lex_state = 2}, + [1531] = {.lex_state = 608, .external_lex_state = 2}, + [1532] = {.lex_state = 402}, + [1533] = {.lex_state = 529}, + [1534] = {.lex_state = 302}, + [1535] = {.lex_state = 302}, + [1536] = {.lex_state = 651}, + [1537] = {.lex_state = 402}, + [1538] = {.lex_state = 687}, + [1539] = {.lex_state = 410}, + [1540] = {.lex_state = 410, .external_lex_state = 2}, + [1541] = {.lex_state = 599}, + [1542] = {.lex_state = 599}, + [1543] = {.lex_state = 402}, + [1544] = {.lex_state = 410}, + [1545] = {.lex_state = 410, .external_lex_state = 2}, [1546] = {.lex_state = 402}, - [1547] = {.lex_state = 437}, - [1548] = {.lex_state = 410}, - [1549] = {.lex_state = 402}, - [1550] = {.lex_state = 402}, - [1551] = {.lex_state = 666}, - [1552] = {.lex_state = 535}, - [1553] = {.lex_state = 666}, - [1554] = {.lex_state = 744}, - [1555] = {.lex_state = 666}, - [1556] = {.lex_state = 437}, - [1557] = {.lex_state = 302}, - [1558] = {.lex_state = 398}, - [1559] = {.lex_state = 402}, - [1560] = {.lex_state = 407}, + [1547] = {.lex_state = 402}, + [1548] = {.lex_state = 457, .external_lex_state = 3}, + [1549] = {.lex_state = 539}, + [1550] = {.lex_state = 687}, + [1551] = {.lex_state = 783}, + [1552] = {.lex_state = 687}, + [1553] = {.lex_state = 602, .external_lex_state = 2}, + [1554] = {.lex_state = 602, .external_lex_state = 2}, + [1555] = {.lex_state = 416}, + [1556] = {.lex_state = 410}, + [1557] = {.lex_state = 437}, + [1558] = {.lex_state = 410}, + [1559] = {.lex_state = 410}, + [1560] = {.lex_state = 608, .external_lex_state = 2}, [1561] = {.lex_state = 402}, - [1562] = {.lex_state = 402}, - [1563] = {.lex_state = 302}, - [1564] = {.lex_state = 302}, - [1565] = {.lex_state = 514}, - [1566] = {.lex_state = 514}, + [1562] = {.lex_state = 529}, + [1563] = {.lex_state = 402}, + [1564] = {.lex_state = 457, .external_lex_state = 6}, + [1565] = {.lex_state = 402}, + [1566] = {.lex_state = 410}, [1567] = {.lex_state = 402}, - [1568] = {.lex_state = 402}, - [1569] = {.lex_state = 596}, - [1570] = {.lex_state = 599}, + [1568] = {.lex_state = 407}, + [1569] = {.lex_state = 402}, + [1570] = {.lex_state = 696, .external_lex_state = 2}, [1571] = {.lex_state = 402}, - [1572] = {.lex_state = 525}, - [1573] = {.lex_state = 302}, - [1574] = {.lex_state = 302}, - [1575] = {.lex_state = 525}, - [1576] = {.lex_state = 402}, - [1577] = {.lex_state = 525}, - [1578] = {.lex_state = 416}, + [1572] = {.lex_state = 407}, + [1573] = {.lex_state = 402}, + [1574] = {.lex_state = 696, .external_lex_state = 2}, + [1575] = {.lex_state = 410}, + [1576] = {.lex_state = 437}, + [1577] = {.lex_state = 410}, + [1578] = {.lex_state = 410}, [1579] = {.lex_state = 402}, - [1580] = {.lex_state = 416}, - [1581] = {.lex_state = 416}, - [1582] = {.lex_state = 398}, - [1583] = {.lex_state = 402}, - [1584] = {.lex_state = 410}, - [1585] = {.lex_state = 410}, - [1586] = {.lex_state = 302}, - [1587] = {.lex_state = 581}, - [1588] = {.lex_state = 410}, - [1589] = {.lex_state = 581}, - [1590] = {.lex_state = 402}, - [1591] = {.lex_state = 398}, - [1592] = {.lex_state = 398}, - [1593] = {.lex_state = 410}, - [1594] = {.lex_state = 410}, - [1595] = {.lex_state = 302}, - [1596] = {.lex_state = 410}, - [1597] = {.lex_state = 410}, - [1598] = {.lex_state = 402}, - [1599] = {.lex_state = 302}, - [1600] = {.lex_state = 431}, - [1601] = {.lex_state = 439}, - [1602] = {.lex_state = 596}, - [1603] = {.lex_state = 599}, - [1604] = {.lex_state = 402}, - [1605] = {.lex_state = 525}, - [1606] = {.lex_state = 525}, - [1607] = {.lex_state = 525}, - [1608] = {.lex_state = 302}, - [1609] = {.lex_state = 302}, - [1610] = {.lex_state = 642}, - [1611] = {.lex_state = 402}, - [1612] = {.lex_state = 663}, - [1613] = {.lex_state = 535}, - [1614] = {.lex_state = 735}, - [1615] = {.lex_state = 663}, - [1616] = {.lex_state = 410}, - [1617] = {.lex_state = 410}, - [1618] = {.lex_state = 590}, - [1619] = {.lex_state = 590}, - [1620] = {.lex_state = 402}, - [1621] = {.lex_state = 410}, - [1622] = {.lex_state = 410}, - [1623] = {.lex_state = 402}, - [1624] = {.lex_state = 402}, - [1625] = {.lex_state = 663}, - [1626] = {.lex_state = 593}, - [1627] = {.lex_state = 593}, - [1628] = {.lex_state = 416}, - [1629] = {.lex_state = 410}, - [1630] = {.lex_state = 437}, + [1580] = {.lex_state = 529}, + [1581] = {.lex_state = 529}, + [1582] = {.lex_state = 529}, + [1583] = {.lex_state = 457, .external_lex_state = 6}, + [1584] = {.lex_state = 457, .external_lex_state = 3}, + [1585] = {.lex_state = 402}, + [1586] = {.lex_state = 402}, + [1587] = {.lex_state = 398}, + [1588] = {.lex_state = 398}, + [1589] = {.lex_state = 529}, + [1590] = {.lex_state = 410, .external_lex_state = 2}, + [1591] = {.lex_state = 402}, + [1592] = {.lex_state = 431, .external_lex_state = 2}, + [1593] = {.lex_state = 302}, + [1594] = {.lex_state = 302}, + [1595] = {.lex_state = 402}, + [1596] = {.lex_state = 529}, + [1597] = {.lex_state = 398}, + [1598] = {.lex_state = 410}, + [1599] = {.lex_state = 410}, + [1600] = {.lex_state = 302}, + [1601] = {.lex_state = 302}, + [1602] = {.lex_state = 423}, + [1603] = {.lex_state = 398}, + [1604] = {.lex_state = 410}, + [1605] = {.lex_state = 410}, + [1606] = {.lex_state = 302}, + [1607] = {.lex_state = 302}, + [1608] = {.lex_state = 423}, + [1609] = {.lex_state = 398}, + [1610] = {.lex_state = 398}, + [1611] = {.lex_state = 410}, + [1612] = {.lex_state = 410}, + [1613] = {.lex_state = 302}, + [1614] = {.lex_state = 654}, + [1615] = {.lex_state = 410, .external_lex_state = 2}, + [1616] = {.lex_state = 402}, + [1617] = {.lex_state = 302}, + [1618] = {.lex_state = 431, .external_lex_state = 2}, + [1619] = {.lex_state = 402}, + [1620] = {.lex_state = 611}, + [1621] = {.lex_state = 611}, + [1622] = {.lex_state = 302}, + [1623] = {.lex_state = 302}, + [1624] = {.lex_state = 461}, + [1625] = {.lex_state = 699, .external_lex_state = 2}, + [1626] = {.lex_state = 587, .external_lex_state = 5}, + [1627] = {.lex_state = 589, .external_lex_state = 5}, + [1628] = {.lex_state = 437}, + [1629] = {.lex_state = 439, .external_lex_state = 2}, + [1630] = {.lex_state = 410}, [1631] = {.lex_state = 410}, - [1632] = {.lex_state = 410}, - [1633] = {.lex_state = 599}, - [1634] = {.lex_state = 402}, - [1635] = {.lex_state = 525}, - [1636] = {.lex_state = 402}, - [1637] = {.lex_state = 596}, - [1638] = {.lex_state = 596}, - [1639] = {.lex_state = 410}, - [1640] = {.lex_state = 437}, - [1641] = {.lex_state = 398}, - [1642] = {.lex_state = 398}, - [1643] = {.lex_state = 525}, - [1644] = {.lex_state = 525}, - [1645] = {.lex_state = 410}, + [1632] = {.lex_state = 402}, + [1633] = {.lex_state = 596}, + [1634] = {.lex_state = 813, .external_lex_state = 2}, + [1635] = {.lex_state = 398}, + [1636] = {.lex_state = 398}, + [1637] = {.lex_state = 402}, + [1638] = {.lex_state = 407}, + [1639] = {.lex_state = 402}, + [1640] = {.lex_state = 402}, + [1641] = {.lex_state = 614}, + [1642] = {.lex_state = 614}, + [1643] = {.lex_state = 410, .external_lex_state = 2}, + [1644] = {.lex_state = 813, .external_lex_state = 2}, + [1645] = {.lex_state = 813, .external_lex_state = 2}, [1646] = {.lex_state = 402}, - [1647] = {.lex_state = 431}, - [1648] = {.lex_state = 410}, - [1649] = {.lex_state = 410}, - [1650] = {.lex_state = 402}, - [1651] = {.lex_state = 525}, - [1652] = {.lex_state = 581}, - [1653] = {.lex_state = 439}, - [1654] = {.lex_state = 525}, - [1655] = {.lex_state = 402}, - [1656] = {.lex_state = 410}, - [1657] = {.lex_state = 402}, - [1658] = {.lex_state = 407}, - [1659] = {.lex_state = 402}, - [1660] = {.lex_state = 669}, - [1661] = {.lex_state = 402}, - [1662] = {.lex_state = 407}, - [1663] = {.lex_state = 402}, - [1664] = {.lex_state = 669}, - [1665] = {.lex_state = 410}, - [1666] = {.lex_state = 437}, - [1667] = {.lex_state = 410}, - [1668] = {.lex_state = 410}, - [1669] = {.lex_state = 402}, - [1670] = {.lex_state = 525}, - [1671] = {.lex_state = 302}, - [1672] = {.lex_state = 525}, - [1673] = {.lex_state = 525}, - [1674] = {.lex_state = 398}, + [1647] = {.lex_state = 431, .external_lex_state = 2}, + [1648] = {.lex_state = 302}, + [1649] = {.lex_state = 302}, + [1650] = {.lex_state = 614}, + [1651] = {.lex_state = 614}, + [1652] = {.lex_state = 402}, + [1653] = {.lex_state = 457, .external_lex_state = 3}, + [1654] = {.lex_state = 539}, + [1655] = {.lex_state = 614}, + [1656] = {.lex_state = 614}, + [1657] = {.lex_state = 614}, + [1658] = {.lex_state = 816}, + [1659] = {.lex_state = 398}, + [1660] = {.lex_state = 402}, + [1661] = {.lex_state = 407}, + [1662] = {.lex_state = 410}, + [1663] = {.lex_state = 410}, + [1664] = {.lex_state = 302}, + [1665] = {.lex_state = 402}, + [1666] = {.lex_state = 402}, + [1667] = {.lex_state = 705}, + [1668] = {.lex_state = 705}, + [1669] = {.lex_state = 705}, + [1670] = {.lex_state = 816}, + [1671] = {.lex_state = 816}, + [1672] = {.lex_state = 302}, + [1673] = {.lex_state = 423}, + [1674] = {.lex_state = 819}, [1675] = {.lex_state = 398}, - [1676] = {.lex_state = 410}, - [1677] = {.lex_state = 410}, - [1678] = {.lex_state = 402}, - [1679] = {.lex_state = 302}, - [1680] = {.lex_state = 431}, - [1681] = {.lex_state = 410}, - [1682] = {.lex_state = 410}, - [1683] = {.lex_state = 402}, - [1684] = {.lex_state = 398}, - [1685] = {.lex_state = 410}, - [1686] = {.lex_state = 410}, - [1687] = {.lex_state = 302}, - [1688] = {.lex_state = 525}, - [1689] = {.lex_state = 554}, - [1690] = {.lex_state = 557}, - [1691] = {.lex_state = 302}, - [1692] = {.lex_state = 423}, - [1693] = {.lex_state = 402}, - [1694] = {.lex_state = 581}, - [1695] = {.lex_state = 439}, + [1676] = {.lex_state = 402}, + [1677] = {.lex_state = 407}, + [1678] = {.lex_state = 410}, + [1679] = {.lex_state = 410}, + [1680] = {.lex_state = 302}, + [1681] = {.lex_state = 402}, + [1682] = {.lex_state = 402}, + [1683] = {.lex_state = 618}, + [1684] = {.lex_state = 618}, + [1685] = {.lex_state = 618}, + [1686] = {.lex_state = 819}, + [1687] = {.lex_state = 819}, + [1688] = {.lex_state = 302}, + [1689] = {.lex_state = 423}, + [1690] = {.lex_state = 618}, + [1691] = {.lex_state = 822, .external_lex_state = 2}, + [1692] = {.lex_state = 398}, + [1693] = {.lex_state = 398}, + [1694] = {.lex_state = 402}, + [1695] = {.lex_state = 407}, [1696] = {.lex_state = 410}, - [1697] = {.lex_state = 402}, - [1698] = {.lex_state = 398}, + [1697] = {.lex_state = 410}, + [1698] = {.lex_state = 302}, [1699] = {.lex_state = 402}, - [1700] = {.lex_state = 581}, - [1701] = {.lex_state = 525}, - [1702] = {.lex_state = 581}, - [1703] = {.lex_state = 402}, - [1704] = {.lex_state = 398}, - [1705] = {.lex_state = 398}, - [1706] = {.lex_state = 525}, - [1707] = {.lex_state = 410}, + [1700] = {.lex_state = 402}, + [1701] = {.lex_state = 708}, + [1702] = {.lex_state = 708}, + [1703] = {.lex_state = 708}, + [1704] = {.lex_state = 708}, + [1705] = {.lex_state = 410, .external_lex_state = 2}, + [1706] = {.lex_state = 822, .external_lex_state = 2}, + [1707] = {.lex_state = 822, .external_lex_state = 2}, [1708] = {.lex_state = 402}, - [1709] = {.lex_state = 431}, - [1710] = {.lex_state = 302}, - [1711] = {.lex_state = 302}, - [1712] = {.lex_state = 525}, - [1713] = {.lex_state = 402}, - [1714] = {.lex_state = 525}, - [1715] = {.lex_state = 535}, - [1716] = {.lex_state = 525}, - [1717] = {.lex_state = 525}, - [1718] = {.lex_state = 398}, - [1719] = {.lex_state = 410}, - [1720] = {.lex_state = 410}, + [1709] = {.lex_state = 302}, + [1710] = {.lex_state = 431, .external_lex_state = 2}, + [1711] = {.lex_state = 639, .external_lex_state = 6}, + [1712] = {.lex_state = 621}, + [1713] = {.lex_state = 621}, + [1714] = {.lex_state = 410}, + [1715] = {.lex_state = 621}, + [1716] = {.lex_state = 624}, + [1717] = {.lex_state = 624}, + [1718] = {.lex_state = 627}, + [1719] = {.lex_state = 627}, + [1720] = {.lex_state = 302}, [1721] = {.lex_state = 302}, - [1722] = {.lex_state = 302}, - [1723] = {.lex_state = 423}, - [1724] = {.lex_state = 398}, - [1725] = {.lex_state = 410}, - [1726] = {.lex_state = 410}, - [1727] = {.lex_state = 302}, - [1728] = {.lex_state = 302}, - [1729] = {.lex_state = 423}, - [1730] = {.lex_state = 398}, - [1731] = {.lex_state = 398}, - [1732] = {.lex_state = 410}, - [1733] = {.lex_state = 410}, - [1734] = {.lex_state = 302}, - [1735] = {.lex_state = 645}, - [1736] = {.lex_state = 410}, + [1722] = {.lex_state = 461}, + [1723] = {.lex_state = 711, .external_lex_state = 2}, + [1724] = {.lex_state = 587, .external_lex_state = 5}, + [1725] = {.lex_state = 589, .external_lex_state = 5}, + [1726] = {.lex_state = 437}, + [1727] = {.lex_state = 439, .external_lex_state = 2}, + [1728] = {.lex_state = 410}, + [1729] = {.lex_state = 410}, + [1730] = {.lex_state = 402}, + [1731] = {.lex_state = 596}, + [1732] = {.lex_state = 825, .external_lex_state = 2}, + [1733] = {.lex_state = 398}, + [1734] = {.lex_state = 398}, + [1735] = {.lex_state = 402}, + [1736] = {.lex_state = 407}, [1737] = {.lex_state = 402}, - [1738] = {.lex_state = 302}, - [1739] = {.lex_state = 431}, - [1740] = {.lex_state = 557}, - [1741] = {.lex_state = 410}, - [1742] = {.lex_state = 672}, - [1743] = {.lex_state = 672}, - [1744] = {.lex_state = 410}, - [1745] = {.lex_state = 437}, - [1746] = {.lex_state = 398}, - [1747] = {.lex_state = 398}, - [1748] = {.lex_state = 410}, - [1749] = {.lex_state = 410}, + [1738] = {.lex_state = 402}, + [1739] = {.lex_state = 536}, + [1740] = {.lex_state = 536}, + [1741] = {.lex_state = 410, .external_lex_state = 2}, + [1742] = {.lex_state = 825, .external_lex_state = 2}, + [1743] = {.lex_state = 825, .external_lex_state = 2}, + [1744] = {.lex_state = 402}, + [1745] = {.lex_state = 431, .external_lex_state = 2}, + [1746] = {.lex_state = 302}, + [1747] = {.lex_state = 302}, + [1748] = {.lex_state = 651}, + [1749] = {.lex_state = 651}, [1750] = {.lex_state = 402}, - [1751] = {.lex_state = 302}, - [1752] = {.lex_state = 431}, - [1753] = {.lex_state = 410}, - [1754] = {.lex_state = 410}, - [1755] = {.lex_state = 402}, - [1756] = {.lex_state = 398}, - [1757] = {.lex_state = 410}, - [1758] = {.lex_state = 410}, + [1751] = {.lex_state = 457, .external_lex_state = 3}, + [1752] = {.lex_state = 539}, + [1753] = {.lex_state = 651}, + [1754] = {.lex_state = 651}, + [1755] = {.lex_state = 651}, + [1756] = {.lex_state = 630}, + [1757] = {.lex_state = 630}, + [1758] = {.lex_state = 302}, [1759] = {.lex_state = 302}, - [1760] = {.lex_state = 605}, - [1761] = {.lex_state = 609}, - [1762] = {.lex_state = 612}, - [1763] = {.lex_state = 302}, - [1764] = {.lex_state = 423}, - [1765] = {.lex_state = 410}, + [1760] = {.lex_state = 461}, + [1761] = {.lex_state = 717, .external_lex_state = 2}, + [1762] = {.lex_state = 587, .external_lex_state = 5}, + [1763] = {.lex_state = 589, .external_lex_state = 5}, + [1764] = {.lex_state = 437}, + [1765] = {.lex_state = 439, .external_lex_state = 2}, [1766] = {.lex_state = 410}, - [1767] = {.lex_state = 402}, - [1768] = {.lex_state = 581}, - [1769] = {.lex_state = 439}, - [1770] = {.lex_state = 410}, - [1771] = {.lex_state = 402}, - [1772] = {.lex_state = 602}, - [1773] = {.lex_state = 602}, - [1774] = {.lex_state = 302}, - [1775] = {.lex_state = 302}, - [1776] = {.lex_state = 457}, - [1777] = {.lex_state = 675}, - [1778] = {.lex_state = 410}, - [1779] = {.lex_state = 410}, - [1780] = {.lex_state = 437}, - [1781] = {.lex_state = 675}, - [1782] = {.lex_state = 398}, - [1783] = {.lex_state = 402}, - [1784] = {.lex_state = 407}, - [1785] = {.lex_state = 402}, + [1767] = {.lex_state = 410}, + [1768] = {.lex_state = 402}, + [1769] = {.lex_state = 596}, + [1770] = {.lex_state = 828, .external_lex_state = 2}, + [1771] = {.lex_state = 398}, + [1772] = {.lex_state = 398}, + [1773] = {.lex_state = 402}, + [1774] = {.lex_state = 407}, + [1775] = {.lex_state = 402}, + [1776] = {.lex_state = 402}, + [1777] = {.lex_state = 419}, + [1778] = {.lex_state = 419}, + [1779] = {.lex_state = 410, .external_lex_state = 2}, + [1780] = {.lex_state = 828, .external_lex_state = 2}, + [1781] = {.lex_state = 828, .external_lex_state = 2}, + [1782] = {.lex_state = 402}, + [1783] = {.lex_state = 431, .external_lex_state = 2}, + [1784] = {.lex_state = 302}, + [1785] = {.lex_state = 651}, [1786] = {.lex_state = 402}, - [1787] = {.lex_state = 402}, - [1788] = {.lex_state = 581}, - [1789] = {.lex_state = 605}, - [1790] = {.lex_state = 675}, - [1791] = {.lex_state = 675}, - [1792] = {.lex_state = 605}, - [1793] = {.lex_state = 605}, - [1794] = {.lex_state = 605}, - [1795] = {.lex_state = 581}, - [1796] = {.lex_state = 410}, - [1797] = {.lex_state = 410}, - [1798] = {.lex_state = 402}, - [1799] = {.lex_state = 587}, - [1800] = {.lex_state = 747}, - [1801] = {.lex_state = 398}, - [1802] = {.lex_state = 398}, - [1803] = {.lex_state = 402}, - [1804] = {.lex_state = 407}, - [1805] = {.lex_state = 402}, - [1806] = {.lex_state = 402}, - [1807] = {.lex_state = 605}, - [1808] = {.lex_state = 410}, - [1809] = {.lex_state = 747}, - [1810] = {.lex_state = 747}, - [1811] = {.lex_state = 402}, - [1812] = {.lex_state = 431}, - [1813] = {.lex_state = 302}, - [1814] = {.lex_state = 302}, - [1815] = {.lex_state = 605}, - [1816] = {.lex_state = 605}, - [1817] = {.lex_state = 402}, - [1818] = {.lex_state = 605}, - [1819] = {.lex_state = 535}, - [1820] = {.lex_state = 605}, - [1821] = {.lex_state = 605}, - [1822] = {.lex_state = 605}, - [1823] = {.lex_state = 750}, - [1824] = {.lex_state = 398}, - [1825] = {.lex_state = 402}, - [1826] = {.lex_state = 407}, + [1787] = {.lex_state = 457, .external_lex_state = 3}, + [1788] = {.lex_state = 539}, + [1789] = {.lex_state = 557}, + [1790] = {.lex_state = 557}, + [1791] = {.lex_state = 557}, + [1792] = {.lex_state = 633, .external_lex_state = 2}, + [1793] = {.lex_state = 633, .external_lex_state = 2}, + [1794] = {.lex_state = 302}, + [1795] = {.lex_state = 302}, + [1796] = {.lex_state = 461}, + [1797] = {.lex_state = 723, .external_lex_state = 2}, + [1798] = {.lex_state = 587, .external_lex_state = 5}, + [1799] = {.lex_state = 589, .external_lex_state = 5}, + [1800] = {.lex_state = 437}, + [1801] = {.lex_state = 439, .external_lex_state = 2}, + [1802] = {.lex_state = 410}, + [1803] = {.lex_state = 410}, + [1804] = {.lex_state = 402}, + [1805] = {.lex_state = 596}, + [1806] = {.lex_state = 636}, + [1807] = {.lex_state = 636}, + [1808] = {.lex_state = 410, .external_lex_state = 2}, + [1809] = {.lex_state = 402}, + [1810] = {.lex_state = 402}, + [1811] = {.lex_state = 457, .external_lex_state = 3}, + [1812] = {.lex_state = 539}, + [1813] = {.lex_state = 654}, + [1814] = {.lex_state = 654}, + [1815] = {.lex_state = 654}, + [1816] = {.lex_state = 548}, + [1817] = {.lex_state = 729}, + [1818] = {.lex_state = 729}, + [1819] = {.lex_state = 410}, + [1820] = {.lex_state = 437}, + [1821] = {.lex_state = 410}, + [1822] = {.lex_state = 410}, + [1823] = {.lex_state = 371, .external_lex_state = 8}, + [1824] = {.lex_state = 371, .external_lex_state = 8}, + [1825] = {.lex_state = 410}, + [1826] = {.lex_state = 437}, [1827] = {.lex_state = 410}, - [1828] = {.lex_state = 410}, + [1828] = {.lex_state = 439, .external_lex_state = 2}, [1829] = {.lex_state = 302}, - [1830] = {.lex_state = 402}, - [1831] = {.lex_state = 402}, - [1832] = {.lex_state = 681}, - [1833] = {.lex_state = 681}, - [1834] = {.lex_state = 681}, - [1835] = {.lex_state = 750}, - [1836] = {.lex_state = 750}, - [1837] = {.lex_state = 302}, - [1838] = {.lex_state = 423}, - [1839] = {.lex_state = 753}, - [1840] = {.lex_state = 398}, - [1841] = {.lex_state = 402}, - [1842] = {.lex_state = 407}, - [1843] = {.lex_state = 410}, - [1844] = {.lex_state = 410}, - [1845] = {.lex_state = 302}, + [1830] = {.lex_state = 457, .external_lex_state = 3}, + [1831] = {.lex_state = 461}, + [1832] = {.lex_state = 831, .external_lex_state = 7}, + [1833] = {.lex_state = 833, .external_lex_state = 7}, + [1834] = {.lex_state = 402}, + [1835] = {.lex_state = 790, .external_lex_state = 8}, + [1836] = {.lex_state = 790, .external_lex_state = 8}, + [1837] = {.lex_state = 790, .external_lex_state = 8}, + [1838] = {.lex_state = 790, .external_lex_state = 8}, + [1839] = {.lex_state = 790, .external_lex_state = 8}, + [1840] = {.lex_state = 410}, + [1841] = {.lex_state = 410}, + [1842] = {.lex_state = 302}, + [1843] = {.lex_state = 302}, + [1844] = {.lex_state = 835, .external_lex_state = 8}, + [1845] = {.lex_state = 736, .external_lex_state = 8}, [1846] = {.lex_state = 402}, - [1847] = {.lex_state = 402}, - [1848] = {.lex_state = 609}, - [1849] = {.lex_state = 609}, - [1850] = {.lex_state = 609}, - [1851] = {.lex_state = 753}, - [1852] = {.lex_state = 753}, - [1853] = {.lex_state = 302}, - [1854] = {.lex_state = 423}, - [1855] = {.lex_state = 609}, - [1856] = {.lex_state = 756}, - [1857] = {.lex_state = 398}, - [1858] = {.lex_state = 398}, - [1859] = {.lex_state = 402}, - [1860] = {.lex_state = 407}, - [1861] = {.lex_state = 410}, + [1847] = {.lex_state = 457, .external_lex_state = 3}, + [1848] = {.lex_state = 539}, + [1849] = {.lex_state = 591, .external_lex_state = 8}, + [1850] = {.lex_state = 837, .external_lex_state = 8}, + [1851] = {.lex_state = 302}, + [1852] = {.lex_state = 302}, + [1853] = {.lex_state = 591, .external_lex_state = 8}, + [1854] = {.lex_state = 302}, + [1855] = {.lex_state = 732, .external_lex_state = 8}, + [1856] = {.lex_state = 732, .external_lex_state = 8}, + [1857] = {.lex_state = 302}, + [1858] = {.lex_state = 642}, + [1859] = {.lex_state = 642}, + [1860] = {.lex_state = 423}, + [1861] = {.lex_state = 423}, [1862] = {.lex_state = 410}, - [1863] = {.lex_state = 302}, - [1864] = {.lex_state = 402}, + [1863] = {.lex_state = 437}, + [1864] = {.lex_state = 410}, [1865] = {.lex_state = 402}, - [1866] = {.lex_state = 684}, - [1867] = {.lex_state = 684}, - [1868] = {.lex_state = 684}, - [1869] = {.lex_state = 684}, - [1870] = {.lex_state = 410}, - [1871] = {.lex_state = 756}, - [1872] = {.lex_state = 756}, - [1873] = {.lex_state = 402}, - [1874] = {.lex_state = 302}, - [1875] = {.lex_state = 431}, - [1876] = {.lex_state = 612}, - [1877] = {.lex_state = 612}, - [1878] = {.lex_state = 410}, - [1879] = {.lex_state = 612}, - [1880] = {.lex_state = 615}, - [1881] = {.lex_state = 615}, - [1882] = {.lex_state = 618}, - [1883] = {.lex_state = 618}, - [1884] = {.lex_state = 302}, - [1885] = {.lex_state = 302}, - [1886] = {.lex_state = 457}, - [1887] = {.lex_state = 687}, - [1888] = {.lex_state = 410}, - [1889] = {.lex_state = 410}, - [1890] = {.lex_state = 437}, - [1891] = {.lex_state = 687}, - [1892] = {.lex_state = 398}, - [1893] = {.lex_state = 402}, - [1894] = {.lex_state = 407}, + [1866] = {.lex_state = 839}, + [1867] = {.lex_state = 398}, + [1868] = {.lex_state = 402}, + [1869] = {.lex_state = 407}, + [1870] = {.lex_state = 402}, + [1871] = {.lex_state = 402}, + [1872] = {.lex_state = 839}, + [1873] = {.lex_state = 839}, + [1874] = {.lex_state = 423}, + [1875] = {.lex_state = 842, .external_lex_state = 2}, + [1876] = {.lex_state = 398}, + [1877] = {.lex_state = 398}, + [1878] = {.lex_state = 402}, + [1879] = {.lex_state = 407}, + [1880] = {.lex_state = 402}, + [1881] = {.lex_state = 402}, + [1882] = {.lex_state = 557}, + [1883] = {.lex_state = 557}, + [1884] = {.lex_state = 410, .external_lex_state = 2}, + [1885] = {.lex_state = 842, .external_lex_state = 2}, + [1886] = {.lex_state = 842, .external_lex_state = 2}, + [1887] = {.lex_state = 402}, + [1888] = {.lex_state = 431, .external_lex_state = 2}, + [1889] = {.lex_state = 639, .external_lex_state = 6}, + [1890] = {.lex_state = 645}, + [1891] = {.lex_state = 645}, + [1892] = {.lex_state = 410}, + [1893] = {.lex_state = 645}, + [1894] = {.lex_state = 410, .external_lex_state = 2}, [1895] = {.lex_state = 402}, - [1896] = {.lex_state = 410}, - [1897] = {.lex_state = 410}, - [1898] = {.lex_state = 302}, - [1899] = {.lex_state = 402}, + [1896] = {.lex_state = 845}, + [1897] = {.lex_state = 398}, + [1898] = {.lex_state = 402}, + [1899] = {.lex_state = 407}, [1900] = {.lex_state = 402}, - [1901] = {.lex_state = 581}, - [1902] = {.lex_state = 532}, - [1903] = {.lex_state = 687}, - [1904] = {.lex_state = 687}, - [1905] = {.lex_state = 532}, - [1906] = {.lex_state = 532}, - [1907] = {.lex_state = 532}, - [1908] = {.lex_state = 581}, - [1909] = {.lex_state = 410}, - [1910] = {.lex_state = 410}, + [1901] = {.lex_state = 402}, + [1902] = {.lex_state = 845}, + [1903] = {.lex_state = 845}, + [1904] = {.lex_state = 423}, + [1905] = {.lex_state = 848, .external_lex_state = 2}, + [1906] = {.lex_state = 398}, + [1907] = {.lex_state = 398}, + [1908] = {.lex_state = 402}, + [1909] = {.lex_state = 407}, + [1910] = {.lex_state = 402}, [1911] = {.lex_state = 402}, - [1912] = {.lex_state = 587}, - [1913] = {.lex_state = 759}, - [1914] = {.lex_state = 398}, - [1915] = {.lex_state = 398}, - [1916] = {.lex_state = 402}, - [1917] = {.lex_state = 407}, - [1918] = {.lex_state = 402}, - [1919] = {.lex_state = 402}, - [1920] = {.lex_state = 532}, - [1921] = {.lex_state = 410}, - [1922] = {.lex_state = 759}, - [1923] = {.lex_state = 759}, - [1924] = {.lex_state = 402}, - [1925] = {.lex_state = 431}, - [1926] = {.lex_state = 302}, - [1927] = {.lex_state = 302}, - [1928] = {.lex_state = 642}, - [1929] = {.lex_state = 642}, - [1930] = {.lex_state = 402}, - [1931] = {.lex_state = 642}, - [1932] = {.lex_state = 535}, - [1933] = {.lex_state = 642}, - [1934] = {.lex_state = 642}, - [1935] = {.lex_state = 642}, - [1936] = {.lex_state = 621}, - [1937] = {.lex_state = 621}, - [1938] = {.lex_state = 302}, - [1939] = {.lex_state = 302}, - [1940] = {.lex_state = 457}, - [1941] = {.lex_state = 693}, + [1912] = {.lex_state = 572}, + [1913] = {.lex_state = 572}, + [1914] = {.lex_state = 410, .external_lex_state = 2}, + [1915] = {.lex_state = 848, .external_lex_state = 2}, + [1916] = {.lex_state = 848, .external_lex_state = 2}, + [1917] = {.lex_state = 402}, + [1918] = {.lex_state = 431, .external_lex_state = 2}, + [1919] = {.lex_state = 639, .external_lex_state = 6}, + [1920] = {.lex_state = 648}, + [1921] = {.lex_state = 648}, + [1922] = {.lex_state = 410}, + [1923] = {.lex_state = 648}, + [1924] = {.lex_state = 410}, + [1925] = {.lex_state = 410}, + [1926] = {.lex_state = 402}, + [1927] = {.lex_state = 738}, + [1928] = {.lex_state = 738}, + [1929] = {.lex_state = 410}, + [1930] = {.lex_state = 437}, + [1931] = {.lex_state = 410}, + [1932] = {.lex_state = 439, .external_lex_state = 2}, + [1933] = {.lex_state = 302}, + [1934] = {.lex_state = 457, .external_lex_state = 3}, + [1935] = {.lex_state = 461}, + [1936] = {.lex_state = 851, .external_lex_state = 2}, + [1937] = {.lex_state = 854, .external_lex_state = 2}, + [1938] = {.lex_state = 402}, + [1939] = {.lex_state = 529}, + [1940] = {.lex_state = 651}, + [1941] = {.lex_state = 410}, [1942] = {.lex_state = 410}, - [1943] = {.lex_state = 410}, - [1944] = {.lex_state = 437}, - [1945] = {.lex_state = 693}, - [1946] = {.lex_state = 398}, - [1947] = {.lex_state = 402}, - [1948] = {.lex_state = 407}, - [1949] = {.lex_state = 402}, - [1950] = {.lex_state = 410}, - [1951] = {.lex_state = 410}, - [1952] = {.lex_state = 302}, - [1953] = {.lex_state = 402}, - [1954] = {.lex_state = 402}, - [1955] = {.lex_state = 581}, - [1956] = {.lex_state = 419}, - [1957] = {.lex_state = 693}, - [1958] = {.lex_state = 693}, - [1959] = {.lex_state = 419}, - [1960] = {.lex_state = 419}, - [1961] = {.lex_state = 419}, - [1962] = {.lex_state = 581}, - [1963] = {.lex_state = 410}, - [1964] = {.lex_state = 410}, - [1965] = {.lex_state = 402}, - [1966] = {.lex_state = 587}, - [1967] = {.lex_state = 762}, - [1968] = {.lex_state = 398}, - [1969] = {.lex_state = 398}, - [1970] = {.lex_state = 402}, - [1971] = {.lex_state = 407}, - [1972] = {.lex_state = 402}, - [1973] = {.lex_state = 402}, - [1974] = {.lex_state = 419}, - [1975] = {.lex_state = 410}, - [1976] = {.lex_state = 762}, - [1977] = {.lex_state = 762}, - [1978] = {.lex_state = 402}, - [1979] = {.lex_state = 431}, - [1980] = {.lex_state = 302}, - [1981] = {.lex_state = 642}, - [1982] = {.lex_state = 402}, - [1983] = {.lex_state = 554}, - [1984] = {.lex_state = 535}, - [1985] = {.lex_state = 554}, - [1986] = {.lex_state = 554}, - [1987] = {.lex_state = 554}, - [1988] = {.lex_state = 624}, - [1989] = {.lex_state = 624}, - [1990] = {.lex_state = 302}, - [1991] = {.lex_state = 302}, - [1992] = {.lex_state = 457}, - [1993] = {.lex_state = 699}, - [1994] = {.lex_state = 410}, - [1995] = {.lex_state = 410}, - [1996] = {.lex_state = 437}, - [1997] = {.lex_state = 699}, - [1998] = {.lex_state = 398}, - [1999] = {.lex_state = 402}, - [2000] = {.lex_state = 407}, + [1943] = {.lex_state = 651}, + [1944] = {.lex_state = 651}, + [1945] = {.lex_state = 741}, + [1946] = {.lex_state = 741}, + [1947] = {.lex_state = 410}, + [1948] = {.lex_state = 437}, + [1949] = {.lex_state = 410}, + [1950] = {.lex_state = 439, .external_lex_state = 2}, + [1951] = {.lex_state = 302}, + [1952] = {.lex_state = 457, .external_lex_state = 3}, + [1953] = {.lex_state = 461}, + [1954] = {.lex_state = 857, .external_lex_state = 2}, + [1955] = {.lex_state = 860, .external_lex_state = 2}, + [1956] = {.lex_state = 402}, + [1957] = {.lex_state = 557}, + [1958] = {.lex_state = 410}, + [1959] = {.lex_state = 410}, + [1960] = {.lex_state = 557}, + [1961] = {.lex_state = 557}, + [1962] = {.lex_state = 402}, + [1963] = {.lex_state = 407}, + [1964] = {.lex_state = 402}, + [1965] = {.lex_state = 744, .external_lex_state = 2}, + [1966] = {.lex_state = 402}, + [1967] = {.lex_state = 407}, + [1968] = {.lex_state = 402}, + [1969] = {.lex_state = 744, .external_lex_state = 2}, + [1970] = {.lex_state = 410}, + [1971] = {.lex_state = 437}, + [1972] = {.lex_state = 410}, + [1973] = {.lex_state = 439, .external_lex_state = 2}, + [1974] = {.lex_state = 302}, + [1975] = {.lex_state = 457, .external_lex_state = 3}, + [1976] = {.lex_state = 461}, + [1977] = {.lex_state = 863, .external_lex_state = 2}, + [1978] = {.lex_state = 866, .external_lex_state = 2}, + [1979] = {.lex_state = 402}, + [1980] = {.lex_state = 557}, + [1981] = {.lex_state = 654}, + [1982] = {.lex_state = 410}, + [1983] = {.lex_state = 410}, + [1984] = {.lex_state = 402}, + [1985] = {.lex_state = 654}, + [1986] = {.lex_state = 869}, + [1987] = {.lex_state = 398}, + [1988] = {.lex_state = 402}, + [1989] = {.lex_state = 407}, + [1990] = {.lex_state = 402}, + [1991] = {.lex_state = 402}, + [1992] = {.lex_state = 654}, + [1993] = {.lex_state = 869}, + [1994] = {.lex_state = 869}, + [1995] = {.lex_state = 423}, + [1996] = {.lex_state = 654}, + [1997] = {.lex_state = 560}, + [1998] = {.lex_state = 560}, + [1999] = {.lex_state = 457, .external_lex_state = 6}, + [2000] = {.lex_state = 457, .external_lex_state = 3}, [2001] = {.lex_state = 402}, - [2002] = {.lex_state = 410}, - [2003] = {.lex_state = 410}, - [2004] = {.lex_state = 302}, - [2005] = {.lex_state = 402}, - [2006] = {.lex_state = 402}, - [2007] = {.lex_state = 581}, - [2008] = {.lex_state = 627}, - [2009] = {.lex_state = 699}, - [2010] = {.lex_state = 699}, - [2011] = {.lex_state = 627}, - [2012] = {.lex_state = 627}, - [2013] = {.lex_state = 627}, - [2014] = {.lex_state = 581}, - [2015] = {.lex_state = 410}, + [2002] = {.lex_state = 398}, + [2003] = {.lex_state = 423}, + [2004] = {.lex_state = 398}, + [2005] = {.lex_state = 398}, + [2006] = {.lex_state = 557}, + [2007] = {.lex_state = 410, .external_lex_state = 2}, + [2008] = {.lex_state = 402}, + [2009] = {.lex_state = 431, .external_lex_state = 2}, + [2010] = {.lex_state = 431, .external_lex_state = 2}, + [2011] = {.lex_state = 431, .external_lex_state = 2}, + [2012] = {.lex_state = 437, .external_lex_state = 2}, + [2013] = {.lex_state = 402}, + [2014] = {.lex_state = 402}, + [2015] = {.lex_state = 402}, [2016] = {.lex_state = 410}, - [2017] = {.lex_state = 402}, - [2018] = {.lex_state = 587}, - [2019] = {.lex_state = 627}, + [2017] = {.lex_state = 437}, + [2018] = {.lex_state = 437}, + [2019] = {.lex_state = 437}, [2020] = {.lex_state = 410}, - [2021] = {.lex_state = 402}, - [2022] = {.lex_state = 402}, - [2023] = {.lex_state = 645}, - [2024] = {.lex_state = 535}, - [2025] = {.lex_state = 645}, - [2026] = {.lex_state = 645}, - [2027] = {.lex_state = 645}, - [2028] = {.lex_state = 545}, - [2029] = {.lex_state = 705}, - [2030] = {.lex_state = 705}, + [2021] = {.lex_state = 410}, + [2022] = {.lex_state = 437}, + [2023] = {.lex_state = 410}, + [2024] = {.lex_state = 410}, + [2025] = {.lex_state = 660, .external_lex_state = 2}, + [2026] = {.lex_state = 402}, + [2027] = {.lex_state = 569}, + [2028] = {.lex_state = 402}, + [2029] = {.lex_state = 457, .external_lex_state = 6}, + [2030] = {.lex_state = 402}, [2031] = {.lex_state = 410}, - [2032] = {.lex_state = 437}, - [2033] = {.lex_state = 410}, - [2034] = {.lex_state = 410}, - [2035] = {.lex_state = 398}, - [2036] = {.lex_state = 302}, - [2037] = {.lex_state = 423}, - [2038] = {.lex_state = 398}, - [2039] = {.lex_state = 302}, - [2040] = {.lex_state = 423}, - [2041] = {.lex_state = 398}, - [2042] = {.lex_state = 398}, - [2043] = {.lex_state = 627}, - [2044] = {.lex_state = 410}, - [2045] = {.lex_state = 402}, - [2046] = {.lex_state = 302}, - [2047] = {.lex_state = 431}, - [2048] = {.lex_state = 302}, - [2049] = {.lex_state = 302}, - [2050] = {.lex_state = 302}, - [2051] = {.lex_state = 630}, - [2052] = {.lex_state = 630}, - [2053] = {.lex_state = 423}, - [2054] = {.lex_state = 423}, - [2055] = {.lex_state = 410}, - [2056] = {.lex_state = 437}, + [2032] = {.lex_state = 402}, + [2033] = {.lex_state = 407}, + [2034] = {.lex_state = 402}, + [2035] = {.lex_state = 747, .external_lex_state = 2}, + [2036] = {.lex_state = 402}, + [2037] = {.lex_state = 407}, + [2038] = {.lex_state = 402}, + [2039] = {.lex_state = 747, .external_lex_state = 2}, + [2040] = {.lex_state = 410}, + [2041] = {.lex_state = 437}, + [2042] = {.lex_state = 410}, + [2043] = {.lex_state = 410}, + [2044] = {.lex_state = 402}, + [2045] = {.lex_state = 569}, + [2046] = {.lex_state = 569}, + [2047] = {.lex_state = 569}, + [2048] = {.lex_state = 569}, + [2049] = {.lex_state = 569}, + [2050] = {.lex_state = 639, .external_lex_state = 6}, + [2051] = {.lex_state = 569}, + [2052] = {.lex_state = 569}, + [2053] = {.lex_state = 410}, + [2054] = {.lex_state = 569}, + [2055] = {.lex_state = 750}, + [2056] = {.lex_state = 750}, [2057] = {.lex_state = 410}, - [2058] = {.lex_state = 708}, - [2059] = {.lex_state = 708}, - [2060] = {.lex_state = 410}, - [2061] = {.lex_state = 437}, - [2062] = {.lex_state = 410}, - [2063] = {.lex_state = 410}, - [2064] = {.lex_state = 402}, - [2065] = {.lex_state = 410}, - [2066] = {.lex_state = 410}, - [2067] = {.lex_state = 402}, - [2068] = {.lex_state = 554}, - [2069] = {.lex_state = 633}, - [2070] = {.lex_state = 410}, - [2071] = {.lex_state = 410}, - [2072] = {.lex_state = 402}, - [2073] = {.lex_state = 581}, - [2074] = {.lex_state = 439}, - [2075] = {.lex_state = 410}, - [2076] = {.lex_state = 402}, - [2077] = {.lex_state = 765}, - [2078] = {.lex_state = 398}, - [2079] = {.lex_state = 402}, - [2080] = {.lex_state = 407}, - [2081] = {.lex_state = 402}, - [2082] = {.lex_state = 402}, - [2083] = {.lex_state = 765}, - [2084] = {.lex_state = 765}, - [2085] = {.lex_state = 423}, - [2086] = {.lex_state = 768}, - [2087] = {.lex_state = 398}, - [2088] = {.lex_state = 398}, - [2089] = {.lex_state = 402}, - [2090] = {.lex_state = 407}, - [2091] = {.lex_state = 402}, - [2092] = {.lex_state = 402}, - [2093] = {.lex_state = 554}, - [2094] = {.lex_state = 554}, - [2095] = {.lex_state = 410}, - [2096] = {.lex_state = 768}, - [2097] = {.lex_state = 768}, + [2058] = {.lex_state = 437}, + [2059] = {.lex_state = 410}, + [2060] = {.lex_state = 439, .external_lex_state = 2}, + [2061] = {.lex_state = 302}, + [2062] = {.lex_state = 457, .external_lex_state = 3}, + [2063] = {.lex_state = 461}, + [2064] = {.lex_state = 872, .external_lex_state = 2}, + [2065] = {.lex_state = 875, .external_lex_state = 2}, + [2066] = {.lex_state = 402}, + [2067] = {.lex_state = 569}, + [2068] = {.lex_state = 663}, + [2069] = {.lex_state = 663}, + [2070] = {.lex_state = 663}, + [2071] = {.lex_state = 663}, + [2072] = {.lex_state = 410}, + [2073] = {.lex_state = 410}, + [2074] = {.lex_state = 663}, + [2075] = {.lex_state = 663}, + [2076] = {.lex_state = 753}, + [2077] = {.lex_state = 753}, + [2078] = {.lex_state = 410}, + [2079] = {.lex_state = 437}, + [2080] = {.lex_state = 410}, + [2081] = {.lex_state = 439, .external_lex_state = 2}, + [2082] = {.lex_state = 302}, + [2083] = {.lex_state = 457, .external_lex_state = 3}, + [2084] = {.lex_state = 461}, + [2085] = {.lex_state = 878, .external_lex_state = 2}, + [2086] = {.lex_state = 881, .external_lex_state = 2}, + [2087] = {.lex_state = 402}, + [2088] = {.lex_state = 572}, + [2089] = {.lex_state = 572}, + [2090] = {.lex_state = 572}, + [2091] = {.lex_state = 572}, + [2092] = {.lex_state = 410}, + [2093] = {.lex_state = 410}, + [2094] = {.lex_state = 572}, + [2095] = {.lex_state = 572}, + [2096] = {.lex_state = 402}, + [2097] = {.lex_state = 407}, [2098] = {.lex_state = 402}, - [2099] = {.lex_state = 431}, - [2100] = {.lex_state = 633}, - [2101] = {.lex_state = 633}, - [2102] = {.lex_state = 410}, - [2103] = {.lex_state = 633}, + [2099] = {.lex_state = 756, .external_lex_state = 2}, + [2100] = {.lex_state = 402}, + [2101] = {.lex_state = 407}, + [2102] = {.lex_state = 402}, + [2103] = {.lex_state = 756, .external_lex_state = 2}, [2104] = {.lex_state = 410}, - [2105] = {.lex_state = 711}, - [2106] = {.lex_state = 711}, - [2107] = {.lex_state = 410}, - [2108] = {.lex_state = 437}, - [2109] = {.lex_state = 398}, - [2110] = {.lex_state = 398}, - [2111] = {.lex_state = 437}, - [2112] = {.lex_state = 410}, + [2105] = {.lex_state = 437}, + [2106] = {.lex_state = 410}, + [2107] = {.lex_state = 439, .external_lex_state = 2}, + [2108] = {.lex_state = 302}, + [2109] = {.lex_state = 457, .external_lex_state = 3}, + [2110] = {.lex_state = 461}, + [2111] = {.lex_state = 884, .external_lex_state = 2}, + [2112] = {.lex_state = 887, .external_lex_state = 2}, [2113] = {.lex_state = 402}, - [2114] = {.lex_state = 302}, - [2115] = {.lex_state = 431}, - [2116] = {.lex_state = 437}, - [2117] = {.lex_state = 437}, - [2118] = {.lex_state = 402}, - [2119] = {.lex_state = 569}, - [2120] = {.lex_state = 636}, - [2121] = {.lex_state = 410}, - [2122] = {.lex_state = 410}, - [2123] = {.lex_state = 402}, - [2124] = {.lex_state = 581}, - [2125] = {.lex_state = 439}, - [2126] = {.lex_state = 437}, + [2114] = {.lex_state = 572}, + [2115] = {.lex_state = 666}, + [2116] = {.lex_state = 666}, + [2117] = {.lex_state = 666}, + [2118] = {.lex_state = 410}, + [2119] = {.lex_state = 410}, + [2120] = {.lex_state = 402}, + [2121] = {.lex_state = 666}, + [2122] = {.lex_state = 890}, + [2123] = {.lex_state = 398}, + [2124] = {.lex_state = 402}, + [2125] = {.lex_state = 407}, + [2126] = {.lex_state = 402}, [2127] = {.lex_state = 402}, - [2128] = {.lex_state = 771}, - [2129] = {.lex_state = 398}, - [2130] = {.lex_state = 402}, - [2131] = {.lex_state = 407}, - [2132] = {.lex_state = 402}, - [2133] = {.lex_state = 402}, - [2134] = {.lex_state = 771}, - [2135] = {.lex_state = 771}, - [2136] = {.lex_state = 423}, - [2137] = {.lex_state = 774}, - [2138] = {.lex_state = 398}, - [2139] = {.lex_state = 398}, - [2140] = {.lex_state = 402}, - [2141] = {.lex_state = 407}, - [2142] = {.lex_state = 402}, - [2143] = {.lex_state = 402}, - [2144] = {.lex_state = 569}, - [2145] = {.lex_state = 569}, - [2146] = {.lex_state = 410}, - [2147] = {.lex_state = 774}, - [2148] = {.lex_state = 774}, - [2149] = {.lex_state = 402}, - [2150] = {.lex_state = 431}, - [2151] = {.lex_state = 636}, - [2152] = {.lex_state = 636}, - [2153] = {.lex_state = 410}, - [2154] = {.lex_state = 636}, - [2155] = {.lex_state = 639}, - [2156] = {.lex_state = 639}, + [2128] = {.lex_state = 666}, + [2129] = {.lex_state = 890}, + [2130] = {.lex_state = 890}, + [2131] = {.lex_state = 423}, + [2132] = {.lex_state = 666}, + [2133] = {.lex_state = 575}, + [2134] = {.lex_state = 575}, + [2135] = {.lex_state = 457, .external_lex_state = 6}, + [2136] = {.lex_state = 457, .external_lex_state = 3}, + [2137] = {.lex_state = 410}, + [2138] = {.lex_state = 437}, + [2139] = {.lex_state = 410}, + [2140] = {.lex_state = 669, .external_lex_state = 4}, + [2141] = {.lex_state = 669, .external_lex_state = 4}, + [2142] = {.lex_state = 302}, + [2143] = {.lex_state = 302}, + [2144] = {.lex_state = 461}, + [2145] = {.lex_state = 759, .external_lex_state = 4}, + [2146] = {.lex_state = 587, .external_lex_state = 5}, + [2147] = {.lex_state = 589, .external_lex_state = 5}, + [2148] = {.lex_state = 437}, + [2149] = {.lex_state = 439, .external_lex_state = 2}, + [2150] = {.lex_state = 410}, + [2151] = {.lex_state = 410}, + [2152] = {.lex_state = 402}, + [2153] = {.lex_state = 596}, + [2154] = {.lex_state = 672, .external_lex_state = 5}, + [2155] = {.lex_state = 672, .external_lex_state = 5}, + [2156] = {.lex_state = 410, .external_lex_state = 2}, [2157] = {.lex_state = 402}, [2158] = {.lex_state = 402}, - [2159] = {.lex_state = 402}, - [2160] = {.lex_state = 557}, - [2161] = {.lex_state = 402}, - [2162] = {.lex_state = 410}, - [2163] = {.lex_state = 410}, - [2164] = {.lex_state = 398}, - [2165] = {.lex_state = 398}, - [2166] = {.lex_state = 525}, + [2159] = {.lex_state = 457, .external_lex_state = 3}, + [2160] = {.lex_state = 539}, + [2161] = {.lex_state = 763, .external_lex_state = 5}, + [2162] = {.lex_state = 893, .external_lex_state = 5}, + [2163] = {.lex_state = 763, .external_lex_state = 5}, + [2164] = {.lex_state = 589, .external_lex_state = 5}, + [2165] = {.lex_state = 766, .external_lex_state = 5}, + [2166] = {.lex_state = 766, .external_lex_state = 5}, [2167] = {.lex_state = 410}, - [2168] = {.lex_state = 402}, - [2169] = {.lex_state = 431}, - [2170] = {.lex_state = 402}, - [2171] = {.lex_state = 581}, - [2172] = {.lex_state = 439}, - [2173] = {.lex_state = 525}, - [2174] = {.lex_state = 402}, - [2175] = {.lex_state = 525}, - [2176] = {.lex_state = 410}, - [2177] = {.lex_state = 714}, - [2178] = {.lex_state = 714}, - [2179] = {.lex_state = 410}, - [2180] = {.lex_state = 437}, + [2168] = {.lex_state = 437}, + [2169] = {.lex_state = 410}, + [2170] = {.lex_state = 410}, + [2171] = {.lex_state = 410}, + [2172] = {.lex_state = 437}, + [2173] = {.lex_state = 410}, + [2174] = {.lex_state = 410}, + [2175] = {.lex_state = 676, .external_lex_state = 4}, + [2176] = {.lex_state = 402}, + [2177] = {.lex_state = 587, .external_lex_state = 5}, + [2178] = {.lex_state = 402}, + [2179] = {.lex_state = 457, .external_lex_state = 6}, + [2180] = {.lex_state = 402}, [2181] = {.lex_state = 410}, - [2182] = {.lex_state = 439}, - [2183] = {.lex_state = 302}, - [2184] = {.lex_state = 439}, - [2185] = {.lex_state = 457}, - [2186] = {.lex_state = 777}, - [2187] = {.lex_state = 780}, + [2182] = {.lex_state = 402}, + [2183] = {.lex_state = 407}, + [2184] = {.lex_state = 402}, + [2185] = {.lex_state = 769, .external_lex_state = 4}, + [2186] = {.lex_state = 402}, + [2187] = {.lex_state = 407}, [2188] = {.lex_state = 402}, - [2189] = {.lex_state = 525}, - [2190] = {.lex_state = 642}, - [2191] = {.lex_state = 642}, + [2189] = {.lex_state = 769, .external_lex_state = 4}, + [2190] = {.lex_state = 410}, + [2191] = {.lex_state = 437}, [2192] = {.lex_state = 410}, - [2193] = {.lex_state = 410}, - [2194] = {.lex_state = 642}, - [2195] = {.lex_state = 642}, - [2196] = {.lex_state = 717}, - [2197] = {.lex_state = 717}, - [2198] = {.lex_state = 410}, - [2199] = {.lex_state = 437}, - [2200] = {.lex_state = 410}, - [2201] = {.lex_state = 439}, - [2202] = {.lex_state = 302}, - [2203] = {.lex_state = 439}, - [2204] = {.lex_state = 457}, - [2205] = {.lex_state = 783}, - [2206] = {.lex_state = 786}, - [2207] = {.lex_state = 402}, - [2208] = {.lex_state = 554}, - [2209] = {.lex_state = 554}, - [2210] = {.lex_state = 410}, - [2211] = {.lex_state = 410}, - [2212] = {.lex_state = 554}, - [2213] = {.lex_state = 554}, - [2214] = {.lex_state = 402}, - [2215] = {.lex_state = 407}, - [2216] = {.lex_state = 402}, - [2217] = {.lex_state = 720}, - [2218] = {.lex_state = 402}, - [2219] = {.lex_state = 407}, - [2220] = {.lex_state = 402}, - [2221] = {.lex_state = 720}, - [2222] = {.lex_state = 410}, - [2223] = {.lex_state = 437}, - [2224] = {.lex_state = 410}, - [2225] = {.lex_state = 439}, - [2226] = {.lex_state = 302}, - [2227] = {.lex_state = 439}, - [2228] = {.lex_state = 457}, - [2229] = {.lex_state = 789}, - [2230] = {.lex_state = 792}, + [2193] = {.lex_state = 439, .external_lex_state = 2}, + [2194] = {.lex_state = 302}, + [2195] = {.lex_state = 457, .external_lex_state = 3}, + [2196] = {.lex_state = 461}, + [2197] = {.lex_state = 896, .external_lex_state = 4}, + [2198] = {.lex_state = 898, .external_lex_state = 4}, + [2199] = {.lex_state = 402}, + [2200] = {.lex_state = 684, .external_lex_state = 5}, + [2201] = {.lex_state = 900, .external_lex_state = 5}, + [2202] = {.lex_state = 900, .external_lex_state = 5}, + [2203] = {.lex_state = 900, .external_lex_state = 5}, + [2204] = {.lex_state = 410}, + [2205] = {.lex_state = 410}, + [2206] = {.lex_state = 402}, + [2207] = {.lex_state = 587, .external_lex_state = 5}, + [2208] = {.lex_state = 903, .external_lex_state = 5}, + [2209] = {.lex_state = 398}, + [2210] = {.lex_state = 402}, + [2211] = {.lex_state = 407}, + [2212] = {.lex_state = 402}, + [2213] = {.lex_state = 402}, + [2214] = {.lex_state = 772, .external_lex_state = 5}, + [2215] = {.lex_state = 903, .external_lex_state = 5}, + [2216] = {.lex_state = 903, .external_lex_state = 5}, + [2217] = {.lex_state = 423}, + [2218] = {.lex_state = 772, .external_lex_state = 5}, + [2219] = {.lex_state = 678, .external_lex_state = 5}, + [2220] = {.lex_state = 678, .external_lex_state = 5}, + [2221] = {.lex_state = 302}, + [2222] = {.lex_state = 302}, + [2223] = {.lex_state = 461}, + [2224] = {.lex_state = 774, .external_lex_state = 4}, + [2225] = {.lex_state = 587, .external_lex_state = 5}, + [2226] = {.lex_state = 589, .external_lex_state = 5}, + [2227] = {.lex_state = 437}, + [2228] = {.lex_state = 439, .external_lex_state = 2}, + [2229] = {.lex_state = 410}, + [2230] = {.lex_state = 410}, [2231] = {.lex_state = 402}, - [2232] = {.lex_state = 554}, - [2233] = {.lex_state = 645}, - [2234] = {.lex_state = 410}, - [2235] = {.lex_state = 410}, + [2232] = {.lex_state = 596}, + [2233] = {.lex_state = 906, .external_lex_state = 4}, + [2234] = {.lex_state = 398}, + [2235] = {.lex_state = 398}, [2236] = {.lex_state = 402}, - [2237] = {.lex_state = 645}, - [2238] = {.lex_state = 795}, - [2239] = {.lex_state = 398}, - [2240] = {.lex_state = 402}, - [2241] = {.lex_state = 407}, - [2242] = {.lex_state = 402}, - [2243] = {.lex_state = 402}, - [2244] = {.lex_state = 645}, - [2245] = {.lex_state = 795}, - [2246] = {.lex_state = 795}, - [2247] = {.lex_state = 423}, - [2248] = {.lex_state = 645}, - [2249] = {.lex_state = 302}, - [2250] = {.lex_state = 557}, - [2251] = {.lex_state = 557}, - [2252] = {.lex_state = 398}, - [2253] = {.lex_state = 398}, - [2254] = {.lex_state = 410}, - [2255] = {.lex_state = 410}, - [2256] = {.lex_state = 402}, - [2257] = {.lex_state = 302}, - [2258] = {.lex_state = 431}, - [2259] = {.lex_state = 410}, - [2260] = {.lex_state = 410}, - [2261] = {.lex_state = 402}, - [2262] = {.lex_state = 554}, - [2263] = {.lex_state = 633}, + [2237] = {.lex_state = 407}, + [2238] = {.lex_state = 402}, + [2239] = {.lex_state = 402}, + [2240] = {.lex_state = 681, .external_lex_state = 5}, + [2241] = {.lex_state = 681, .external_lex_state = 5}, + [2242] = {.lex_state = 410, .external_lex_state = 2}, + [2243] = {.lex_state = 906, .external_lex_state = 4}, + [2244] = {.lex_state = 906, .external_lex_state = 4}, + [2245] = {.lex_state = 402}, + [2246] = {.lex_state = 431, .external_lex_state = 2}, + [2247] = {.lex_state = 302}, + [2248] = {.lex_state = 302}, + [2249] = {.lex_state = 681, .external_lex_state = 5}, + [2250] = {.lex_state = 681, .external_lex_state = 5}, + [2251] = {.lex_state = 402}, + [2252] = {.lex_state = 457, .external_lex_state = 3}, + [2253] = {.lex_state = 539}, + [2254] = {.lex_state = 681, .external_lex_state = 5}, + [2255] = {.lex_state = 681, .external_lex_state = 5}, + [2256] = {.lex_state = 681, .external_lex_state = 5}, + [2257] = {.lex_state = 909, .external_lex_state = 5}, + [2258] = {.lex_state = 398}, + [2259] = {.lex_state = 402}, + [2260] = {.lex_state = 407}, + [2261] = {.lex_state = 410}, + [2262] = {.lex_state = 410}, + [2263] = {.lex_state = 302}, [2264] = {.lex_state = 402}, - [2265] = {.lex_state = 581}, - [2266] = {.lex_state = 439}, - [2267] = {.lex_state = 410}, - [2268] = {.lex_state = 402}, - [2269] = {.lex_state = 398}, - [2270] = {.lex_state = 423}, - [2271] = {.lex_state = 398}, - [2272] = {.lex_state = 398}, - [2273] = {.lex_state = 554}, - [2274] = {.lex_state = 410}, + [2265] = {.lex_state = 402}, + [2266] = {.lex_state = 780, .external_lex_state = 5}, + [2267] = {.lex_state = 780, .external_lex_state = 5}, + [2268] = {.lex_state = 780, .external_lex_state = 5}, + [2269] = {.lex_state = 909, .external_lex_state = 5}, + [2270] = {.lex_state = 909, .external_lex_state = 5}, + [2271] = {.lex_state = 302}, + [2272] = {.lex_state = 423}, + [2273] = {.lex_state = 912, .external_lex_state = 5}, + [2274] = {.lex_state = 398}, [2275] = {.lex_state = 402}, - [2276] = {.lex_state = 431}, - [2277] = {.lex_state = 633}, + [2276] = {.lex_state = 407}, + [2277] = {.lex_state = 410}, [2278] = {.lex_state = 410}, - [2279] = {.lex_state = 431}, - [2280] = {.lex_state = 431}, - [2281] = {.lex_state = 437}, - [2282] = {.lex_state = 402}, - [2283] = {.lex_state = 402}, - [2284] = {.lex_state = 402}, - [2285] = {.lex_state = 410}, - [2286] = {.lex_state = 437}, - [2287] = {.lex_state = 648}, - [2288] = {.lex_state = 648}, - [2289] = {.lex_state = 402}, - [2290] = {.lex_state = 398}, - [2291] = {.lex_state = 423}, - [2292] = {.lex_state = 402}, - [2293] = {.lex_state = 651}, - [2294] = {.lex_state = 654}, + [2279] = {.lex_state = 302}, + [2280] = {.lex_state = 402}, + [2281] = {.lex_state = 402}, + [2282] = {.lex_state = 684, .external_lex_state = 5}, + [2283] = {.lex_state = 684, .external_lex_state = 5}, + [2284] = {.lex_state = 684, .external_lex_state = 5}, + [2285] = {.lex_state = 912, .external_lex_state = 5}, + [2286] = {.lex_state = 912, .external_lex_state = 5}, + [2287] = {.lex_state = 302}, + [2288] = {.lex_state = 423}, + [2289] = {.lex_state = 684, .external_lex_state = 5}, + [2290] = {.lex_state = 915, .external_lex_state = 4}, + [2291] = {.lex_state = 398}, + [2292] = {.lex_state = 398}, + [2293] = {.lex_state = 402}, + [2294] = {.lex_state = 407}, [2295] = {.lex_state = 402}, - [2296] = {.lex_state = 566}, - [2297] = {.lex_state = 566}, - [2298] = {.lex_state = 566}, - [2299] = {.lex_state = 302}, - [2300] = {.lex_state = 302}, - [2301] = {.lex_state = 657}, + [2296] = {.lex_state = 402}, + [2297] = {.lex_state = 783, .external_lex_state = 5}, + [2298] = {.lex_state = 684, .external_lex_state = 5}, + [2299] = {.lex_state = 410, .external_lex_state = 2}, + [2300] = {.lex_state = 915, .external_lex_state = 4}, + [2301] = {.lex_state = 915, .external_lex_state = 4}, [2302] = {.lex_state = 402}, - [2303] = {.lex_state = 572}, - [2304] = {.lex_state = 437}, - [2305] = {.lex_state = 402}, - [2306] = {.lex_state = 437}, - [2307] = {.lex_state = 437}, - [2308] = {.lex_state = 410}, - [2309] = {.lex_state = 410}, - [2310] = {.lex_state = 437}, - [2311] = {.lex_state = 410}, - [2312] = {.lex_state = 410}, - [2313] = {.lex_state = 654}, - [2314] = {.lex_state = 402}, - [2315] = {.lex_state = 566}, - [2316] = {.lex_state = 402}, - [2317] = {.lex_state = 651}, - [2318] = {.lex_state = 651}, + [2303] = {.lex_state = 431, .external_lex_state = 2}, + [2304] = {.lex_state = 639, .external_lex_state = 6}, + [2305] = {.lex_state = 687, .external_lex_state = 5}, + [2306] = {.lex_state = 687, .external_lex_state = 5}, + [2307] = {.lex_state = 410}, + [2308] = {.lex_state = 687, .external_lex_state = 5}, + [2309] = {.lex_state = 584, .external_lex_state = 4}, + [2310] = {.lex_state = 584, .external_lex_state = 4}, + [2311] = {.lex_state = 302}, + [2312] = {.lex_state = 302}, + [2313] = {.lex_state = 461}, + [2314] = {.lex_state = 918, .external_lex_state = 4}, + [2315] = {.lex_state = 587, .external_lex_state = 5}, + [2316] = {.lex_state = 589, .external_lex_state = 5}, + [2317] = {.lex_state = 437}, + [2318] = {.lex_state = 439, .external_lex_state = 2}, [2319] = {.lex_state = 410}, - [2320] = {.lex_state = 437}, - [2321] = {.lex_state = 398}, - [2322] = {.lex_state = 398}, - [2323] = {.lex_state = 566}, - [2324] = {.lex_state = 566}, + [2320] = {.lex_state = 410}, + [2321] = {.lex_state = 402}, + [2322] = {.lex_state = 596}, + [2323] = {.lex_state = 398}, + [2324] = {.lex_state = 398}, [2325] = {.lex_state = 410}, - [2326] = {.lex_state = 402}, - [2327] = {.lex_state = 431}, - [2328] = {.lex_state = 410}, - [2329] = {.lex_state = 410}, - [2330] = {.lex_state = 402}, - [2331] = {.lex_state = 566}, - [2332] = {.lex_state = 581}, - [2333] = {.lex_state = 439}, - [2334] = {.lex_state = 566}, - [2335] = {.lex_state = 402}, - [2336] = {.lex_state = 410}, - [2337] = {.lex_state = 402}, - [2338] = {.lex_state = 407}, - [2339] = {.lex_state = 402}, - [2340] = {.lex_state = 723}, + [2326] = {.lex_state = 410}, + [2327] = {.lex_state = 302}, + [2328] = {.lex_state = 589, .external_lex_state = 5}, + [2329] = {.lex_state = 808, .external_lex_state = 5}, + [2330] = {.lex_state = 410, .external_lex_state = 2}, + [2331] = {.lex_state = 402}, + [2332] = {.lex_state = 302}, + [2333] = {.lex_state = 431, .external_lex_state = 2}, + [2334] = {.lex_state = 920, .external_lex_state = 4}, + [2335] = {.lex_state = 923, .external_lex_state = 4}, + [2336] = {.lex_state = 402}, + [2337] = {.lex_state = 790, .external_lex_state = 5}, + [2338] = {.lex_state = 302}, + [2339] = {.lex_state = 302}, + [2340] = {.lex_state = 926, .external_lex_state = 5}, [2341] = {.lex_state = 402}, - [2342] = {.lex_state = 407}, - [2343] = {.lex_state = 402}, - [2344] = {.lex_state = 723}, - [2345] = {.lex_state = 410}, - [2346] = {.lex_state = 437}, - [2347] = {.lex_state = 410}, - [2348] = {.lex_state = 410}, - [2349] = {.lex_state = 402}, - [2350] = {.lex_state = 566}, - [2351] = {.lex_state = 566}, - [2352] = {.lex_state = 566}, - [2353] = {.lex_state = 566}, - [2354] = {.lex_state = 566}, - [2355] = {.lex_state = 566}, - [2356] = {.lex_state = 566}, + [2342] = {.lex_state = 457, .external_lex_state = 3}, + [2343] = {.lex_state = 539}, + [2344] = {.lex_state = 796, .external_lex_state = 5}, + [2345] = {.lex_state = 929, .external_lex_state = 5}, + [2346] = {.lex_state = 799, .external_lex_state = 5}, + [2347] = {.lex_state = 589, .external_lex_state = 5}, + [2348] = {.lex_state = 521, .external_lex_state = 2}, + [2349] = {.lex_state = 918, .external_lex_state = 4}, + [2350] = {.lex_state = 932, .external_lex_state = 4}, + [2351] = {.lex_state = 402}, + [2352] = {.lex_state = 684, .external_lex_state = 5}, + [2353] = {.lex_state = 796, .external_lex_state = 5}, + [2354] = {.lex_state = 584, .external_lex_state = 2}, + [2355] = {.lex_state = 584, .external_lex_state = 2}, + [2356] = {.lex_state = 584, .external_lex_state = 2}, [2357] = {.lex_state = 410}, - [2358] = {.lex_state = 566}, - [2359] = {.lex_state = 726}, - [2360] = {.lex_state = 726}, - [2361] = {.lex_state = 410}, - [2362] = {.lex_state = 437}, - [2363] = {.lex_state = 410}, - [2364] = {.lex_state = 439}, - [2365] = {.lex_state = 302}, - [2366] = {.lex_state = 439}, - [2367] = {.lex_state = 457}, - [2368] = {.lex_state = 798}, - [2369] = {.lex_state = 801}, - [2370] = {.lex_state = 402}, - [2371] = {.lex_state = 566}, - [2372] = {.lex_state = 657}, - [2373] = {.lex_state = 657}, - [2374] = {.lex_state = 657}, - [2375] = {.lex_state = 657}, + [2358] = {.lex_state = 437}, + [2359] = {.lex_state = 410}, + [2360] = {.lex_state = 410}, + [2361] = {.lex_state = 402}, + [2362] = {.lex_state = 802}, + [2363] = {.lex_state = 572}, + [2364] = {.lex_state = 410, .external_lex_state = 2}, + [2365] = {.lex_state = 402}, + [2366] = {.lex_state = 639, .external_lex_state = 6}, + [2367] = {.lex_state = 690}, + [2368] = {.lex_state = 690}, + [2369] = {.lex_state = 410}, + [2370] = {.lex_state = 690}, + [2371] = {.lex_state = 302}, + [2372] = {.lex_state = 302}, + [2373] = {.lex_state = 410}, + [2374] = {.lex_state = 437}, + [2375] = {.lex_state = 410}, [2376] = {.lex_state = 410}, - [2377] = {.lex_state = 410}, - [2378] = {.lex_state = 657}, - [2379] = {.lex_state = 657}, - [2380] = {.lex_state = 729}, - [2381] = {.lex_state = 729}, - [2382] = {.lex_state = 410}, - [2383] = {.lex_state = 437}, - [2384] = {.lex_state = 410}, - [2385] = {.lex_state = 439}, - [2386] = {.lex_state = 302}, - [2387] = {.lex_state = 439}, - [2388] = {.lex_state = 457}, - [2389] = {.lex_state = 804}, - [2390] = {.lex_state = 807}, - [2391] = {.lex_state = 402}, - [2392] = {.lex_state = 569}, - [2393] = {.lex_state = 569}, - [2394] = {.lex_state = 569}, - [2395] = {.lex_state = 569}, - [2396] = {.lex_state = 410}, - [2397] = {.lex_state = 410}, - [2398] = {.lex_state = 569}, - [2399] = {.lex_state = 569}, - [2400] = {.lex_state = 402}, - [2401] = {.lex_state = 407}, - [2402] = {.lex_state = 402}, - [2403] = {.lex_state = 732}, - [2404] = {.lex_state = 402}, - [2405] = {.lex_state = 407}, - [2406] = {.lex_state = 402}, - [2407] = {.lex_state = 732}, - [2408] = {.lex_state = 410}, - [2409] = {.lex_state = 437}, - [2410] = {.lex_state = 410}, - [2411] = {.lex_state = 439}, - [2412] = {.lex_state = 302}, - [2413] = {.lex_state = 439}, - [2414] = {.lex_state = 457}, - [2415] = {.lex_state = 810}, - [2416] = {.lex_state = 813}, - [2417] = {.lex_state = 402}, - [2418] = {.lex_state = 569}, - [2419] = {.lex_state = 660}, - [2420] = {.lex_state = 660}, - [2421] = {.lex_state = 660}, - [2422] = {.lex_state = 410}, - [2423] = {.lex_state = 410}, - [2424] = {.lex_state = 402}, - [2425] = {.lex_state = 660}, - [2426] = {.lex_state = 816}, - [2427] = {.lex_state = 398}, - [2428] = {.lex_state = 402}, - [2429] = {.lex_state = 407}, - [2430] = {.lex_state = 402}, - [2431] = {.lex_state = 402}, - [2432] = {.lex_state = 660}, - [2433] = {.lex_state = 816}, - [2434] = {.lex_state = 816}, - [2435] = {.lex_state = 423}, - [2436] = {.lex_state = 660}, - [2437] = {.lex_state = 302}, - [2438] = {.lex_state = 572}, - [2439] = {.lex_state = 572}, - [2440] = {.lex_state = 410}, - [2441] = {.lex_state = 437}, + [2377] = {.lex_state = 693, .external_lex_state = 7}, + [2378] = {.lex_state = 693, .external_lex_state = 7}, + [2379] = {.lex_state = 402}, + [2380] = {.lex_state = 407}, + [2381] = {.lex_state = 402}, + [2382] = {.lex_state = 805, .external_lex_state = 7}, + [2383] = {.lex_state = 402}, + [2384] = {.lex_state = 407}, + [2385] = {.lex_state = 402}, + [2386] = {.lex_state = 805, .external_lex_state = 7}, + [2387] = {.lex_state = 410}, + [2388] = {.lex_state = 437}, + [2389] = {.lex_state = 410}, + [2390] = {.lex_state = 439, .external_lex_state = 2}, + [2391] = {.lex_state = 302}, + [2392] = {.lex_state = 457, .external_lex_state = 3}, + [2393] = {.lex_state = 461}, + [2394] = {.lex_state = 934, .external_lex_state = 7}, + [2395] = {.lex_state = 936, .external_lex_state = 7}, + [2396] = {.lex_state = 402}, + [2397] = {.lex_state = 793, .external_lex_state = 8}, + [2398] = {.lex_state = 938, .external_lex_state = 8}, + [2399] = {.lex_state = 938, .external_lex_state = 8}, + [2400] = {.lex_state = 938, .external_lex_state = 8}, + [2401] = {.lex_state = 410}, + [2402] = {.lex_state = 410}, + [2403] = {.lex_state = 402}, + [2404] = {.lex_state = 591, .external_lex_state = 8}, + [2405] = {.lex_state = 941, .external_lex_state = 8}, + [2406] = {.lex_state = 398}, + [2407] = {.lex_state = 402}, + [2408] = {.lex_state = 407}, + [2409] = {.lex_state = 402}, + [2410] = {.lex_state = 402}, + [2411] = {.lex_state = 808, .external_lex_state = 8}, + [2412] = {.lex_state = 941, .external_lex_state = 8}, + [2413] = {.lex_state = 941, .external_lex_state = 8}, + [2414] = {.lex_state = 423}, + [2415] = {.lex_state = 808, .external_lex_state = 8}, + [2416] = {.lex_state = 302}, + [2417] = {.lex_state = 302}, + [2418] = {.lex_state = 461}, + [2419] = {.lex_state = 786, .external_lex_state = 7}, + [2420] = {.lex_state = 587, .external_lex_state = 5}, + [2421] = {.lex_state = 589, .external_lex_state = 5}, + [2422] = {.lex_state = 437}, + [2423] = {.lex_state = 439, .external_lex_state = 2}, + [2424] = {.lex_state = 410}, + [2425] = {.lex_state = 410}, + [2426] = {.lex_state = 402}, + [2427] = {.lex_state = 596}, + [2428] = {.lex_state = 591, .external_lex_state = 8}, + [2429] = {.lex_state = 810, .external_lex_state = 8}, + [2430] = {.lex_state = 810, .external_lex_state = 8}, + [2431] = {.lex_state = 410}, + [2432] = {.lex_state = 437}, + [2433] = {.lex_state = 410}, + [2434] = {.lex_state = 439, .external_lex_state = 2}, + [2435] = {.lex_state = 302}, + [2436] = {.lex_state = 457, .external_lex_state = 3}, + [2437] = {.lex_state = 461}, + [2438] = {.lex_state = 920, .external_lex_state = 7}, + [2439] = {.lex_state = 923, .external_lex_state = 7}, + [2440] = {.lex_state = 402}, + [2441] = {.lex_state = 790, .external_lex_state = 8}, [2442] = {.lex_state = 410}, - [2443] = {.lex_state = 402}, - [2444] = {.lex_state = 581}, - [2445] = {.lex_state = 439}, - [2446] = {.lex_state = 410}, - [2447] = {.lex_state = 402}, - [2448] = {.lex_state = 398}, - [2449] = {.lex_state = 423}, - [2450] = {.lex_state = 402}, - [2451] = {.lex_state = 302}, - [2452] = {.lex_state = 302}, - [2453] = {.lex_state = 525}, - [2454] = {.lex_state = 402}, - [2455] = {.lex_state = 525}, - [2456] = {.lex_state = 398}, - [2457] = {.lex_state = 410}, - [2458] = {.lex_state = 410}, - [2459] = {.lex_state = 302}, - [2460] = {.lex_state = 302}, - [2461] = {.lex_state = 423}, - [2462] = {.lex_state = 398}, - [2463] = {.lex_state = 410}, - [2464] = {.lex_state = 410}, - [2465] = {.lex_state = 302}, - [2466] = {.lex_state = 302}, - [2467] = {.lex_state = 423}, + [2443] = {.lex_state = 410}, + [2444] = {.lex_state = 302}, + [2445] = {.lex_state = 302}, + [2446] = {.lex_state = 926, .external_lex_state = 8}, + [2447] = {.lex_state = 793, .external_lex_state = 8}, + [2448] = {.lex_state = 402}, + [2449] = {.lex_state = 457, .external_lex_state = 3}, + [2450] = {.lex_state = 539}, + [2451] = {.lex_state = 799, .external_lex_state = 8}, + [2452] = {.lex_state = 944, .external_lex_state = 8}, + [2453] = {.lex_state = 799, .external_lex_state = 8}, + [2454] = {.lex_state = 790, .external_lex_state = 8}, + [2455] = {.lex_state = 790, .external_lex_state = 8}, + [2456] = {.lex_state = 591, .external_lex_state = 8}, + [2457] = {.lex_state = 402}, + [2458] = {.lex_state = 591, .external_lex_state = 8}, + [2459] = {.lex_state = 591, .external_lex_state = 8}, + [2460] = {.lex_state = 410, .external_lex_state = 2}, + [2461] = {.lex_state = 410, .external_lex_state = 2}, + [2462] = {.lex_state = 402}, + [2463] = {.lex_state = 645}, + [2464] = {.lex_state = 402}, + [2465] = {.lex_state = 398}, + [2466] = {.lex_state = 423}, + [2467] = {.lex_state = 402}, [2468] = {.lex_state = 398}, [2469] = {.lex_state = 398}, - [2470] = {.lex_state = 735}, - [2471] = {.lex_state = 554}, - [2472] = {.lex_state = 410}, - [2473] = {.lex_state = 402}, - [2474] = {.lex_state = 431}, - [2475] = {.lex_state = 663}, - [2476] = {.lex_state = 663}, - [2477] = {.lex_state = 410}, - [2478] = {.lex_state = 663}, - [2479] = {.lex_state = 581}, - [2480] = {.lex_state = 581}, - [2481] = {.lex_state = 402}, - [2482] = {.lex_state = 581}, - [2483] = {.lex_state = 410}, - [2484] = {.lex_state = 581}, - [2485] = {.lex_state = 402}, - [2486] = {.lex_state = 398}, - [2487] = {.lex_state = 398}, - [2488] = {.lex_state = 410}, - [2489] = {.lex_state = 410}, - [2490] = {.lex_state = 302}, - [2491] = {.lex_state = 410}, - [2492] = {.lex_state = 410}, - [2493] = {.lex_state = 402}, - [2494] = {.lex_state = 302}, - [2495] = {.lex_state = 431}, - [2496] = {.lex_state = 596}, - [2497] = {.lex_state = 599}, - [2498] = {.lex_state = 402}, - [2499] = {.lex_state = 525}, - [2500] = {.lex_state = 525}, - [2501] = {.lex_state = 525}, - [2502] = {.lex_state = 302}, - [2503] = {.lex_state = 302}, - [2504] = {.lex_state = 642}, - [2505] = {.lex_state = 402}, - [2506] = {.lex_state = 738}, - [2507] = {.lex_state = 535}, - [2508] = {.lex_state = 738}, - [2509] = {.lex_state = 819}, - [2510] = {.lex_state = 738}, - [2511] = {.lex_state = 410}, - [2512] = {.lex_state = 517}, - [2513] = {.lex_state = 439}, - [2514] = {.lex_state = 410}, - [2515] = {.lex_state = 410}, - [2516] = {.lex_state = 402}, - [2517] = {.lex_state = 554}, - [2518] = {.lex_state = 738}, - [2519] = {.lex_state = 581}, - [2520] = {.lex_state = 741}, - [2521] = {.lex_state = 741}, - [2522] = {.lex_state = 410}, - [2523] = {.lex_state = 437}, - [2524] = {.lex_state = 437}, - [2525] = {.lex_state = 410}, - [2526] = {.lex_state = 402}, - [2527] = {.lex_state = 437}, - [2528] = {.lex_state = 437}, - [2529] = {.lex_state = 402}, - [2530] = {.lex_state = 569}, - [2531] = {.lex_state = 666}, - [2532] = {.lex_state = 410}, - [2533] = {.lex_state = 410}, + [2470] = {.lex_state = 529}, + [2471] = {.lex_state = 410, .external_lex_state = 2}, + [2472] = {.lex_state = 402}, + [2473] = {.lex_state = 431, .external_lex_state = 2}, + [2474] = {.lex_state = 302}, + [2475] = {.lex_state = 302}, + [2476] = {.lex_state = 402}, + [2477] = {.lex_state = 529}, + [2478] = {.lex_state = 398}, + [2479] = {.lex_state = 410}, + [2480] = {.lex_state = 410}, + [2481] = {.lex_state = 302}, + [2482] = {.lex_state = 302}, + [2483] = {.lex_state = 423}, + [2484] = {.lex_state = 398}, + [2485] = {.lex_state = 410}, + [2486] = {.lex_state = 410}, + [2487] = {.lex_state = 302}, + [2488] = {.lex_state = 302}, + [2489] = {.lex_state = 423}, + [2490] = {.lex_state = 398}, + [2491] = {.lex_state = 398}, + [2492] = {.lex_state = 557}, + [2493] = {.lex_state = 410, .external_lex_state = 2}, + [2494] = {.lex_state = 402}, + [2495] = {.lex_state = 431, .external_lex_state = 2}, + [2496] = {.lex_state = 402}, + [2497] = {.lex_state = 783}, + [2498] = {.lex_state = 557}, + [2499] = {.lex_state = 410, .external_lex_state = 2}, + [2500] = {.lex_state = 402}, + [2501] = {.lex_state = 639, .external_lex_state = 6}, + [2502] = {.lex_state = 687}, + [2503] = {.lex_state = 687}, + [2504] = {.lex_state = 410}, + [2505] = {.lex_state = 687}, + [2506] = {.lex_state = 608, .external_lex_state = 2}, + [2507] = {.lex_state = 402}, + [2508] = {.lex_state = 402}, + [2509] = {.lex_state = 402}, + [2510] = {.lex_state = 410}, + [2511] = {.lex_state = 437}, + [2512] = {.lex_state = 529}, + [2513] = {.lex_state = 410}, + [2514] = {.lex_state = 696, .external_lex_state = 2}, + [2515] = {.lex_state = 696, .external_lex_state = 2}, + [2516] = {.lex_state = 529}, + [2517] = {.lex_state = 529}, + [2518] = {.lex_state = 529}, + [2519] = {.lex_state = 402}, + [2520] = {.lex_state = 851, .external_lex_state = 2}, + [2521] = {.lex_state = 854, .external_lex_state = 2}, + [2522] = {.lex_state = 402}, + [2523] = {.lex_state = 529}, + [2524] = {.lex_state = 651}, + [2525] = {.lex_state = 857, .external_lex_state = 2}, + [2526] = {.lex_state = 860, .external_lex_state = 2}, + [2527] = {.lex_state = 402}, + [2528] = {.lex_state = 557}, + [2529] = {.lex_state = 863, .external_lex_state = 2}, + [2530] = {.lex_state = 866, .external_lex_state = 2}, + [2531] = {.lex_state = 402}, + [2532] = {.lex_state = 557}, + [2533] = {.lex_state = 654}, [2534] = {.lex_state = 402}, - [2535] = {.lex_state = 581}, - [2536] = {.lex_state = 439}, - [2537] = {.lex_state = 437}, - [2538] = {.lex_state = 402}, - [2539] = {.lex_state = 744}, - [2540] = {.lex_state = 569}, - [2541] = {.lex_state = 410}, + [2535] = {.lex_state = 398}, + [2536] = {.lex_state = 423}, + [2537] = {.lex_state = 410}, + [2538] = {.lex_state = 437}, + [2539] = {.lex_state = 410}, + [2540] = {.lex_state = 410}, + [2541] = {.lex_state = 702, .external_lex_state = 2}, [2542] = {.lex_state = 402}, - [2543] = {.lex_state = 666}, - [2544] = {.lex_state = 666}, - [2545] = {.lex_state = 410}, - [2546] = {.lex_state = 666}, - [2547] = {.lex_state = 302}, - [2548] = {.lex_state = 302}, - [2549] = {.lex_state = 410}, - [2550] = {.lex_state = 437}, - [2551] = {.lex_state = 410}, - [2552] = {.lex_state = 410}, - [2553] = {.lex_state = 402}, - [2554] = {.lex_state = 416}, - [2555] = {.lex_state = 398}, - [2556] = {.lex_state = 398}, - [2557] = {.lex_state = 410}, + [2543] = {.lex_state = 614}, + [2544] = {.lex_state = 402}, + [2545] = {.lex_state = 457, .external_lex_state = 6}, + [2546] = {.lex_state = 402}, + [2547] = {.lex_state = 410}, + [2548] = {.lex_state = 402}, + [2549] = {.lex_state = 407}, + [2550] = {.lex_state = 402}, + [2551] = {.lex_state = 813, .external_lex_state = 2}, + [2552] = {.lex_state = 402}, + [2553] = {.lex_state = 407}, + [2554] = {.lex_state = 402}, + [2555] = {.lex_state = 813, .external_lex_state = 2}, + [2556] = {.lex_state = 410}, + [2557] = {.lex_state = 437}, [2558] = {.lex_state = 410}, - [2559] = {.lex_state = 302}, - [2560] = {.lex_state = 410}, - [2561] = {.lex_state = 410}, - [2562] = {.lex_state = 402}, - [2563] = {.lex_state = 302}, - [2564] = {.lex_state = 431}, - [2565] = {.lex_state = 410}, - [2566] = {.lex_state = 410}, - [2567] = {.lex_state = 402}, - [2568] = {.lex_state = 554}, - [2569] = {.lex_state = 663}, - [2570] = {.lex_state = 402}, - [2571] = {.lex_state = 581}, - [2572] = {.lex_state = 439}, + [2559] = {.lex_state = 410}, + [2560] = {.lex_state = 402}, + [2561] = {.lex_state = 614}, + [2562] = {.lex_state = 614}, + [2563] = {.lex_state = 614}, + [2564] = {.lex_state = 614}, + [2565] = {.lex_state = 614}, + [2566] = {.lex_state = 639, .external_lex_state = 6}, + [2567] = {.lex_state = 614}, + [2568] = {.lex_state = 614}, + [2569] = {.lex_state = 410}, + [2570] = {.lex_state = 614}, + [2571] = {.lex_state = 816}, + [2572] = {.lex_state = 816}, [2573] = {.lex_state = 410}, - [2574] = {.lex_state = 439}, + [2574] = {.lex_state = 437}, [2575] = {.lex_state = 410}, - [2576] = {.lex_state = 410}, - [2577] = {.lex_state = 402}, - [2578] = {.lex_state = 554}, - [2579] = {.lex_state = 633}, - [2580] = {.lex_state = 402}, - [2581] = {.lex_state = 398}, - [2582] = {.lex_state = 423}, - [2583] = {.lex_state = 398}, - [2584] = {.lex_state = 402}, - [2585] = {.lex_state = 581}, - [2586] = {.lex_state = 525}, - [2587] = {.lex_state = 581}, - [2588] = {.lex_state = 402}, - [2589] = {.lex_state = 398}, - [2590] = {.lex_state = 398}, - [2591] = {.lex_state = 525}, - [2592] = {.lex_state = 410}, - [2593] = {.lex_state = 402}, - [2594] = {.lex_state = 431}, - [2595] = {.lex_state = 302}, - [2596] = {.lex_state = 302}, - [2597] = {.lex_state = 525}, - [2598] = {.lex_state = 402}, - [2599] = {.lex_state = 525}, - [2600] = {.lex_state = 535}, - [2601] = {.lex_state = 525}, - [2602] = {.lex_state = 525}, - [2603] = {.lex_state = 398}, - [2604] = {.lex_state = 410}, - [2605] = {.lex_state = 410}, - [2606] = {.lex_state = 302}, - [2607] = {.lex_state = 302}, - [2608] = {.lex_state = 423}, - [2609] = {.lex_state = 398}, - [2610] = {.lex_state = 410}, - [2611] = {.lex_state = 410}, - [2612] = {.lex_state = 302}, - [2613] = {.lex_state = 302}, - [2614] = {.lex_state = 423}, - [2615] = {.lex_state = 398}, - [2616] = {.lex_state = 398}, - [2617] = {.lex_state = 554}, - [2618] = {.lex_state = 410}, - [2619] = {.lex_state = 402}, - [2620] = {.lex_state = 431}, - [2621] = {.lex_state = 663}, + [2576] = {.lex_state = 439, .external_lex_state = 2}, + [2577] = {.lex_state = 302}, + [2578] = {.lex_state = 457, .external_lex_state = 3}, + [2579] = {.lex_state = 461}, + [2580] = {.lex_state = 947, .external_lex_state = 2}, + [2581] = {.lex_state = 950, .external_lex_state = 2}, + [2582] = {.lex_state = 402}, + [2583] = {.lex_state = 614}, + [2584] = {.lex_state = 705}, + [2585] = {.lex_state = 705}, + [2586] = {.lex_state = 705}, + [2587] = {.lex_state = 705}, + [2588] = {.lex_state = 410}, + [2589] = {.lex_state = 410}, + [2590] = {.lex_state = 705}, + [2591] = {.lex_state = 705}, + [2592] = {.lex_state = 819}, + [2593] = {.lex_state = 819}, + [2594] = {.lex_state = 410}, + [2595] = {.lex_state = 437}, + [2596] = {.lex_state = 410}, + [2597] = {.lex_state = 439, .external_lex_state = 2}, + [2598] = {.lex_state = 302}, + [2599] = {.lex_state = 457, .external_lex_state = 3}, + [2600] = {.lex_state = 461}, + [2601] = {.lex_state = 953, .external_lex_state = 2}, + [2602] = {.lex_state = 956, .external_lex_state = 2}, + [2603] = {.lex_state = 402}, + [2604] = {.lex_state = 618}, + [2605] = {.lex_state = 618}, + [2606] = {.lex_state = 618}, + [2607] = {.lex_state = 618}, + [2608] = {.lex_state = 410}, + [2609] = {.lex_state = 410}, + [2610] = {.lex_state = 618}, + [2611] = {.lex_state = 618}, + [2612] = {.lex_state = 402}, + [2613] = {.lex_state = 407}, + [2614] = {.lex_state = 402}, + [2615] = {.lex_state = 822, .external_lex_state = 2}, + [2616] = {.lex_state = 402}, + [2617] = {.lex_state = 407}, + [2618] = {.lex_state = 402}, + [2619] = {.lex_state = 822, .external_lex_state = 2}, + [2620] = {.lex_state = 410}, + [2621] = {.lex_state = 437}, [2622] = {.lex_state = 410}, - [2623] = {.lex_state = 402}, - [2624] = {.lex_state = 554}, - [2625] = {.lex_state = 410}, - [2626] = {.lex_state = 402}, - [2627] = {.lex_state = 599}, - [2628] = {.lex_state = 402}, + [2623] = {.lex_state = 439, .external_lex_state = 2}, + [2624] = {.lex_state = 302}, + [2625] = {.lex_state = 457, .external_lex_state = 3}, + [2626] = {.lex_state = 461}, + [2627] = {.lex_state = 959, .external_lex_state = 2}, + [2628] = {.lex_state = 962, .external_lex_state = 2}, [2629] = {.lex_state = 402}, - [2630] = {.lex_state = 402}, - [2631] = {.lex_state = 410}, - [2632] = {.lex_state = 437}, - [2633] = {.lex_state = 596}, - [2634] = {.lex_state = 596}, - [2635] = {.lex_state = 402}, - [2636] = {.lex_state = 525}, - [2637] = {.lex_state = 402}, - [2638] = {.lex_state = 525}, - [2639] = {.lex_state = 525}, - [2640] = {.lex_state = 410}, - [2641] = {.lex_state = 669}, - [2642] = {.lex_state = 669}, - [2643] = {.lex_state = 525}, - [2644] = {.lex_state = 525}, - [2645] = {.lex_state = 525}, - [2646] = {.lex_state = 525}, - [2647] = {.lex_state = 402}, - [2648] = {.lex_state = 398}, - [2649] = {.lex_state = 423}, - [2650] = {.lex_state = 402}, - [2651] = {.lex_state = 596}, - [2652] = {.lex_state = 599}, - [2653] = {.lex_state = 402}, - [2654] = {.lex_state = 525}, - [2655] = {.lex_state = 525}, - [2656] = {.lex_state = 525}, - [2657] = {.lex_state = 302}, - [2658] = {.lex_state = 302}, - [2659] = {.lex_state = 642}, + [2630] = {.lex_state = 618}, + [2631] = {.lex_state = 708}, + [2632] = {.lex_state = 708}, + [2633] = {.lex_state = 708}, + [2634] = {.lex_state = 410}, + [2635] = {.lex_state = 410}, + [2636] = {.lex_state = 402}, + [2637] = {.lex_state = 708}, + [2638] = {.lex_state = 965}, + [2639] = {.lex_state = 398}, + [2640] = {.lex_state = 402}, + [2641] = {.lex_state = 407}, + [2642] = {.lex_state = 402}, + [2643] = {.lex_state = 402}, + [2644] = {.lex_state = 708}, + [2645] = {.lex_state = 965}, + [2646] = {.lex_state = 965}, + [2647] = {.lex_state = 423}, + [2648] = {.lex_state = 708}, + [2649] = {.lex_state = 621}, + [2650] = {.lex_state = 621}, + [2651] = {.lex_state = 457, .external_lex_state = 6}, + [2652] = {.lex_state = 457, .external_lex_state = 3}, + [2653] = {.lex_state = 410}, + [2654] = {.lex_state = 437}, + [2655] = {.lex_state = 410}, + [2656] = {.lex_state = 410}, + [2657] = {.lex_state = 714, .external_lex_state = 2}, + [2658] = {.lex_state = 402}, + [2659] = {.lex_state = 536}, [2660] = {.lex_state = 402}, - [2661] = {.lex_state = 557}, + [2661] = {.lex_state = 457, .external_lex_state = 6}, [2662] = {.lex_state = 402}, [2663] = {.lex_state = 410}, - [2664] = {.lex_state = 398}, - [2665] = {.lex_state = 398}, - [2666] = {.lex_state = 525}, - [2667] = {.lex_state = 410}, + [2664] = {.lex_state = 402}, + [2665] = {.lex_state = 407}, + [2666] = {.lex_state = 402}, + [2667] = {.lex_state = 825, .external_lex_state = 2}, [2668] = {.lex_state = 402}, - [2669] = {.lex_state = 431}, + [2669] = {.lex_state = 407}, [2670] = {.lex_state = 402}, - [2671] = {.lex_state = 581}, - [2672] = {.lex_state = 439}, - [2673] = {.lex_state = 525}, - [2674] = {.lex_state = 402}, - [2675] = {.lex_state = 525}, - [2676] = {.lex_state = 410}, - [2677] = {.lex_state = 439}, - [2678] = {.lex_state = 777}, - [2679] = {.lex_state = 780}, - [2680] = {.lex_state = 402}, - [2681] = {.lex_state = 525}, - [2682] = {.lex_state = 642}, - [2683] = {.lex_state = 642}, - [2684] = {.lex_state = 439}, - [2685] = {.lex_state = 783}, - [2686] = {.lex_state = 786}, - [2687] = {.lex_state = 402}, - [2688] = {.lex_state = 554}, - [2689] = {.lex_state = 554}, - [2690] = {.lex_state = 439}, - [2691] = {.lex_state = 789}, - [2692] = {.lex_state = 792}, - [2693] = {.lex_state = 402}, - [2694] = {.lex_state = 554}, - [2695] = {.lex_state = 645}, - [2696] = {.lex_state = 402}, - [2697] = {.lex_state = 398}, - [2698] = {.lex_state = 423}, - [2699] = {.lex_state = 302}, - [2700] = {.lex_state = 557}, - [2701] = {.lex_state = 557}, - [2702] = {.lex_state = 672}, - [2703] = {.lex_state = 672}, - [2704] = {.lex_state = 402}, - [2705] = {.lex_state = 398}, - [2706] = {.lex_state = 423}, - [2707] = {.lex_state = 402}, - [2708] = {.lex_state = 675}, - [2709] = {.lex_state = 678}, + [2671] = {.lex_state = 825, .external_lex_state = 2}, + [2672] = {.lex_state = 410}, + [2673] = {.lex_state = 437}, + [2674] = {.lex_state = 410}, + [2675] = {.lex_state = 410}, + [2676] = {.lex_state = 402}, + [2677] = {.lex_state = 536}, + [2678] = {.lex_state = 398}, + [2679] = {.lex_state = 410}, + [2680] = {.lex_state = 410}, + [2681] = {.lex_state = 302}, + [2682] = {.lex_state = 302}, + [2683] = {.lex_state = 423}, + [2684] = {.lex_state = 651}, + [2685] = {.lex_state = 651}, + [2686] = {.lex_state = 968, .external_lex_state = 2}, + [2687] = {.lex_state = 398}, + [2688] = {.lex_state = 398}, + [2689] = {.lex_state = 402}, + [2690] = {.lex_state = 407}, + [2691] = {.lex_state = 402}, + [2692] = {.lex_state = 402}, + [2693] = {.lex_state = 651}, + [2694] = {.lex_state = 651}, + [2695] = {.lex_state = 410, .external_lex_state = 2}, + [2696] = {.lex_state = 968, .external_lex_state = 2}, + [2697] = {.lex_state = 968, .external_lex_state = 2}, + [2698] = {.lex_state = 402}, + [2699] = {.lex_state = 431, .external_lex_state = 2}, + [2700] = {.lex_state = 639, .external_lex_state = 6}, + [2701] = {.lex_state = 651}, + [2702] = {.lex_state = 651}, + [2703] = {.lex_state = 410}, + [2704] = {.lex_state = 651}, + [2705] = {.lex_state = 410}, + [2706] = {.lex_state = 437}, + [2707] = {.lex_state = 410}, + [2708] = {.lex_state = 410}, + [2709] = {.lex_state = 720, .external_lex_state = 2}, [2710] = {.lex_state = 402}, - [2711] = {.lex_state = 605}, - [2712] = {.lex_state = 605}, - [2713] = {.lex_state = 605}, - [2714] = {.lex_state = 302}, - [2715] = {.lex_state = 302}, - [2716] = {.lex_state = 681}, - [2717] = {.lex_state = 402}, - [2718] = {.lex_state = 612}, - [2719] = {.lex_state = 402}, - [2720] = {.lex_state = 410}, - [2721] = {.lex_state = 410}, - [2722] = {.lex_state = 437}, - [2723] = {.lex_state = 410}, + [2711] = {.lex_state = 419}, + [2712] = {.lex_state = 402}, + [2713] = {.lex_state = 457, .external_lex_state = 6}, + [2714] = {.lex_state = 402}, + [2715] = {.lex_state = 410}, + [2716] = {.lex_state = 402}, + [2717] = {.lex_state = 407}, + [2718] = {.lex_state = 402}, + [2719] = {.lex_state = 828, .external_lex_state = 2}, + [2720] = {.lex_state = 402}, + [2721] = {.lex_state = 407}, + [2722] = {.lex_state = 402}, + [2723] = {.lex_state = 828, .external_lex_state = 2}, [2724] = {.lex_state = 410}, - [2725] = {.lex_state = 678}, - [2726] = {.lex_state = 402}, - [2727] = {.lex_state = 605}, + [2725] = {.lex_state = 437}, + [2726] = {.lex_state = 410}, + [2727] = {.lex_state = 410}, [2728] = {.lex_state = 402}, - [2729] = {.lex_state = 675}, - [2730] = {.lex_state = 675}, + [2729] = {.lex_state = 419}, + [2730] = {.lex_state = 398}, [2731] = {.lex_state = 410}, - [2732] = {.lex_state = 437}, - [2733] = {.lex_state = 398}, - [2734] = {.lex_state = 398}, - [2735] = {.lex_state = 605}, - [2736] = {.lex_state = 605}, - [2737] = {.lex_state = 410}, - [2738] = {.lex_state = 402}, - [2739] = {.lex_state = 431}, - [2740] = {.lex_state = 410}, - [2741] = {.lex_state = 410}, - [2742] = {.lex_state = 402}, - [2743] = {.lex_state = 605}, - [2744] = {.lex_state = 581}, - [2745] = {.lex_state = 439}, - [2746] = {.lex_state = 605}, - [2747] = {.lex_state = 402}, - [2748] = {.lex_state = 410}, - [2749] = {.lex_state = 402}, - [2750] = {.lex_state = 407}, - [2751] = {.lex_state = 402}, - [2752] = {.lex_state = 747}, - [2753] = {.lex_state = 402}, - [2754] = {.lex_state = 407}, - [2755] = {.lex_state = 402}, - [2756] = {.lex_state = 747}, + [2732] = {.lex_state = 410}, + [2733] = {.lex_state = 302}, + [2734] = {.lex_state = 302}, + [2735] = {.lex_state = 423}, + [2736] = {.lex_state = 398}, + [2737] = {.lex_state = 398}, + [2738] = {.lex_state = 557}, + [2739] = {.lex_state = 410, .external_lex_state = 2}, + [2740] = {.lex_state = 402}, + [2741] = {.lex_state = 431, .external_lex_state = 2}, + [2742] = {.lex_state = 639, .external_lex_state = 6}, + [2743] = {.lex_state = 557}, + [2744] = {.lex_state = 557}, + [2745] = {.lex_state = 410}, + [2746] = {.lex_state = 557}, + [2747] = {.lex_state = 410}, + [2748] = {.lex_state = 437}, + [2749] = {.lex_state = 410}, + [2750] = {.lex_state = 410}, + [2751] = {.lex_state = 726, .external_lex_state = 2}, + [2752] = {.lex_state = 402}, + [2753] = {.lex_state = 636}, + [2754] = {.lex_state = 402}, + [2755] = {.lex_state = 457, .external_lex_state = 6}, + [2756] = {.lex_state = 402}, [2757] = {.lex_state = 410}, - [2758] = {.lex_state = 437}, - [2759] = {.lex_state = 410}, - [2760] = {.lex_state = 410}, - [2761] = {.lex_state = 402}, - [2762] = {.lex_state = 605}, - [2763] = {.lex_state = 605}, - [2764] = {.lex_state = 605}, - [2765] = {.lex_state = 605}, - [2766] = {.lex_state = 605}, - [2767] = {.lex_state = 605}, - [2768] = {.lex_state = 605}, - [2769] = {.lex_state = 410}, - [2770] = {.lex_state = 605}, - [2771] = {.lex_state = 750}, - [2772] = {.lex_state = 750}, + [2758] = {.lex_state = 402}, + [2759] = {.lex_state = 636}, + [2760] = {.lex_state = 398}, + [2761] = {.lex_state = 398}, + [2762] = {.lex_state = 410}, + [2763] = {.lex_state = 410}, + [2764] = {.lex_state = 302}, + [2765] = {.lex_state = 654}, + [2766] = {.lex_state = 410, .external_lex_state = 2}, + [2767] = {.lex_state = 402}, + [2768] = {.lex_state = 302}, + [2769] = {.lex_state = 431, .external_lex_state = 2}, + [2770] = {.lex_state = 639, .external_lex_state = 6}, + [2771] = {.lex_state = 654}, + [2772] = {.lex_state = 654}, [2773] = {.lex_state = 410}, - [2774] = {.lex_state = 437}, - [2775] = {.lex_state = 410}, - [2776] = {.lex_state = 439}, - [2777] = {.lex_state = 302}, - [2778] = {.lex_state = 439}, - [2779] = {.lex_state = 457}, - [2780] = {.lex_state = 822}, - [2781] = {.lex_state = 825}, - [2782] = {.lex_state = 402}, - [2783] = {.lex_state = 605}, - [2784] = {.lex_state = 681}, - [2785] = {.lex_state = 681}, - [2786] = {.lex_state = 681}, - [2787] = {.lex_state = 681}, + [2774] = {.lex_state = 654}, + [2775] = {.lex_state = 729}, + [2776] = {.lex_state = 729}, + [2777] = {.lex_state = 371, .external_lex_state = 8}, + [2778] = {.lex_state = 371, .external_lex_state = 8}, + [2779] = {.lex_state = 302}, + [2780] = {.lex_state = 302}, + [2781] = {.lex_state = 461}, + [2782] = {.lex_state = 831, .external_lex_state = 7}, + [2783] = {.lex_state = 587, .external_lex_state = 5}, + [2784] = {.lex_state = 589, .external_lex_state = 5}, + [2785] = {.lex_state = 437}, + [2786] = {.lex_state = 439, .external_lex_state = 2}, + [2787] = {.lex_state = 410}, [2788] = {.lex_state = 410}, - [2789] = {.lex_state = 410}, - [2790] = {.lex_state = 681}, - [2791] = {.lex_state = 681}, - [2792] = {.lex_state = 753}, - [2793] = {.lex_state = 753}, - [2794] = {.lex_state = 410}, - [2795] = {.lex_state = 437}, - [2796] = {.lex_state = 410}, - [2797] = {.lex_state = 439}, - [2798] = {.lex_state = 302}, - [2799] = {.lex_state = 439}, - [2800] = {.lex_state = 457}, - [2801] = {.lex_state = 828}, - [2802] = {.lex_state = 831}, + [2789] = {.lex_state = 402}, + [2790] = {.lex_state = 596}, + [2791] = {.lex_state = 602, .external_lex_state = 7}, + [2792] = {.lex_state = 398}, + [2793] = {.lex_state = 398}, + [2794] = {.lex_state = 402}, + [2795] = {.lex_state = 407}, + [2796] = {.lex_state = 402}, + [2797] = {.lex_state = 402}, + [2798] = {.lex_state = 732, .external_lex_state = 8}, + [2799] = {.lex_state = 732, .external_lex_state = 8}, + [2800] = {.lex_state = 410, .external_lex_state = 2}, + [2801] = {.lex_state = 602, .external_lex_state = 7}, + [2802] = {.lex_state = 602, .external_lex_state = 7}, [2803] = {.lex_state = 402}, - [2804] = {.lex_state = 609}, - [2805] = {.lex_state = 609}, - [2806] = {.lex_state = 609}, - [2807] = {.lex_state = 609}, - [2808] = {.lex_state = 410}, - [2809] = {.lex_state = 410}, - [2810] = {.lex_state = 609}, - [2811] = {.lex_state = 609}, - [2812] = {.lex_state = 402}, - [2813] = {.lex_state = 407}, - [2814] = {.lex_state = 402}, - [2815] = {.lex_state = 756}, - [2816] = {.lex_state = 402}, - [2817] = {.lex_state = 407}, - [2818] = {.lex_state = 402}, - [2819] = {.lex_state = 756}, + [2804] = {.lex_state = 431, .external_lex_state = 2}, + [2805] = {.lex_state = 302}, + [2806] = {.lex_state = 302}, + [2807] = {.lex_state = 790, .external_lex_state = 8}, + [2808] = {.lex_state = 790, .external_lex_state = 8}, + [2809] = {.lex_state = 402}, + [2810] = {.lex_state = 457, .external_lex_state = 3}, + [2811] = {.lex_state = 539}, + [2812] = {.lex_state = 790, .external_lex_state = 8}, + [2813] = {.lex_state = 790, .external_lex_state = 8}, + [2814] = {.lex_state = 790, .external_lex_state = 8}, + [2815] = {.lex_state = 627, .external_lex_state = 8}, + [2816] = {.lex_state = 398}, + [2817] = {.lex_state = 402}, + [2818] = {.lex_state = 407}, + [2819] = {.lex_state = 410}, [2820] = {.lex_state = 410}, - [2821] = {.lex_state = 437}, - [2822] = {.lex_state = 410}, - [2823] = {.lex_state = 439}, - [2824] = {.lex_state = 302}, - [2825] = {.lex_state = 439}, - [2826] = {.lex_state = 457}, - [2827] = {.lex_state = 834}, - [2828] = {.lex_state = 837}, - [2829] = {.lex_state = 402}, - [2830] = {.lex_state = 609}, - [2831] = {.lex_state = 684}, - [2832] = {.lex_state = 684}, - [2833] = {.lex_state = 684}, - [2834] = {.lex_state = 410}, + [2821] = {.lex_state = 302}, + [2822] = {.lex_state = 402}, + [2823] = {.lex_state = 402}, + [2824] = {.lex_state = 835, .external_lex_state = 8}, + [2825] = {.lex_state = 835, .external_lex_state = 8}, + [2826] = {.lex_state = 835, .external_lex_state = 8}, + [2827] = {.lex_state = 627, .external_lex_state = 8}, + [2828] = {.lex_state = 627, .external_lex_state = 8}, + [2829] = {.lex_state = 302}, + [2830] = {.lex_state = 423}, + [2831] = {.lex_state = 630, .external_lex_state = 8}, + [2832] = {.lex_state = 398}, + [2833] = {.lex_state = 402}, + [2834] = {.lex_state = 407}, [2835] = {.lex_state = 410}, - [2836] = {.lex_state = 402}, - [2837] = {.lex_state = 684}, - [2838] = {.lex_state = 840}, - [2839] = {.lex_state = 398}, - [2840] = {.lex_state = 402}, - [2841] = {.lex_state = 407}, - [2842] = {.lex_state = 402}, - [2843] = {.lex_state = 402}, - [2844] = {.lex_state = 684}, - [2845] = {.lex_state = 840}, - [2846] = {.lex_state = 840}, - [2847] = {.lex_state = 423}, - [2848] = {.lex_state = 684}, - [2849] = {.lex_state = 302}, - [2850] = {.lex_state = 612}, - [2851] = {.lex_state = 612}, - [2852] = {.lex_state = 410}, - [2853] = {.lex_state = 437}, + [2836] = {.lex_state = 410}, + [2837] = {.lex_state = 302}, + [2838] = {.lex_state = 402}, + [2839] = {.lex_state = 402}, + [2840] = {.lex_state = 736, .external_lex_state = 8}, + [2841] = {.lex_state = 736, .external_lex_state = 8}, + [2842] = {.lex_state = 736, .external_lex_state = 8}, + [2843] = {.lex_state = 630, .external_lex_state = 8}, + [2844] = {.lex_state = 630, .external_lex_state = 8}, + [2845] = {.lex_state = 302}, + [2846] = {.lex_state = 423}, + [2847] = {.lex_state = 736, .external_lex_state = 8}, + [2848] = {.lex_state = 633, .external_lex_state = 7}, + [2849] = {.lex_state = 398}, + [2850] = {.lex_state = 398}, + [2851] = {.lex_state = 402}, + [2852] = {.lex_state = 407}, + [2853] = {.lex_state = 410}, [2854] = {.lex_state = 410}, - [2855] = {.lex_state = 410}, - [2856] = {.lex_state = 690}, + [2855] = {.lex_state = 302}, + [2856] = {.lex_state = 402}, [2857] = {.lex_state = 402}, - [2858] = {.lex_state = 532}, - [2859] = {.lex_state = 402}, - [2860] = {.lex_state = 687}, - [2861] = {.lex_state = 687}, - [2862] = {.lex_state = 410}, - [2863] = {.lex_state = 437}, - [2864] = {.lex_state = 398}, - [2865] = {.lex_state = 398}, - [2866] = {.lex_state = 532}, - [2867] = {.lex_state = 532}, - [2868] = {.lex_state = 410}, - [2869] = {.lex_state = 402}, - [2870] = {.lex_state = 431}, - [2871] = {.lex_state = 687}, - [2872] = {.lex_state = 690}, - [2873] = {.lex_state = 402}, - [2874] = {.lex_state = 525}, - [2875] = {.lex_state = 642}, - [2876] = {.lex_state = 642}, - [2877] = {.lex_state = 410}, + [2858] = {.lex_state = 837, .external_lex_state = 8}, + [2859] = {.lex_state = 971, .external_lex_state = 8}, + [2860] = {.lex_state = 971, .external_lex_state = 8}, + [2861] = {.lex_state = 971, .external_lex_state = 8}, + [2862] = {.lex_state = 410, .external_lex_state = 2}, + [2863] = {.lex_state = 633, .external_lex_state = 7}, + [2864] = {.lex_state = 633, .external_lex_state = 7}, + [2865] = {.lex_state = 402}, + [2866] = {.lex_state = 302}, + [2867] = {.lex_state = 431, .external_lex_state = 2}, + [2868] = {.lex_state = 639, .external_lex_state = 6}, + [2869] = {.lex_state = 591, .external_lex_state = 8}, + [2870] = {.lex_state = 591, .external_lex_state = 8}, + [2871] = {.lex_state = 410}, + [2872] = {.lex_state = 591, .external_lex_state = 8}, + [2873] = {.lex_state = 591, .external_lex_state = 8}, + [2874] = {.lex_state = 591, .external_lex_state = 8}, + [2875] = {.lex_state = 410, .external_lex_state = 2}, + [2876] = {.lex_state = 839}, + [2877] = {.lex_state = 839}, [2878] = {.lex_state = 410}, - [2879] = {.lex_state = 402}, - [2880] = {.lex_state = 532}, - [2881] = {.lex_state = 581}, - [2882] = {.lex_state = 439}, - [2883] = {.lex_state = 532}, + [2879] = {.lex_state = 437}, + [2880] = {.lex_state = 410}, + [2881] = {.lex_state = 410}, + [2882] = {.lex_state = 402}, + [2883] = {.lex_state = 407}, [2884] = {.lex_state = 402}, - [2885] = {.lex_state = 410}, + [2885] = {.lex_state = 842, .external_lex_state = 2}, [2886] = {.lex_state = 402}, [2887] = {.lex_state = 407}, [2888] = {.lex_state = 402}, - [2889] = {.lex_state = 759}, - [2890] = {.lex_state = 402}, - [2891] = {.lex_state = 407}, - [2892] = {.lex_state = 402}, - [2893] = {.lex_state = 759}, - [2894] = {.lex_state = 410}, - [2895] = {.lex_state = 437}, - [2896] = {.lex_state = 410}, - [2897] = {.lex_state = 410}, - [2898] = {.lex_state = 402}, - [2899] = {.lex_state = 532}, - [2900] = {.lex_state = 398}, - [2901] = {.lex_state = 410}, + [2889] = {.lex_state = 842, .external_lex_state = 2}, + [2890] = {.lex_state = 410}, + [2891] = {.lex_state = 437}, + [2892] = {.lex_state = 410}, + [2893] = {.lex_state = 410}, + [2894] = {.lex_state = 402}, + [2895] = {.lex_state = 557}, + [2896] = {.lex_state = 645}, + [2897] = {.lex_state = 645}, + [2898] = {.lex_state = 457, .external_lex_state = 6}, + [2899] = {.lex_state = 457, .external_lex_state = 3}, + [2900] = {.lex_state = 845}, + [2901] = {.lex_state = 845}, [2902] = {.lex_state = 410}, - [2903] = {.lex_state = 302}, - [2904] = {.lex_state = 302}, - [2905] = {.lex_state = 423}, - [2906] = {.lex_state = 642}, - [2907] = {.lex_state = 642}, - [2908] = {.lex_state = 843}, - [2909] = {.lex_state = 398}, - [2910] = {.lex_state = 398}, - [2911] = {.lex_state = 402}, - [2912] = {.lex_state = 407}, - [2913] = {.lex_state = 402}, - [2914] = {.lex_state = 402}, - [2915] = {.lex_state = 642}, - [2916] = {.lex_state = 642}, + [2903] = {.lex_state = 437}, + [2904] = {.lex_state = 410}, + [2905] = {.lex_state = 410}, + [2906] = {.lex_state = 402}, + [2907] = {.lex_state = 407}, + [2908] = {.lex_state = 402}, + [2909] = {.lex_state = 848, .external_lex_state = 2}, + [2910] = {.lex_state = 402}, + [2911] = {.lex_state = 407}, + [2912] = {.lex_state = 402}, + [2913] = {.lex_state = 848, .external_lex_state = 2}, + [2914] = {.lex_state = 410}, + [2915] = {.lex_state = 437}, + [2916] = {.lex_state = 410}, [2917] = {.lex_state = 410}, - [2918] = {.lex_state = 843}, - [2919] = {.lex_state = 843}, - [2920] = {.lex_state = 402}, - [2921] = {.lex_state = 431}, - [2922] = {.lex_state = 642}, - [2923] = {.lex_state = 642}, - [2924] = {.lex_state = 410}, - [2925] = {.lex_state = 642}, - [2926] = {.lex_state = 410}, - [2927] = {.lex_state = 437}, - [2928] = {.lex_state = 410}, - [2929] = {.lex_state = 410}, - [2930] = {.lex_state = 696}, - [2931] = {.lex_state = 402}, - [2932] = {.lex_state = 419}, - [2933] = {.lex_state = 402}, - [2934] = {.lex_state = 693}, - [2935] = {.lex_state = 693}, - [2936] = {.lex_state = 410}, - [2937] = {.lex_state = 437}, + [2918] = {.lex_state = 402}, + [2919] = {.lex_state = 572}, + [2920] = {.lex_state = 648}, + [2921] = {.lex_state = 648}, + [2922] = {.lex_state = 457, .external_lex_state = 6}, + [2923] = {.lex_state = 457, .external_lex_state = 3}, + [2924] = {.lex_state = 738}, + [2925] = {.lex_state = 738}, + [2926] = {.lex_state = 302}, + [2927] = {.lex_state = 302}, + [2928] = {.lex_state = 461}, + [2929] = {.lex_state = 851, .external_lex_state = 2}, + [2930] = {.lex_state = 587, .external_lex_state = 5}, + [2931] = {.lex_state = 589, .external_lex_state = 5}, + [2932] = {.lex_state = 437}, + [2933] = {.lex_state = 439, .external_lex_state = 2}, + [2934] = {.lex_state = 410}, + [2935] = {.lex_state = 410}, + [2936] = {.lex_state = 402}, + [2937] = {.lex_state = 596}, [2938] = {.lex_state = 398}, [2939] = {.lex_state = 398}, - [2940] = {.lex_state = 419}, - [2941] = {.lex_state = 419}, - [2942] = {.lex_state = 410}, + [2940] = {.lex_state = 651}, + [2941] = {.lex_state = 651}, + [2942] = {.lex_state = 410, .external_lex_state = 2}, [2943] = {.lex_state = 402}, - [2944] = {.lex_state = 431}, - [2945] = {.lex_state = 693}, - [2946] = {.lex_state = 696}, - [2947] = {.lex_state = 402}, - [2948] = {.lex_state = 525}, - [2949] = {.lex_state = 554}, - [2950] = {.lex_state = 554}, - [2951] = {.lex_state = 410}, - [2952] = {.lex_state = 410}, - [2953] = {.lex_state = 402}, - [2954] = {.lex_state = 419}, - [2955] = {.lex_state = 581}, - [2956] = {.lex_state = 439}, - [2957] = {.lex_state = 419}, - [2958] = {.lex_state = 402}, + [2944] = {.lex_state = 431, .external_lex_state = 2}, + [2945] = {.lex_state = 302}, + [2946] = {.lex_state = 402}, + [2947] = {.lex_state = 651}, + [2948] = {.lex_state = 741}, + [2949] = {.lex_state = 741}, + [2950] = {.lex_state = 302}, + [2951] = {.lex_state = 302}, + [2952] = {.lex_state = 461}, + [2953] = {.lex_state = 857, .external_lex_state = 2}, + [2954] = {.lex_state = 587, .external_lex_state = 5}, + [2955] = {.lex_state = 589, .external_lex_state = 5}, + [2956] = {.lex_state = 437}, + [2957] = {.lex_state = 439, .external_lex_state = 2}, + [2958] = {.lex_state = 410}, [2959] = {.lex_state = 410}, [2960] = {.lex_state = 402}, - [2961] = {.lex_state = 407}, - [2962] = {.lex_state = 402}, - [2963] = {.lex_state = 762}, - [2964] = {.lex_state = 402}, - [2965] = {.lex_state = 407}, - [2966] = {.lex_state = 402}, - [2967] = {.lex_state = 762}, - [2968] = {.lex_state = 410}, - [2969] = {.lex_state = 437}, - [2970] = {.lex_state = 410}, - [2971] = {.lex_state = 410}, - [2972] = {.lex_state = 402}, - [2973] = {.lex_state = 419}, - [2974] = {.lex_state = 398}, + [2961] = {.lex_state = 596}, + [2962] = {.lex_state = 557}, + [2963] = {.lex_state = 557}, + [2964] = {.lex_state = 744, .external_lex_state = 2}, + [2965] = {.lex_state = 744, .external_lex_state = 2}, + [2966] = {.lex_state = 302}, + [2967] = {.lex_state = 302}, + [2968] = {.lex_state = 461}, + [2969] = {.lex_state = 863, .external_lex_state = 2}, + [2970] = {.lex_state = 587, .external_lex_state = 5}, + [2971] = {.lex_state = 589, .external_lex_state = 5}, + [2972] = {.lex_state = 437}, + [2973] = {.lex_state = 439, .external_lex_state = 2}, + [2974] = {.lex_state = 410}, [2975] = {.lex_state = 410}, - [2976] = {.lex_state = 410}, - [2977] = {.lex_state = 302}, - [2978] = {.lex_state = 302}, - [2979] = {.lex_state = 423}, - [2980] = {.lex_state = 398}, - [2981] = {.lex_state = 398}, - [2982] = {.lex_state = 554}, + [2976] = {.lex_state = 402}, + [2977] = {.lex_state = 596}, + [2978] = {.lex_state = 654}, + [2979] = {.lex_state = 654}, + [2980] = {.lex_state = 654}, + [2981] = {.lex_state = 869}, + [2982] = {.lex_state = 869}, [2983] = {.lex_state = 410}, - [2984] = {.lex_state = 402}, - [2985] = {.lex_state = 431}, - [2986] = {.lex_state = 554}, - [2987] = {.lex_state = 554}, - [2988] = {.lex_state = 410}, - [2989] = {.lex_state = 554}, + [2984] = {.lex_state = 437}, + [2985] = {.lex_state = 410}, + [2986] = {.lex_state = 410}, + [2987] = {.lex_state = 560}, + [2988] = {.lex_state = 560}, + [2989] = {.lex_state = 402}, [2990] = {.lex_state = 410}, [2991] = {.lex_state = 437}, [2992] = {.lex_state = 410}, - [2993] = {.lex_state = 410}, - [2994] = {.lex_state = 702}, + [2993] = {.lex_state = 437, .external_lex_state = 2}, + [2994] = {.lex_state = 660, .external_lex_state = 2}, [2995] = {.lex_state = 402}, - [2996] = {.lex_state = 627}, + [2996] = {.lex_state = 402}, [2997] = {.lex_state = 402}, - [2998] = {.lex_state = 699}, - [2999] = {.lex_state = 699}, - [3000] = {.lex_state = 410}, - [3001] = {.lex_state = 437}, - [3002] = {.lex_state = 627}, - [3003] = {.lex_state = 627}, - [3004] = {.lex_state = 410}, - [3005] = {.lex_state = 402}, - [3006] = {.lex_state = 699}, - [3007] = {.lex_state = 702}, - [3008] = {.lex_state = 402}, - [3009] = {.lex_state = 554}, - [3010] = {.lex_state = 645}, - [3011] = {.lex_state = 410}, - [3012] = {.lex_state = 410}, - [3013] = {.lex_state = 402}, - [3014] = {.lex_state = 627}, - [3015] = {.lex_state = 581}, - [3016] = {.lex_state = 439}, - [3017] = {.lex_state = 627}, - [3018] = {.lex_state = 402}, + [2998] = {.lex_state = 410}, + [2999] = {.lex_state = 437}, + [3000] = {.lex_state = 569}, + [3001] = {.lex_state = 569}, + [3002] = {.lex_state = 410}, + [3003] = {.lex_state = 747, .external_lex_state = 2}, + [3004] = {.lex_state = 747, .external_lex_state = 2}, + [3005] = {.lex_state = 569}, + [3006] = {.lex_state = 569}, + [3007] = {.lex_state = 457, .external_lex_state = 6}, + [3008] = {.lex_state = 457, .external_lex_state = 3}, + [3009] = {.lex_state = 750}, + [3010] = {.lex_state = 750}, + [3011] = {.lex_state = 302}, + [3012] = {.lex_state = 302}, + [3013] = {.lex_state = 461}, + [3014] = {.lex_state = 872, .external_lex_state = 2}, + [3015] = {.lex_state = 587, .external_lex_state = 5}, + [3016] = {.lex_state = 589, .external_lex_state = 5}, + [3017] = {.lex_state = 437}, + [3018] = {.lex_state = 439, .external_lex_state = 2}, [3019] = {.lex_state = 410}, - [3020] = {.lex_state = 402}, - [3021] = {.lex_state = 627}, - [3022] = {.lex_state = 398}, - [3023] = {.lex_state = 398}, - [3024] = {.lex_state = 410}, - [3025] = {.lex_state = 410}, - [3026] = {.lex_state = 302}, - [3027] = {.lex_state = 645}, - [3028] = {.lex_state = 410}, + [3020] = {.lex_state = 410}, + [3021] = {.lex_state = 402}, + [3022] = {.lex_state = 596}, + [3023] = {.lex_state = 973, .external_lex_state = 2}, + [3024] = {.lex_state = 398}, + [3025] = {.lex_state = 398}, + [3026] = {.lex_state = 402}, + [3027] = {.lex_state = 407}, + [3028] = {.lex_state = 402}, [3029] = {.lex_state = 402}, - [3030] = {.lex_state = 302}, - [3031] = {.lex_state = 431}, - [3032] = {.lex_state = 645}, - [3033] = {.lex_state = 645}, - [3034] = {.lex_state = 410}, - [3035] = {.lex_state = 645}, - [3036] = {.lex_state = 705}, - [3037] = {.lex_state = 705}, - [3038] = {.lex_state = 402}, - [3039] = {.lex_state = 398}, - [3040] = {.lex_state = 423}, - [3041] = {.lex_state = 410}, - [3042] = {.lex_state = 708}, - [3043] = {.lex_state = 708}, - [3044] = {.lex_state = 402}, - [3045] = {.lex_state = 402}, - [3046] = {.lex_state = 402}, - [3047] = {.lex_state = 633}, - [3048] = {.lex_state = 402}, - [3049] = {.lex_state = 410}, - [3050] = {.lex_state = 765}, - [3051] = {.lex_state = 765}, - [3052] = {.lex_state = 410}, - [3053] = {.lex_state = 437}, - [3054] = {.lex_state = 410}, - [3055] = {.lex_state = 410}, - [3056] = {.lex_state = 402}, - [3057] = {.lex_state = 407}, + [3030] = {.lex_state = 663}, + [3031] = {.lex_state = 663}, + [3032] = {.lex_state = 410, .external_lex_state = 2}, + [3033] = {.lex_state = 973, .external_lex_state = 2}, + [3034] = {.lex_state = 973, .external_lex_state = 2}, + [3035] = {.lex_state = 402}, + [3036] = {.lex_state = 431, .external_lex_state = 2}, + [3037] = {.lex_state = 302}, + [3038] = {.lex_state = 663}, + [3039] = {.lex_state = 663}, + [3040] = {.lex_state = 402}, + [3041] = {.lex_state = 457, .external_lex_state = 3}, + [3042] = {.lex_state = 539}, + [3043] = {.lex_state = 663}, + [3044] = {.lex_state = 663}, + [3045] = {.lex_state = 663}, + [3046] = {.lex_state = 753}, + [3047] = {.lex_state = 753}, + [3048] = {.lex_state = 302}, + [3049] = {.lex_state = 302}, + [3050] = {.lex_state = 461}, + [3051] = {.lex_state = 878, .external_lex_state = 2}, + [3052] = {.lex_state = 587, .external_lex_state = 5}, + [3053] = {.lex_state = 589, .external_lex_state = 5}, + [3054] = {.lex_state = 437}, + [3055] = {.lex_state = 439, .external_lex_state = 2}, + [3056] = {.lex_state = 410}, + [3057] = {.lex_state = 410}, [3058] = {.lex_state = 402}, - [3059] = {.lex_state = 768}, - [3060] = {.lex_state = 402}, - [3061] = {.lex_state = 407}, - [3062] = {.lex_state = 402}, - [3063] = {.lex_state = 768}, - [3064] = {.lex_state = 410}, - [3065] = {.lex_state = 437}, - [3066] = {.lex_state = 410}, - [3067] = {.lex_state = 410}, - [3068] = {.lex_state = 402}, - [3069] = {.lex_state = 554}, - [3070] = {.lex_state = 302}, - [3071] = {.lex_state = 633}, - [3072] = {.lex_state = 633}, - [3073] = {.lex_state = 711}, - [3074] = {.lex_state = 711}, - [3075] = {.lex_state = 402}, - [3076] = {.lex_state = 398}, - [3077] = {.lex_state = 423}, + [3059] = {.lex_state = 596}, + [3060] = {.lex_state = 572}, + [3061] = {.lex_state = 457, .external_lex_state = 3}, + [3062] = {.lex_state = 539}, + [3063] = {.lex_state = 572}, + [3064] = {.lex_state = 572}, + [3065] = {.lex_state = 572}, + [3066] = {.lex_state = 756, .external_lex_state = 2}, + [3067] = {.lex_state = 756, .external_lex_state = 2}, + [3068] = {.lex_state = 302}, + [3069] = {.lex_state = 302}, + [3070] = {.lex_state = 461}, + [3071] = {.lex_state = 884, .external_lex_state = 2}, + [3072] = {.lex_state = 587, .external_lex_state = 5}, + [3073] = {.lex_state = 589, .external_lex_state = 5}, + [3074] = {.lex_state = 437}, + [3075] = {.lex_state = 439, .external_lex_state = 2}, + [3076] = {.lex_state = 410}, + [3077] = {.lex_state = 410}, [3078] = {.lex_state = 402}, - [3079] = {.lex_state = 402}, - [3080] = {.lex_state = 636}, - [3081] = {.lex_state = 402}, - [3082] = {.lex_state = 437}, - [3083] = {.lex_state = 771}, - [3084] = {.lex_state = 771}, - [3085] = {.lex_state = 410}, - [3086] = {.lex_state = 437}, - [3087] = {.lex_state = 410}, - [3088] = {.lex_state = 410}, - [3089] = {.lex_state = 402}, - [3090] = {.lex_state = 407}, - [3091] = {.lex_state = 402}, - [3092] = {.lex_state = 774}, - [3093] = {.lex_state = 402}, - [3094] = {.lex_state = 407}, - [3095] = {.lex_state = 402}, - [3096] = {.lex_state = 774}, - [3097] = {.lex_state = 410}, - [3098] = {.lex_state = 437}, + [3079] = {.lex_state = 596}, + [3080] = {.lex_state = 666}, + [3081] = {.lex_state = 457, .external_lex_state = 3}, + [3082] = {.lex_state = 539}, + [3083] = {.lex_state = 666}, + [3084] = {.lex_state = 666}, + [3085] = {.lex_state = 666}, + [3086] = {.lex_state = 666}, + [3087] = {.lex_state = 890}, + [3088] = {.lex_state = 890}, + [3089] = {.lex_state = 410}, + [3090] = {.lex_state = 437}, + [3091] = {.lex_state = 410}, + [3092] = {.lex_state = 410}, + [3093] = {.lex_state = 575}, + [3094] = {.lex_state = 575}, + [3095] = {.lex_state = 521, .external_lex_state = 2}, + [3096] = {.lex_state = 410}, + [3097] = {.lex_state = 437}, + [3098] = {.lex_state = 410}, [3099] = {.lex_state = 410}, - [3100] = {.lex_state = 410}, + [3100] = {.lex_state = 761, .external_lex_state = 4}, [3101] = {.lex_state = 402}, - [3102] = {.lex_state = 569}, - [3103] = {.lex_state = 302}, - [3104] = {.lex_state = 636}, - [3105] = {.lex_state = 636}, - [3106] = {.lex_state = 398}, - [3107] = {.lex_state = 398}, - [3108] = {.lex_state = 410}, - [3109] = {.lex_state = 410}, - [3110] = {.lex_state = 302}, - [3111] = {.lex_state = 645}, - [3112] = {.lex_state = 410}, - [3113] = {.lex_state = 402}, - [3114] = {.lex_state = 302}, - [3115] = {.lex_state = 431}, - [3116] = {.lex_state = 402}, + [3102] = {.lex_state = 672, .external_lex_state = 5}, + [3103] = {.lex_state = 402}, + [3104] = {.lex_state = 457, .external_lex_state = 6}, + [3105] = {.lex_state = 402}, + [3106] = {.lex_state = 410}, + [3107] = {.lex_state = 402}, + [3108] = {.lex_state = 672, .external_lex_state = 5}, + [3109] = {.lex_state = 976, .external_lex_state = 4}, + [3110] = {.lex_state = 398}, + [3111] = {.lex_state = 398}, + [3112] = {.lex_state = 402}, + [3113] = {.lex_state = 407}, + [3114] = {.lex_state = 410}, + [3115] = {.lex_state = 410}, + [3116] = {.lex_state = 302}, [3117] = {.lex_state = 402}, - [3118] = {.lex_state = 525}, - [3119] = {.lex_state = 302}, - [3120] = {.lex_state = 525}, - [3121] = {.lex_state = 525}, - [3122] = {.lex_state = 714}, - [3123] = {.lex_state = 714}, - [3124] = {.lex_state = 302}, - [3125] = {.lex_state = 302}, - [3126] = {.lex_state = 457}, - [3127] = {.lex_state = 777}, - [3128] = {.lex_state = 410}, - [3129] = {.lex_state = 410}, - [3130] = {.lex_state = 437}, - [3131] = {.lex_state = 777}, - [3132] = {.lex_state = 398}, - [3133] = {.lex_state = 402}, - [3134] = {.lex_state = 407}, - [3135] = {.lex_state = 402}, - [3136] = {.lex_state = 402}, + [3118] = {.lex_state = 402}, + [3119] = {.lex_state = 893, .external_lex_state = 5}, + [3120] = {.lex_state = 893, .external_lex_state = 5}, + [3121] = {.lex_state = 893, .external_lex_state = 5}, + [3122] = {.lex_state = 893, .external_lex_state = 5}, + [3123] = {.lex_state = 410, .external_lex_state = 2}, + [3124] = {.lex_state = 976, .external_lex_state = 4}, + [3125] = {.lex_state = 976, .external_lex_state = 4}, + [3126] = {.lex_state = 402}, + [3127] = {.lex_state = 302}, + [3128] = {.lex_state = 431, .external_lex_state = 2}, + [3129] = {.lex_state = 639, .external_lex_state = 6}, + [3130] = {.lex_state = 763, .external_lex_state = 5}, + [3131] = {.lex_state = 763, .external_lex_state = 5}, + [3132] = {.lex_state = 410}, + [3133] = {.lex_state = 763, .external_lex_state = 5}, + [3134] = {.lex_state = 766, .external_lex_state = 5}, + [3135] = {.lex_state = 766, .external_lex_state = 5}, + [3136] = {.lex_state = 676, .external_lex_state = 4}, [3137] = {.lex_state = 402}, - [3138] = {.lex_state = 581}, - [3139] = {.lex_state = 642}, - [3140] = {.lex_state = 777}, - [3141] = {.lex_state = 777}, - [3142] = {.lex_state = 642}, - [3143] = {.lex_state = 642}, - [3144] = {.lex_state = 642}, - [3145] = {.lex_state = 581}, - [3146] = {.lex_state = 410}, - [3147] = {.lex_state = 410}, - [3148] = {.lex_state = 402}, - [3149] = {.lex_state = 587}, - [3150] = {.lex_state = 398}, - [3151] = {.lex_state = 398}, - [3152] = {.lex_state = 642}, - [3153] = {.lex_state = 410}, - [3154] = {.lex_state = 402}, - [3155] = {.lex_state = 431}, - [3156] = {.lex_state = 302}, - [3157] = {.lex_state = 642}, - [3158] = {.lex_state = 402}, - [3159] = {.lex_state = 642}, - [3160] = {.lex_state = 535}, - [3161] = {.lex_state = 642}, - [3162] = {.lex_state = 642}, - [3163] = {.lex_state = 717}, - [3164] = {.lex_state = 717}, - [3165] = {.lex_state = 302}, - [3166] = {.lex_state = 302}, - [3167] = {.lex_state = 457}, - [3168] = {.lex_state = 783}, - [3169] = {.lex_state = 410}, - [3170] = {.lex_state = 410}, - [3171] = {.lex_state = 437}, - [3172] = {.lex_state = 783}, - [3173] = {.lex_state = 398}, - [3174] = {.lex_state = 402}, - [3175] = {.lex_state = 407}, - [3176] = {.lex_state = 402}, - [3177] = {.lex_state = 402}, - [3178] = {.lex_state = 402}, - [3179] = {.lex_state = 581}, - [3180] = {.lex_state = 554}, - [3181] = {.lex_state = 783}, - [3182] = {.lex_state = 783}, - [3183] = {.lex_state = 554}, - [3184] = {.lex_state = 554}, - [3185] = {.lex_state = 554}, - [3186] = {.lex_state = 581}, - [3187] = {.lex_state = 410}, - [3188] = {.lex_state = 410}, + [3138] = {.lex_state = 402}, + [3139] = {.lex_state = 402}, + [3140] = {.lex_state = 410}, + [3141] = {.lex_state = 437}, + [3142] = {.lex_state = 587, .external_lex_state = 5}, + [3143] = {.lex_state = 587, .external_lex_state = 5}, + [3144] = {.lex_state = 410}, + [3145] = {.lex_state = 769, .external_lex_state = 4}, + [3146] = {.lex_state = 769, .external_lex_state = 4}, + [3147] = {.lex_state = 302}, + [3148] = {.lex_state = 302}, + [3149] = {.lex_state = 461}, + [3150] = {.lex_state = 896, .external_lex_state = 4}, + [3151] = {.lex_state = 587, .external_lex_state = 5}, + [3152] = {.lex_state = 589, .external_lex_state = 5}, + [3153] = {.lex_state = 437}, + [3154] = {.lex_state = 439, .external_lex_state = 2}, + [3155] = {.lex_state = 410}, + [3156] = {.lex_state = 410}, + [3157] = {.lex_state = 402}, + [3158] = {.lex_state = 596}, + [3159] = {.lex_state = 772, .external_lex_state = 5}, + [3160] = {.lex_state = 772, .external_lex_state = 5}, + [3161] = {.lex_state = 410, .external_lex_state = 2}, + [3162] = {.lex_state = 402}, + [3163] = {.lex_state = 402}, + [3164] = {.lex_state = 457, .external_lex_state = 3}, + [3165] = {.lex_state = 539}, + [3166] = {.lex_state = 900, .external_lex_state = 5}, + [3167] = {.lex_state = 684, .external_lex_state = 5}, + [3168] = {.lex_state = 900, .external_lex_state = 5}, + [3169] = {.lex_state = 587, .external_lex_state = 5}, + [3170] = {.lex_state = 903, .external_lex_state = 5}, + [3171] = {.lex_state = 903, .external_lex_state = 5}, + [3172] = {.lex_state = 410}, + [3173] = {.lex_state = 437}, + [3174] = {.lex_state = 410}, + [3175] = {.lex_state = 410}, + [3176] = {.lex_state = 410}, + [3177] = {.lex_state = 437}, + [3178] = {.lex_state = 410}, + [3179] = {.lex_state = 410}, + [3180] = {.lex_state = 777, .external_lex_state = 4}, + [3181] = {.lex_state = 402}, + [3182] = {.lex_state = 681, .external_lex_state = 5}, + [3183] = {.lex_state = 402}, + [3184] = {.lex_state = 457, .external_lex_state = 6}, + [3185] = {.lex_state = 402}, + [3186] = {.lex_state = 410}, + [3187] = {.lex_state = 402}, + [3188] = {.lex_state = 407}, [3189] = {.lex_state = 402}, - [3190] = {.lex_state = 587}, - [3191] = {.lex_state = 554}, - [3192] = {.lex_state = 535}, - [3193] = {.lex_state = 554}, - [3194] = {.lex_state = 554}, - [3195] = {.lex_state = 720}, - [3196] = {.lex_state = 720}, - [3197] = {.lex_state = 302}, - [3198] = {.lex_state = 302}, - [3199] = {.lex_state = 457}, - [3200] = {.lex_state = 789}, - [3201] = {.lex_state = 410}, - [3202] = {.lex_state = 410}, - [3203] = {.lex_state = 437}, - [3204] = {.lex_state = 789}, - [3205] = {.lex_state = 398}, - [3206] = {.lex_state = 402}, - [3207] = {.lex_state = 407}, - [3208] = {.lex_state = 402}, - [3209] = {.lex_state = 402}, - [3210] = {.lex_state = 402}, - [3211] = {.lex_state = 581}, - [3212] = {.lex_state = 645}, - [3213] = {.lex_state = 789}, - [3214] = {.lex_state = 789}, - [3215] = {.lex_state = 645}, - [3216] = {.lex_state = 645}, - [3217] = {.lex_state = 645}, - [3218] = {.lex_state = 581}, - [3219] = {.lex_state = 410}, - [3220] = {.lex_state = 410}, + [3190] = {.lex_state = 906, .external_lex_state = 4}, + [3191] = {.lex_state = 402}, + [3192] = {.lex_state = 407}, + [3193] = {.lex_state = 402}, + [3194] = {.lex_state = 906, .external_lex_state = 4}, + [3195] = {.lex_state = 410}, + [3196] = {.lex_state = 437}, + [3197] = {.lex_state = 410}, + [3198] = {.lex_state = 410}, + [3199] = {.lex_state = 402}, + [3200] = {.lex_state = 681, .external_lex_state = 5}, + [3201] = {.lex_state = 681, .external_lex_state = 5}, + [3202] = {.lex_state = 681, .external_lex_state = 5}, + [3203] = {.lex_state = 681, .external_lex_state = 5}, + [3204] = {.lex_state = 681, .external_lex_state = 5}, + [3205] = {.lex_state = 639, .external_lex_state = 6}, + [3206] = {.lex_state = 681, .external_lex_state = 5}, + [3207] = {.lex_state = 681, .external_lex_state = 5}, + [3208] = {.lex_state = 410}, + [3209] = {.lex_state = 681, .external_lex_state = 5}, + [3210] = {.lex_state = 909, .external_lex_state = 5}, + [3211] = {.lex_state = 909, .external_lex_state = 5}, + [3212] = {.lex_state = 410}, + [3213] = {.lex_state = 437}, + [3214] = {.lex_state = 410}, + [3215] = {.lex_state = 439, .external_lex_state = 2}, + [3216] = {.lex_state = 302}, + [3217] = {.lex_state = 457, .external_lex_state = 3}, + [3218] = {.lex_state = 461}, + [3219] = {.lex_state = 979, .external_lex_state = 4}, + [3220] = {.lex_state = 982, .external_lex_state = 4}, [3221] = {.lex_state = 402}, - [3222] = {.lex_state = 587}, - [3223] = {.lex_state = 645}, - [3224] = {.lex_state = 535}, - [3225] = {.lex_state = 645}, - [3226] = {.lex_state = 645}, - [3227] = {.lex_state = 645}, - [3228] = {.lex_state = 795}, - [3229] = {.lex_state = 795}, - [3230] = {.lex_state = 410}, - [3231] = {.lex_state = 437}, - [3232] = {.lex_state = 410}, + [3222] = {.lex_state = 681, .external_lex_state = 5}, + [3223] = {.lex_state = 780, .external_lex_state = 5}, + [3224] = {.lex_state = 780, .external_lex_state = 5}, + [3225] = {.lex_state = 780, .external_lex_state = 5}, + [3226] = {.lex_state = 780, .external_lex_state = 5}, + [3227] = {.lex_state = 410}, + [3228] = {.lex_state = 410}, + [3229] = {.lex_state = 780, .external_lex_state = 5}, + [3230] = {.lex_state = 780, .external_lex_state = 5}, + [3231] = {.lex_state = 912, .external_lex_state = 5}, + [3232] = {.lex_state = 912, .external_lex_state = 5}, [3233] = {.lex_state = 410}, - [3234] = {.lex_state = 557}, - [3235] = {.lex_state = 557}, - [3236] = {.lex_state = 557}, - [3237] = {.lex_state = 402}, - [3238] = {.lex_state = 398}, - [3239] = {.lex_state = 423}, - [3240] = {.lex_state = 402}, - [3241] = {.lex_state = 402}, - [3242] = {.lex_state = 633}, - [3243] = {.lex_state = 402}, - [3244] = {.lex_state = 410}, - [3245] = {.lex_state = 402}, - [3246] = {.lex_state = 302}, - [3247] = {.lex_state = 633}, - [3248] = {.lex_state = 633}, - [3249] = {.lex_state = 410}, - [3250] = {.lex_state = 437}, - [3251] = {.lex_state = 410}, - [3252] = {.lex_state = 437}, + [3234] = {.lex_state = 437}, + [3235] = {.lex_state = 410}, + [3236] = {.lex_state = 439, .external_lex_state = 2}, + [3237] = {.lex_state = 302}, + [3238] = {.lex_state = 457, .external_lex_state = 3}, + [3239] = {.lex_state = 461}, + [3240] = {.lex_state = 985, .external_lex_state = 4}, + [3241] = {.lex_state = 988, .external_lex_state = 4}, + [3242] = {.lex_state = 402}, + [3243] = {.lex_state = 684, .external_lex_state = 5}, + [3244] = {.lex_state = 684, .external_lex_state = 5}, + [3245] = {.lex_state = 684, .external_lex_state = 5}, + [3246] = {.lex_state = 684, .external_lex_state = 5}, + [3247] = {.lex_state = 410}, + [3248] = {.lex_state = 410}, + [3249] = {.lex_state = 684, .external_lex_state = 5}, + [3250] = {.lex_state = 684, .external_lex_state = 5}, + [3251] = {.lex_state = 402}, + [3252] = {.lex_state = 407}, [3253] = {.lex_state = 402}, - [3254] = {.lex_state = 302}, - [3255] = {.lex_state = 302}, - [3256] = {.lex_state = 566}, + [3254] = {.lex_state = 915, .external_lex_state = 4}, + [3255] = {.lex_state = 402}, + [3256] = {.lex_state = 407}, [3257] = {.lex_state = 402}, - [3258] = {.lex_state = 566}, - [3259] = {.lex_state = 398}, - [3260] = {.lex_state = 410}, + [3258] = {.lex_state = 915, .external_lex_state = 4}, + [3259] = {.lex_state = 410}, + [3260] = {.lex_state = 437}, [3261] = {.lex_state = 410}, - [3262] = {.lex_state = 302}, - [3263] = {.lex_state = 302}, - [3264] = {.lex_state = 423}, - [3265] = {.lex_state = 398}, - [3266] = {.lex_state = 410}, - [3267] = {.lex_state = 410}, - [3268] = {.lex_state = 302}, - [3269] = {.lex_state = 302}, - [3270] = {.lex_state = 423}, - [3271] = {.lex_state = 398}, - [3272] = {.lex_state = 398}, - [3273] = {.lex_state = 410}, - [3274] = {.lex_state = 410}, - [3275] = {.lex_state = 302}, - [3276] = {.lex_state = 660}, - [3277] = {.lex_state = 410}, + [3262] = {.lex_state = 410}, + [3263] = {.lex_state = 402}, + [3264] = {.lex_state = 783, .external_lex_state = 5}, + [3265] = {.lex_state = 687, .external_lex_state = 5}, + [3266] = {.lex_state = 687, .external_lex_state = 5}, + [3267] = {.lex_state = 457, .external_lex_state = 6}, + [3268] = {.lex_state = 457, .external_lex_state = 3}, + [3269] = {.lex_state = 410}, + [3270] = {.lex_state = 437}, + [3271] = {.lex_state = 410}, + [3272] = {.lex_state = 410}, + [3273] = {.lex_state = 932, .external_lex_state = 4}, + [3274] = {.lex_state = 402}, + [3275] = {.lex_state = 589, .external_lex_state = 5}, + [3276] = {.lex_state = 402}, + [3277] = {.lex_state = 457, .external_lex_state = 6}, [3278] = {.lex_state = 402}, - [3279] = {.lex_state = 302}, - [3280] = {.lex_state = 431}, - [3281] = {.lex_state = 437}, - [3282] = {.lex_state = 654}, - [3283] = {.lex_state = 402}, - [3284] = {.lex_state = 402}, + [3279] = {.lex_state = 410}, + [3280] = {.lex_state = 934, .external_lex_state = 4}, + [3281] = {.lex_state = 936, .external_lex_state = 4}, + [3282] = {.lex_state = 402}, + [3283] = {.lex_state = 793, .external_lex_state = 5}, + [3284] = {.lex_state = 938, .external_lex_state = 5}, [3285] = {.lex_state = 402}, - [3286] = {.lex_state = 410}, - [3287] = {.lex_state = 437}, - [3288] = {.lex_state = 651}, - [3289] = {.lex_state = 651}, - [3290] = {.lex_state = 402}, - [3291] = {.lex_state = 566}, - [3292] = {.lex_state = 402}, - [3293] = {.lex_state = 566}, - [3294] = {.lex_state = 566}, - [3295] = {.lex_state = 410}, - [3296] = {.lex_state = 723}, - [3297] = {.lex_state = 723}, - [3298] = {.lex_state = 566}, - [3299] = {.lex_state = 302}, - [3300] = {.lex_state = 566}, - [3301] = {.lex_state = 566}, - [3302] = {.lex_state = 726}, - [3303] = {.lex_state = 726}, - [3304] = {.lex_state = 302}, - [3305] = {.lex_state = 302}, - [3306] = {.lex_state = 457}, - [3307] = {.lex_state = 798}, - [3308] = {.lex_state = 410}, - [3309] = {.lex_state = 410}, - [3310] = {.lex_state = 437}, - [3311] = {.lex_state = 798}, + [3286] = {.lex_state = 398}, + [3287] = {.lex_state = 423}, + [3288] = {.lex_state = 402}, + [3289] = {.lex_state = 398}, + [3290] = {.lex_state = 398}, + [3291] = {.lex_state = 790, .external_lex_state = 5}, + [3292] = {.lex_state = 410, .external_lex_state = 2}, + [3293] = {.lex_state = 402}, + [3294] = {.lex_state = 431, .external_lex_state = 2}, + [3295] = {.lex_state = 302}, + [3296] = {.lex_state = 302}, + [3297] = {.lex_state = 402}, + [3298] = {.lex_state = 790, .external_lex_state = 5}, + [3299] = {.lex_state = 398}, + [3300] = {.lex_state = 410}, + [3301] = {.lex_state = 410}, + [3302] = {.lex_state = 302}, + [3303] = {.lex_state = 302}, + [3304] = {.lex_state = 423}, + [3305] = {.lex_state = 398}, + [3306] = {.lex_state = 410}, + [3307] = {.lex_state = 410}, + [3308] = {.lex_state = 302}, + [3309] = {.lex_state = 302}, + [3310] = {.lex_state = 423}, + [3311] = {.lex_state = 398}, [3312] = {.lex_state = 398}, - [3313] = {.lex_state = 402}, - [3314] = {.lex_state = 407}, - [3315] = {.lex_state = 402}, - [3316] = {.lex_state = 402}, - [3317] = {.lex_state = 402}, - [3318] = {.lex_state = 581}, - [3319] = {.lex_state = 657}, - [3320] = {.lex_state = 798}, - [3321] = {.lex_state = 798}, - [3322] = {.lex_state = 657}, - [3323] = {.lex_state = 657}, - [3324] = {.lex_state = 657}, - [3325] = {.lex_state = 581}, - [3326] = {.lex_state = 410}, - [3327] = {.lex_state = 410}, + [3313] = {.lex_state = 410}, + [3314] = {.lex_state = 410}, + [3315] = {.lex_state = 302}, + [3316] = {.lex_state = 929, .external_lex_state = 5}, + [3317] = {.lex_state = 991, .external_lex_state = 5}, + [3318] = {.lex_state = 410, .external_lex_state = 2}, + [3319] = {.lex_state = 402}, + [3320] = {.lex_state = 302}, + [3321] = {.lex_state = 431, .external_lex_state = 2}, + [3322] = {.lex_state = 639, .external_lex_state = 6}, + [3323] = {.lex_state = 796, .external_lex_state = 5}, + [3324] = {.lex_state = 796, .external_lex_state = 5}, + [3325] = {.lex_state = 410}, + [3326] = {.lex_state = 796, .external_lex_state = 5}, + [3327] = {.lex_state = 402}, [3328] = {.lex_state = 402}, - [3329] = {.lex_state = 587}, - [3330] = {.lex_state = 846}, - [3331] = {.lex_state = 398}, - [3332] = {.lex_state = 398}, - [3333] = {.lex_state = 402}, - [3334] = {.lex_state = 407}, - [3335] = {.lex_state = 402}, - [3336] = {.lex_state = 402}, - [3337] = {.lex_state = 657}, - [3338] = {.lex_state = 410}, - [3339] = {.lex_state = 846}, - [3340] = {.lex_state = 846}, - [3341] = {.lex_state = 402}, - [3342] = {.lex_state = 431}, + [3329] = {.lex_state = 796, .external_lex_state = 5}, + [3330] = {.lex_state = 584, .external_lex_state = 2}, + [3331] = {.lex_state = 584, .external_lex_state = 2}, + [3332] = {.lex_state = 402}, + [3333] = {.lex_state = 802}, + [3334] = {.lex_state = 690}, + [3335] = {.lex_state = 690}, + [3336] = {.lex_state = 457, .external_lex_state = 6}, + [3337] = {.lex_state = 457, .external_lex_state = 3}, + [3338] = {.lex_state = 302}, + [3339] = {.lex_state = 302}, + [3340] = {.lex_state = 805, .external_lex_state = 7}, + [3341] = {.lex_state = 805, .external_lex_state = 7}, + [3342] = {.lex_state = 302}, [3343] = {.lex_state = 302}, - [3344] = {.lex_state = 657}, - [3345] = {.lex_state = 657}, - [3346] = {.lex_state = 402}, - [3347] = {.lex_state = 657}, - [3348] = {.lex_state = 535}, - [3349] = {.lex_state = 657}, - [3350] = {.lex_state = 657}, - [3351] = {.lex_state = 657}, - [3352] = {.lex_state = 729}, - [3353] = {.lex_state = 729}, - [3354] = {.lex_state = 302}, - [3355] = {.lex_state = 302}, - [3356] = {.lex_state = 457}, - [3357] = {.lex_state = 804}, - [3358] = {.lex_state = 410}, - [3359] = {.lex_state = 410}, - [3360] = {.lex_state = 437}, - [3361] = {.lex_state = 804}, - [3362] = {.lex_state = 398}, - [3363] = {.lex_state = 402}, - [3364] = {.lex_state = 407}, - [3365] = {.lex_state = 402}, - [3366] = {.lex_state = 402}, - [3367] = {.lex_state = 402}, - [3368] = {.lex_state = 581}, - [3369] = {.lex_state = 569}, - [3370] = {.lex_state = 804}, - [3371] = {.lex_state = 804}, - [3372] = {.lex_state = 569}, - [3373] = {.lex_state = 569}, - [3374] = {.lex_state = 569}, - [3375] = {.lex_state = 581}, - [3376] = {.lex_state = 410}, - [3377] = {.lex_state = 410}, + [3344] = {.lex_state = 461}, + [3345] = {.lex_state = 934, .external_lex_state = 7}, + [3346] = {.lex_state = 587, .external_lex_state = 5}, + [3347] = {.lex_state = 589, .external_lex_state = 5}, + [3348] = {.lex_state = 437}, + [3349] = {.lex_state = 439, .external_lex_state = 2}, + [3350] = {.lex_state = 410}, + [3351] = {.lex_state = 410}, + [3352] = {.lex_state = 402}, + [3353] = {.lex_state = 596}, + [3354] = {.lex_state = 808, .external_lex_state = 8}, + [3355] = {.lex_state = 808, .external_lex_state = 8}, + [3356] = {.lex_state = 410, .external_lex_state = 2}, + [3357] = {.lex_state = 402}, + [3358] = {.lex_state = 402}, + [3359] = {.lex_state = 457, .external_lex_state = 3}, + [3360] = {.lex_state = 539}, + [3361] = {.lex_state = 938, .external_lex_state = 8}, + [3362] = {.lex_state = 991, .external_lex_state = 8}, + [3363] = {.lex_state = 938, .external_lex_state = 8}, + [3364] = {.lex_state = 591, .external_lex_state = 8}, + [3365] = {.lex_state = 941, .external_lex_state = 8}, + [3366] = {.lex_state = 941, .external_lex_state = 8}, + [3367] = {.lex_state = 410}, + [3368] = {.lex_state = 437}, + [3369] = {.lex_state = 410}, + [3370] = {.lex_state = 410}, + [3371] = {.lex_state = 410}, + [3372] = {.lex_state = 437}, + [3373] = {.lex_state = 410}, + [3374] = {.lex_state = 410}, + [3375] = {.lex_state = 788, .external_lex_state = 7}, + [3376] = {.lex_state = 402}, + [3377] = {.lex_state = 591, .external_lex_state = 8}, [3378] = {.lex_state = 402}, - [3379] = {.lex_state = 587}, - [3380] = {.lex_state = 569}, - [3381] = {.lex_state = 535}, - [3382] = {.lex_state = 569}, - [3383] = {.lex_state = 569}, - [3384] = {.lex_state = 569}, - [3385] = {.lex_state = 732}, - [3386] = {.lex_state = 732}, - [3387] = {.lex_state = 302}, - [3388] = {.lex_state = 302}, - [3389] = {.lex_state = 457}, - [3390] = {.lex_state = 810}, - [3391] = {.lex_state = 410}, + [3379] = {.lex_state = 457, .external_lex_state = 6}, + [3380] = {.lex_state = 402}, + [3381] = {.lex_state = 410}, + [3382] = {.lex_state = 810, .external_lex_state = 8}, + [3383] = {.lex_state = 810, .external_lex_state = 8}, + [3384] = {.lex_state = 302}, + [3385] = {.lex_state = 302}, + [3386] = {.lex_state = 461}, + [3387] = {.lex_state = 920, .external_lex_state = 7}, + [3388] = {.lex_state = 587, .external_lex_state = 5}, + [3389] = {.lex_state = 589, .external_lex_state = 5}, + [3390] = {.lex_state = 437}, + [3391] = {.lex_state = 439, .external_lex_state = 2}, [3392] = {.lex_state = 410}, - [3393] = {.lex_state = 437}, - [3394] = {.lex_state = 810}, - [3395] = {.lex_state = 398}, - [3396] = {.lex_state = 402}, - [3397] = {.lex_state = 407}, - [3398] = {.lex_state = 402}, + [3393] = {.lex_state = 410}, + [3394] = {.lex_state = 402}, + [3395] = {.lex_state = 596}, + [3396] = {.lex_state = 994, .external_lex_state = 7}, + [3397] = {.lex_state = 398}, + [3398] = {.lex_state = 398}, [3399] = {.lex_state = 402}, - [3400] = {.lex_state = 402}, - [3401] = {.lex_state = 581}, - [3402] = {.lex_state = 660}, - [3403] = {.lex_state = 810}, - [3404] = {.lex_state = 810}, - [3405] = {.lex_state = 660}, - [3406] = {.lex_state = 660}, - [3407] = {.lex_state = 660}, - [3408] = {.lex_state = 581}, - [3409] = {.lex_state = 410}, - [3410] = {.lex_state = 410}, - [3411] = {.lex_state = 402}, - [3412] = {.lex_state = 587}, - [3413] = {.lex_state = 660}, - [3414] = {.lex_state = 535}, - [3415] = {.lex_state = 660}, - [3416] = {.lex_state = 660}, - [3417] = {.lex_state = 660}, - [3418] = {.lex_state = 660}, - [3419] = {.lex_state = 816}, - [3420] = {.lex_state = 816}, - [3421] = {.lex_state = 410}, - [3422] = {.lex_state = 437}, - [3423] = {.lex_state = 410}, - [3424] = {.lex_state = 410}, - [3425] = {.lex_state = 572}, - [3426] = {.lex_state = 572}, - [3427] = {.lex_state = 572}, - [3428] = {.lex_state = 517}, - [3429] = {.lex_state = 402}, + [3400] = {.lex_state = 407}, + [3401] = {.lex_state = 402}, + [3402] = {.lex_state = 402}, + [3403] = {.lex_state = 790, .external_lex_state = 8}, + [3404] = {.lex_state = 790, .external_lex_state = 8}, + [3405] = {.lex_state = 410, .external_lex_state = 2}, + [3406] = {.lex_state = 994, .external_lex_state = 7}, + [3407] = {.lex_state = 994, .external_lex_state = 7}, + [3408] = {.lex_state = 402}, + [3409] = {.lex_state = 431, .external_lex_state = 2}, + [3410] = {.lex_state = 997, .external_lex_state = 8}, + [3411] = {.lex_state = 398}, + [3412] = {.lex_state = 402}, + [3413] = {.lex_state = 407}, + [3414] = {.lex_state = 410}, + [3415] = {.lex_state = 410}, + [3416] = {.lex_state = 302}, + [3417] = {.lex_state = 402}, + [3418] = {.lex_state = 402}, + [3419] = {.lex_state = 926, .external_lex_state = 8}, + [3420] = {.lex_state = 926, .external_lex_state = 8}, + [3421] = {.lex_state = 926, .external_lex_state = 8}, + [3422] = {.lex_state = 997, .external_lex_state = 8}, + [3423] = {.lex_state = 997, .external_lex_state = 8}, + [3424] = {.lex_state = 302}, + [3425] = {.lex_state = 423}, + [3426] = {.lex_state = 1000, .external_lex_state = 8}, + [3427] = {.lex_state = 398}, + [3428] = {.lex_state = 402}, + [3429] = {.lex_state = 407}, [3430] = {.lex_state = 410}, - [3431] = {.lex_state = 777}, - [3432] = {.lex_state = 780}, + [3431] = {.lex_state = 410}, + [3432] = {.lex_state = 302}, [3433] = {.lex_state = 402}, - [3434] = {.lex_state = 525}, - [3435] = {.lex_state = 642}, - [3436] = {.lex_state = 642}, - [3437] = {.lex_state = 783}, - [3438] = {.lex_state = 786}, - [3439] = {.lex_state = 402}, - [3440] = {.lex_state = 554}, - [3441] = {.lex_state = 554}, - [3442] = {.lex_state = 402}, - [3443] = {.lex_state = 735}, - [3444] = {.lex_state = 302}, - [3445] = {.lex_state = 663}, - [3446] = {.lex_state = 663}, - [3447] = {.lex_state = 402}, - [3448] = {.lex_state = 581}, - [3449] = {.lex_state = 439}, - [3450] = {.lex_state = 410}, - [3451] = {.lex_state = 439}, - [3452] = {.lex_state = 410}, - [3453] = {.lex_state = 410}, - [3454] = {.lex_state = 402}, - [3455] = {.lex_state = 554}, - [3456] = {.lex_state = 557}, - [3457] = {.lex_state = 402}, - [3458] = {.lex_state = 398}, - [3459] = {.lex_state = 423}, + [3434] = {.lex_state = 402}, + [3435] = {.lex_state = 793, .external_lex_state = 8}, + [3436] = {.lex_state = 793, .external_lex_state = 8}, + [3437] = {.lex_state = 793, .external_lex_state = 8}, + [3438] = {.lex_state = 1000, .external_lex_state = 8}, + [3439] = {.lex_state = 1000, .external_lex_state = 8}, + [3440] = {.lex_state = 302}, + [3441] = {.lex_state = 423}, + [3442] = {.lex_state = 793, .external_lex_state = 8}, + [3443] = {.lex_state = 1003, .external_lex_state = 7}, + [3444] = {.lex_state = 398}, + [3445] = {.lex_state = 398}, + [3446] = {.lex_state = 402}, + [3447] = {.lex_state = 407}, + [3448] = {.lex_state = 410}, + [3449] = {.lex_state = 410}, + [3450] = {.lex_state = 302}, + [3451] = {.lex_state = 402}, + [3452] = {.lex_state = 402}, + [3453] = {.lex_state = 944, .external_lex_state = 8}, + [3454] = {.lex_state = 991, .external_lex_state = 8}, + [3455] = {.lex_state = 991, .external_lex_state = 8}, + [3456] = {.lex_state = 991, .external_lex_state = 8}, + [3457] = {.lex_state = 410, .external_lex_state = 2}, + [3458] = {.lex_state = 1003, .external_lex_state = 7}, + [3459] = {.lex_state = 1003, .external_lex_state = 7}, [3460] = {.lex_state = 402}, - [3461] = {.lex_state = 398}, - [3462] = {.lex_state = 398}, - [3463] = {.lex_state = 525}, - [3464] = {.lex_state = 410}, - [3465] = {.lex_state = 402}, - [3466] = {.lex_state = 431}, - [3467] = {.lex_state = 302}, - [3468] = {.lex_state = 302}, - [3469] = {.lex_state = 525}, - [3470] = {.lex_state = 402}, - [3471] = {.lex_state = 525}, - [3472] = {.lex_state = 398}, - [3473] = {.lex_state = 410}, - [3474] = {.lex_state = 410}, - [3475] = {.lex_state = 302}, - [3476] = {.lex_state = 302}, - [3477] = {.lex_state = 423}, - [3478] = {.lex_state = 398}, - [3479] = {.lex_state = 410}, - [3480] = {.lex_state = 410}, - [3481] = {.lex_state = 302}, - [3482] = {.lex_state = 302}, - [3483] = {.lex_state = 423}, - [3484] = {.lex_state = 398}, - [3485] = {.lex_state = 398}, - [3486] = {.lex_state = 410}, - [3487] = {.lex_state = 410}, - [3488] = {.lex_state = 302}, - [3489] = {.lex_state = 819}, - [3490] = {.lex_state = 645}, - [3491] = {.lex_state = 410}, - [3492] = {.lex_state = 402}, - [3493] = {.lex_state = 302}, - [3494] = {.lex_state = 431}, - [3495] = {.lex_state = 738}, - [3496] = {.lex_state = 738}, - [3497] = {.lex_state = 410}, - [3498] = {.lex_state = 738}, - [3499] = {.lex_state = 410}, - [3500] = {.lex_state = 402}, + [3461] = {.lex_state = 302}, + [3462] = {.lex_state = 431, .external_lex_state = 2}, + [3463] = {.lex_state = 639, .external_lex_state = 6}, + [3464] = {.lex_state = 799, .external_lex_state = 8}, + [3465] = {.lex_state = 799, .external_lex_state = 8}, + [3466] = {.lex_state = 410}, + [3467] = {.lex_state = 799, .external_lex_state = 8}, + [3468] = {.lex_state = 591, .external_lex_state = 8}, + [3469] = {.lex_state = 402}, + [3470] = {.lex_state = 410}, + [3471] = {.lex_state = 410, .external_lex_state = 2}, + [3472] = {.lex_state = 402}, + [3473] = {.lex_state = 402}, + [3474] = {.lex_state = 645}, + [3475] = {.lex_state = 402}, + [3476] = {.lex_state = 851, .external_lex_state = 2}, + [3477] = {.lex_state = 854, .external_lex_state = 2}, + [3478] = {.lex_state = 402}, + [3479] = {.lex_state = 529}, + [3480] = {.lex_state = 651}, + [3481] = {.lex_state = 857, .external_lex_state = 2}, + [3482] = {.lex_state = 860, .external_lex_state = 2}, + [3483] = {.lex_state = 402}, + [3484] = {.lex_state = 557}, + [3485] = {.lex_state = 402}, + [3486] = {.lex_state = 402}, + [3487] = {.lex_state = 783}, + [3488] = {.lex_state = 687}, + [3489] = {.lex_state = 687}, + [3490] = {.lex_state = 457, .external_lex_state = 6}, + [3491] = {.lex_state = 457, .external_lex_state = 3}, + [3492] = {.lex_state = 410}, + [3493] = {.lex_state = 437}, + [3494] = {.lex_state = 410}, + [3495] = {.lex_state = 608, .external_lex_state = 2}, + [3496] = {.lex_state = 402}, + [3497] = {.lex_state = 398}, + [3498] = {.lex_state = 398}, + [3499] = {.lex_state = 651}, + [3500] = {.lex_state = 410, .external_lex_state = 2}, [3501] = {.lex_state = 402}, - [3502] = {.lex_state = 738}, - [3503] = {.lex_state = 535}, - [3504] = {.lex_state = 819}, - [3505] = {.lex_state = 738}, - [3506] = {.lex_state = 741}, - [3507] = {.lex_state = 741}, + [3502] = {.lex_state = 431, .external_lex_state = 2}, + [3503] = {.lex_state = 302}, + [3504] = {.lex_state = 402}, + [3505] = {.lex_state = 651}, + [3506] = {.lex_state = 402}, + [3507] = {.lex_state = 557}, [3508] = {.lex_state = 402}, - [3509] = {.lex_state = 402}, - [3510] = {.lex_state = 402}, - [3511] = {.lex_state = 666}, + [3509] = {.lex_state = 654}, + [3510] = {.lex_state = 702, .external_lex_state = 2}, + [3511] = {.lex_state = 402}, [3512] = {.lex_state = 402}, - [3513] = {.lex_state = 437}, - [3514] = {.lex_state = 402}, - [3515] = {.lex_state = 744}, - [3516] = {.lex_state = 302}, - [3517] = {.lex_state = 666}, - [3518] = {.lex_state = 666}, - [3519] = {.lex_state = 302}, - [3520] = {.lex_state = 302}, - [3521] = {.lex_state = 410}, - [3522] = {.lex_state = 410}, - [3523] = {.lex_state = 402}, - [3524] = {.lex_state = 554}, - [3525] = {.lex_state = 633}, - [3526] = {.lex_state = 402}, - [3527] = {.lex_state = 398}, - [3528] = {.lex_state = 423}, - [3529] = {.lex_state = 402}, - [3530] = {.lex_state = 402}, - [3531] = {.lex_state = 663}, - [3532] = {.lex_state = 402}, - [3533] = {.lex_state = 410}, - [3534] = {.lex_state = 398}, - [3535] = {.lex_state = 402}, - [3536] = {.lex_state = 581}, - [3537] = {.lex_state = 410}, - [3538] = {.lex_state = 581}, - [3539] = {.lex_state = 402}, - [3540] = {.lex_state = 410}, - [3541] = {.lex_state = 410}, + [3513] = {.lex_state = 402}, + [3514] = {.lex_state = 410}, + [3515] = {.lex_state = 437}, + [3516] = {.lex_state = 614}, + [3517] = {.lex_state = 614}, + [3518] = {.lex_state = 410}, + [3519] = {.lex_state = 813, .external_lex_state = 2}, + [3520] = {.lex_state = 813, .external_lex_state = 2}, + [3521] = {.lex_state = 614}, + [3522] = {.lex_state = 614}, + [3523] = {.lex_state = 457, .external_lex_state = 6}, + [3524] = {.lex_state = 457, .external_lex_state = 3}, + [3525] = {.lex_state = 816}, + [3526] = {.lex_state = 816}, + [3527] = {.lex_state = 302}, + [3528] = {.lex_state = 302}, + [3529] = {.lex_state = 461}, + [3530] = {.lex_state = 947, .external_lex_state = 2}, + [3531] = {.lex_state = 587, .external_lex_state = 5}, + [3532] = {.lex_state = 589, .external_lex_state = 5}, + [3533] = {.lex_state = 437}, + [3534] = {.lex_state = 439, .external_lex_state = 2}, + [3535] = {.lex_state = 410}, + [3536] = {.lex_state = 410}, + [3537] = {.lex_state = 402}, + [3538] = {.lex_state = 596}, + [3539] = {.lex_state = 1006, .external_lex_state = 2}, + [3540] = {.lex_state = 398}, + [3541] = {.lex_state = 398}, [3542] = {.lex_state = 402}, - [3543] = {.lex_state = 402}, - [3544] = {.lex_state = 633}, - [3545] = {.lex_state = 535}, - [3546] = {.lex_state = 554}, - [3547] = {.lex_state = 633}, - [3548] = {.lex_state = 402}, - [3549] = {.lex_state = 581}, - [3550] = {.lex_state = 439}, - [3551] = {.lex_state = 525}, - [3552] = {.lex_state = 402}, - [3553] = {.lex_state = 525}, - [3554] = {.lex_state = 410}, - [3555] = {.lex_state = 439}, - [3556] = {.lex_state = 777}, - [3557] = {.lex_state = 780}, - [3558] = {.lex_state = 402}, - [3559] = {.lex_state = 525}, - [3560] = {.lex_state = 642}, - [3561] = {.lex_state = 642}, - [3562] = {.lex_state = 439}, - [3563] = {.lex_state = 783}, - [3564] = {.lex_state = 786}, - [3565] = {.lex_state = 402}, - [3566] = {.lex_state = 554}, - [3567] = {.lex_state = 554}, - [3568] = {.lex_state = 402}, - [3569] = {.lex_state = 302}, - [3570] = {.lex_state = 663}, - [3571] = {.lex_state = 663}, - [3572] = {.lex_state = 402}, + [3543] = {.lex_state = 407}, + [3544] = {.lex_state = 402}, + [3545] = {.lex_state = 402}, + [3546] = {.lex_state = 705}, + [3547] = {.lex_state = 705}, + [3548] = {.lex_state = 410, .external_lex_state = 2}, + [3549] = {.lex_state = 1006, .external_lex_state = 2}, + [3550] = {.lex_state = 1006, .external_lex_state = 2}, + [3551] = {.lex_state = 402}, + [3552] = {.lex_state = 431, .external_lex_state = 2}, + [3553] = {.lex_state = 302}, + [3554] = {.lex_state = 705}, + [3555] = {.lex_state = 705}, + [3556] = {.lex_state = 402}, + [3557] = {.lex_state = 457, .external_lex_state = 3}, + [3558] = {.lex_state = 539}, + [3559] = {.lex_state = 705}, + [3560] = {.lex_state = 705}, + [3561] = {.lex_state = 705}, + [3562] = {.lex_state = 819}, + [3563] = {.lex_state = 819}, + [3564] = {.lex_state = 302}, + [3565] = {.lex_state = 302}, + [3566] = {.lex_state = 461}, + [3567] = {.lex_state = 953, .external_lex_state = 2}, + [3568] = {.lex_state = 587, .external_lex_state = 5}, + [3569] = {.lex_state = 589, .external_lex_state = 5}, + [3570] = {.lex_state = 437}, + [3571] = {.lex_state = 439, .external_lex_state = 2}, + [3572] = {.lex_state = 410}, [3573] = {.lex_state = 410}, - [3574] = {.lex_state = 437}, - [3575] = {.lex_state = 410}, - [3576] = {.lex_state = 599}, - [3577] = {.lex_state = 525}, - [3578] = {.lex_state = 402}, - [3579] = {.lex_state = 302}, - [3580] = {.lex_state = 302}, - [3581] = {.lex_state = 525}, + [3574] = {.lex_state = 402}, + [3575] = {.lex_state = 596}, + [3576] = {.lex_state = 1009, .external_lex_state = 2}, + [3577] = {.lex_state = 398}, + [3578] = {.lex_state = 398}, + [3579] = {.lex_state = 402}, + [3580] = {.lex_state = 407}, + [3581] = {.lex_state = 402}, [3582] = {.lex_state = 402}, - [3583] = {.lex_state = 525}, - [3584] = {.lex_state = 398}, - [3585] = {.lex_state = 410}, - [3586] = {.lex_state = 410}, - [3587] = {.lex_state = 302}, - [3588] = {.lex_state = 302}, - [3589] = {.lex_state = 423}, - [3590] = {.lex_state = 398}, - [3591] = {.lex_state = 410}, - [3592] = {.lex_state = 410}, - [3593] = {.lex_state = 302}, - [3594] = {.lex_state = 302}, - [3595] = {.lex_state = 423}, - [3596] = {.lex_state = 398}, - [3597] = {.lex_state = 398}, - [3598] = {.lex_state = 410}, - [3599] = {.lex_state = 410}, - [3600] = {.lex_state = 302}, - [3601] = {.lex_state = 645}, - [3602] = {.lex_state = 410}, - [3603] = {.lex_state = 402}, - [3604] = {.lex_state = 302}, - [3605] = {.lex_state = 431}, - [3606] = {.lex_state = 402}, - [3607] = {.lex_state = 402}, - [3608] = {.lex_state = 525}, - [3609] = {.lex_state = 302}, - [3610] = {.lex_state = 525}, - [3611] = {.lex_state = 525}, - [3612] = {.lex_state = 398}, - [3613] = {.lex_state = 402}, - [3614] = {.lex_state = 581}, - [3615] = {.lex_state = 642}, - [3616] = {.lex_state = 581}, - [3617] = {.lex_state = 402}, - [3618] = {.lex_state = 398}, - [3619] = {.lex_state = 398}, - [3620] = {.lex_state = 642}, + [3583] = {.lex_state = 618}, + [3584] = {.lex_state = 618}, + [3585] = {.lex_state = 410, .external_lex_state = 2}, + [3586] = {.lex_state = 1009, .external_lex_state = 2}, + [3587] = {.lex_state = 1009, .external_lex_state = 2}, + [3588] = {.lex_state = 402}, + [3589] = {.lex_state = 431, .external_lex_state = 2}, + [3590] = {.lex_state = 402}, + [3591] = {.lex_state = 457, .external_lex_state = 3}, + [3592] = {.lex_state = 539}, + [3593] = {.lex_state = 618}, + [3594] = {.lex_state = 618}, + [3595] = {.lex_state = 618}, + [3596] = {.lex_state = 822, .external_lex_state = 2}, + [3597] = {.lex_state = 822, .external_lex_state = 2}, + [3598] = {.lex_state = 302}, + [3599] = {.lex_state = 302}, + [3600] = {.lex_state = 461}, + [3601] = {.lex_state = 959, .external_lex_state = 2}, + [3602] = {.lex_state = 587, .external_lex_state = 5}, + [3603] = {.lex_state = 589, .external_lex_state = 5}, + [3604] = {.lex_state = 437}, + [3605] = {.lex_state = 439, .external_lex_state = 2}, + [3606] = {.lex_state = 410}, + [3607] = {.lex_state = 410}, + [3608] = {.lex_state = 402}, + [3609] = {.lex_state = 596}, + [3610] = {.lex_state = 708}, + [3611] = {.lex_state = 457, .external_lex_state = 3}, + [3612] = {.lex_state = 539}, + [3613] = {.lex_state = 708}, + [3614] = {.lex_state = 708}, + [3615] = {.lex_state = 708}, + [3616] = {.lex_state = 708}, + [3617] = {.lex_state = 965}, + [3618] = {.lex_state = 965}, + [3619] = {.lex_state = 410}, + [3620] = {.lex_state = 437}, [3621] = {.lex_state = 410}, - [3622] = {.lex_state = 402}, - [3623] = {.lex_state = 431}, - [3624] = {.lex_state = 302}, - [3625] = {.lex_state = 642}, + [3622] = {.lex_state = 410}, + [3623] = {.lex_state = 621}, + [3624] = {.lex_state = 621}, + [3625] = {.lex_state = 714, .external_lex_state = 2}, [3626] = {.lex_state = 402}, - [3627] = {.lex_state = 642}, - [3628] = {.lex_state = 535}, - [3629] = {.lex_state = 642}, - [3630] = {.lex_state = 642}, - [3631] = {.lex_state = 398}, - [3632] = {.lex_state = 402}, - [3633] = {.lex_state = 581}, - [3634] = {.lex_state = 554}, - [3635] = {.lex_state = 581}, - [3636] = {.lex_state = 402}, - [3637] = {.lex_state = 554}, - [3638] = {.lex_state = 535}, - [3639] = {.lex_state = 554}, - [3640] = {.lex_state = 554}, - [3641] = {.lex_state = 398}, - [3642] = {.lex_state = 402}, - [3643] = {.lex_state = 581}, - [3644] = {.lex_state = 645}, - [3645] = {.lex_state = 581}, - [3646] = {.lex_state = 402}, - [3647] = {.lex_state = 645}, - [3648] = {.lex_state = 535}, - [3649] = {.lex_state = 645}, - [3650] = {.lex_state = 645}, - [3651] = {.lex_state = 557}, - [3652] = {.lex_state = 402}, - [3653] = {.lex_state = 302}, - [3654] = {.lex_state = 302}, - [3655] = {.lex_state = 605}, - [3656] = {.lex_state = 402}, - [3657] = {.lex_state = 605}, - [3658] = {.lex_state = 398}, - [3659] = {.lex_state = 410}, - [3660] = {.lex_state = 410}, - [3661] = {.lex_state = 302}, - [3662] = {.lex_state = 302}, - [3663] = {.lex_state = 423}, - [3664] = {.lex_state = 398}, - [3665] = {.lex_state = 410}, - [3666] = {.lex_state = 410}, - [3667] = {.lex_state = 302}, - [3668] = {.lex_state = 302}, - [3669] = {.lex_state = 423}, - [3670] = {.lex_state = 398}, - [3671] = {.lex_state = 398}, - [3672] = {.lex_state = 410}, - [3673] = {.lex_state = 410}, - [3674] = {.lex_state = 302}, - [3675] = {.lex_state = 684}, - [3676] = {.lex_state = 410}, - [3677] = {.lex_state = 402}, - [3678] = {.lex_state = 302}, - [3679] = {.lex_state = 431}, - [3680] = {.lex_state = 678}, + [3627] = {.lex_state = 402}, + [3628] = {.lex_state = 402}, + [3629] = {.lex_state = 410}, + [3630] = {.lex_state = 437}, + [3631] = {.lex_state = 536}, + [3632] = {.lex_state = 536}, + [3633] = {.lex_state = 410}, + [3634] = {.lex_state = 825, .external_lex_state = 2}, + [3635] = {.lex_state = 825, .external_lex_state = 2}, + [3636] = {.lex_state = 536}, + [3637] = {.lex_state = 851, .external_lex_state = 2}, + [3638] = {.lex_state = 854, .external_lex_state = 2}, + [3639] = {.lex_state = 402}, + [3640] = {.lex_state = 651}, + [3641] = {.lex_state = 402}, + [3642] = {.lex_state = 407}, + [3643] = {.lex_state = 402}, + [3644] = {.lex_state = 968, .external_lex_state = 2}, + [3645] = {.lex_state = 402}, + [3646] = {.lex_state = 407}, + [3647] = {.lex_state = 402}, + [3648] = {.lex_state = 968, .external_lex_state = 2}, + [3649] = {.lex_state = 410}, + [3650] = {.lex_state = 437}, + [3651] = {.lex_state = 410}, + [3652] = {.lex_state = 410}, + [3653] = {.lex_state = 402}, + [3654] = {.lex_state = 651}, + [3655] = {.lex_state = 651}, + [3656] = {.lex_state = 651}, + [3657] = {.lex_state = 457, .external_lex_state = 6}, + [3658] = {.lex_state = 457, .external_lex_state = 3}, + [3659] = {.lex_state = 720, .external_lex_state = 2}, + [3660] = {.lex_state = 402}, + [3661] = {.lex_state = 402}, + [3662] = {.lex_state = 402}, + [3663] = {.lex_state = 410}, + [3664] = {.lex_state = 437}, + [3665] = {.lex_state = 419}, + [3666] = {.lex_state = 419}, + [3667] = {.lex_state = 410}, + [3668] = {.lex_state = 828, .external_lex_state = 2}, + [3669] = {.lex_state = 828, .external_lex_state = 2}, + [3670] = {.lex_state = 419}, + [3671] = {.lex_state = 857, .external_lex_state = 2}, + [3672] = {.lex_state = 860, .external_lex_state = 2}, + [3673] = {.lex_state = 402}, + [3674] = {.lex_state = 557}, + [3675] = {.lex_state = 402}, + [3676] = {.lex_state = 557}, + [3677] = {.lex_state = 557}, + [3678] = {.lex_state = 457, .external_lex_state = 6}, + [3679] = {.lex_state = 457, .external_lex_state = 3}, + [3680] = {.lex_state = 726, .external_lex_state = 2}, [3681] = {.lex_state = 402}, [3682] = {.lex_state = 402}, [3683] = {.lex_state = 402}, [3684] = {.lex_state = 410}, [3685] = {.lex_state = 437}, - [3686] = {.lex_state = 675}, - [3687] = {.lex_state = 675}, - [3688] = {.lex_state = 402}, - [3689] = {.lex_state = 605}, - [3690] = {.lex_state = 402}, - [3691] = {.lex_state = 605}, - [3692] = {.lex_state = 605}, - [3693] = {.lex_state = 410}, - [3694] = {.lex_state = 747}, - [3695] = {.lex_state = 747}, - [3696] = {.lex_state = 605}, - [3697] = {.lex_state = 302}, - [3698] = {.lex_state = 605}, - [3699] = {.lex_state = 605}, - [3700] = {.lex_state = 750}, - [3701] = {.lex_state = 750}, - [3702] = {.lex_state = 302}, - [3703] = {.lex_state = 302}, - [3704] = {.lex_state = 457}, - [3705] = {.lex_state = 822}, - [3706] = {.lex_state = 410}, - [3707] = {.lex_state = 410}, - [3708] = {.lex_state = 437}, - [3709] = {.lex_state = 822}, - [3710] = {.lex_state = 398}, - [3711] = {.lex_state = 402}, - [3712] = {.lex_state = 407}, - [3713] = {.lex_state = 402}, + [3686] = {.lex_state = 636}, + [3687] = {.lex_state = 636}, + [3688] = {.lex_state = 410}, + [3689] = {.lex_state = 636}, + [3690] = {.lex_state = 863, .external_lex_state = 2}, + [3691] = {.lex_state = 866, .external_lex_state = 2}, + [3692] = {.lex_state = 402}, + [3693] = {.lex_state = 654}, + [3694] = {.lex_state = 402}, + [3695] = {.lex_state = 398}, + [3696] = {.lex_state = 423}, + [3697] = {.lex_state = 654}, + [3698] = {.lex_state = 654}, + [3699] = {.lex_state = 457, .external_lex_state = 6}, + [3700] = {.lex_state = 457, .external_lex_state = 3}, + [3701] = {.lex_state = 410}, + [3702] = {.lex_state = 437}, + [3703] = {.lex_state = 410}, + [3704] = {.lex_state = 410}, + [3705] = {.lex_state = 833, .external_lex_state = 7}, + [3706] = {.lex_state = 402}, + [3707] = {.lex_state = 732, .external_lex_state = 8}, + [3708] = {.lex_state = 402}, + [3709] = {.lex_state = 457, .external_lex_state = 6}, + [3710] = {.lex_state = 402}, + [3711] = {.lex_state = 410}, + [3712] = {.lex_state = 402}, + [3713] = {.lex_state = 407}, [3714] = {.lex_state = 402}, - [3715] = {.lex_state = 402}, - [3716] = {.lex_state = 581}, - [3717] = {.lex_state = 681}, - [3718] = {.lex_state = 822}, - [3719] = {.lex_state = 822}, - [3720] = {.lex_state = 681}, - [3721] = {.lex_state = 681}, - [3722] = {.lex_state = 681}, - [3723] = {.lex_state = 581}, - [3724] = {.lex_state = 410}, - [3725] = {.lex_state = 410}, - [3726] = {.lex_state = 402}, - [3727] = {.lex_state = 587}, - [3728] = {.lex_state = 849}, - [3729] = {.lex_state = 398}, - [3730] = {.lex_state = 398}, - [3731] = {.lex_state = 402}, - [3732] = {.lex_state = 407}, - [3733] = {.lex_state = 402}, - [3734] = {.lex_state = 402}, - [3735] = {.lex_state = 681}, - [3736] = {.lex_state = 410}, - [3737] = {.lex_state = 849}, - [3738] = {.lex_state = 849}, - [3739] = {.lex_state = 402}, - [3740] = {.lex_state = 431}, + [3715] = {.lex_state = 602, .external_lex_state = 7}, + [3716] = {.lex_state = 402}, + [3717] = {.lex_state = 407}, + [3718] = {.lex_state = 402}, + [3719] = {.lex_state = 602, .external_lex_state = 7}, + [3720] = {.lex_state = 410}, + [3721] = {.lex_state = 437}, + [3722] = {.lex_state = 410}, + [3723] = {.lex_state = 410}, + [3724] = {.lex_state = 402}, + [3725] = {.lex_state = 732, .external_lex_state = 8}, + [3726] = {.lex_state = 790, .external_lex_state = 8}, + [3727] = {.lex_state = 790, .external_lex_state = 8}, + [3728] = {.lex_state = 790, .external_lex_state = 8}, + [3729] = {.lex_state = 790, .external_lex_state = 8}, + [3730] = {.lex_state = 639, .external_lex_state = 6}, + [3731] = {.lex_state = 790, .external_lex_state = 8}, + [3732] = {.lex_state = 790, .external_lex_state = 8}, + [3733] = {.lex_state = 410}, + [3734] = {.lex_state = 790, .external_lex_state = 8}, + [3735] = {.lex_state = 627, .external_lex_state = 8}, + [3736] = {.lex_state = 627, .external_lex_state = 8}, + [3737] = {.lex_state = 410}, + [3738] = {.lex_state = 437}, + [3739] = {.lex_state = 410}, + [3740] = {.lex_state = 439, .external_lex_state = 2}, [3741] = {.lex_state = 302}, - [3742] = {.lex_state = 681}, - [3743] = {.lex_state = 681}, - [3744] = {.lex_state = 402}, - [3745] = {.lex_state = 681}, - [3746] = {.lex_state = 535}, - [3747] = {.lex_state = 681}, - [3748] = {.lex_state = 681}, - [3749] = {.lex_state = 681}, - [3750] = {.lex_state = 753}, - [3751] = {.lex_state = 753}, - [3752] = {.lex_state = 302}, - [3753] = {.lex_state = 302}, - [3754] = {.lex_state = 457}, - [3755] = {.lex_state = 828}, - [3756] = {.lex_state = 410}, - [3757] = {.lex_state = 410}, - [3758] = {.lex_state = 437}, - [3759] = {.lex_state = 828}, - [3760] = {.lex_state = 398}, - [3761] = {.lex_state = 402}, - [3762] = {.lex_state = 407}, - [3763] = {.lex_state = 402}, - [3764] = {.lex_state = 402}, - [3765] = {.lex_state = 402}, - [3766] = {.lex_state = 581}, - [3767] = {.lex_state = 609}, - [3768] = {.lex_state = 828}, - [3769] = {.lex_state = 828}, - [3770] = {.lex_state = 609}, - [3771] = {.lex_state = 609}, - [3772] = {.lex_state = 609}, - [3773] = {.lex_state = 581}, - [3774] = {.lex_state = 410}, - [3775] = {.lex_state = 410}, + [3742] = {.lex_state = 457, .external_lex_state = 3}, + [3743] = {.lex_state = 461}, + [3744] = {.lex_state = 1012, .external_lex_state = 7}, + [3745] = {.lex_state = 1014, .external_lex_state = 7}, + [3746] = {.lex_state = 402}, + [3747] = {.lex_state = 790, .external_lex_state = 8}, + [3748] = {.lex_state = 926, .external_lex_state = 8}, + [3749] = {.lex_state = 926, .external_lex_state = 8}, + [3750] = {.lex_state = 926, .external_lex_state = 8}, + [3751] = {.lex_state = 926, .external_lex_state = 8}, + [3752] = {.lex_state = 410}, + [3753] = {.lex_state = 410}, + [3754] = {.lex_state = 835, .external_lex_state = 8}, + [3755] = {.lex_state = 835, .external_lex_state = 8}, + [3756] = {.lex_state = 630, .external_lex_state = 8}, + [3757] = {.lex_state = 630, .external_lex_state = 8}, + [3758] = {.lex_state = 410}, + [3759] = {.lex_state = 437}, + [3760] = {.lex_state = 410}, + [3761] = {.lex_state = 439, .external_lex_state = 2}, + [3762] = {.lex_state = 302}, + [3763] = {.lex_state = 457, .external_lex_state = 3}, + [3764] = {.lex_state = 461}, + [3765] = {.lex_state = 1016, .external_lex_state = 7}, + [3766] = {.lex_state = 1018, .external_lex_state = 7}, + [3767] = {.lex_state = 402}, + [3768] = {.lex_state = 793, .external_lex_state = 8}, + [3769] = {.lex_state = 793, .external_lex_state = 8}, + [3770] = {.lex_state = 793, .external_lex_state = 8}, + [3771] = {.lex_state = 793, .external_lex_state = 8}, + [3772] = {.lex_state = 410}, + [3773] = {.lex_state = 410}, + [3774] = {.lex_state = 736, .external_lex_state = 8}, + [3775] = {.lex_state = 736, .external_lex_state = 8}, [3776] = {.lex_state = 402}, - [3777] = {.lex_state = 587}, - [3778] = {.lex_state = 852}, - [3779] = {.lex_state = 398}, - [3780] = {.lex_state = 398}, - [3781] = {.lex_state = 402}, - [3782] = {.lex_state = 407}, - [3783] = {.lex_state = 402}, - [3784] = {.lex_state = 402}, - [3785] = {.lex_state = 609}, + [3777] = {.lex_state = 407}, + [3778] = {.lex_state = 402}, + [3779] = {.lex_state = 633, .external_lex_state = 7}, + [3780] = {.lex_state = 402}, + [3781] = {.lex_state = 407}, + [3782] = {.lex_state = 402}, + [3783] = {.lex_state = 633, .external_lex_state = 7}, + [3784] = {.lex_state = 410}, + [3785] = {.lex_state = 437}, [3786] = {.lex_state = 410}, - [3787] = {.lex_state = 852}, - [3788] = {.lex_state = 852}, - [3789] = {.lex_state = 402}, - [3790] = {.lex_state = 431}, - [3791] = {.lex_state = 402}, - [3792] = {.lex_state = 609}, - [3793] = {.lex_state = 535}, - [3794] = {.lex_state = 609}, - [3795] = {.lex_state = 609}, - [3796] = {.lex_state = 609}, - [3797] = {.lex_state = 756}, - [3798] = {.lex_state = 756}, - [3799] = {.lex_state = 302}, - [3800] = {.lex_state = 302}, - [3801] = {.lex_state = 457}, - [3802] = {.lex_state = 834}, - [3803] = {.lex_state = 410}, - [3804] = {.lex_state = 410}, - [3805] = {.lex_state = 437}, - [3806] = {.lex_state = 834}, - [3807] = {.lex_state = 398}, - [3808] = {.lex_state = 402}, - [3809] = {.lex_state = 407}, - [3810] = {.lex_state = 402}, - [3811] = {.lex_state = 402}, - [3812] = {.lex_state = 402}, - [3813] = {.lex_state = 581}, - [3814] = {.lex_state = 684}, - [3815] = {.lex_state = 834}, - [3816] = {.lex_state = 834}, - [3817] = {.lex_state = 684}, - [3818] = {.lex_state = 684}, - [3819] = {.lex_state = 684}, - [3820] = {.lex_state = 581}, - [3821] = {.lex_state = 410}, - [3822] = {.lex_state = 410}, - [3823] = {.lex_state = 402}, - [3824] = {.lex_state = 587}, - [3825] = {.lex_state = 684}, - [3826] = {.lex_state = 535}, - [3827] = {.lex_state = 684}, - [3828] = {.lex_state = 684}, - [3829] = {.lex_state = 684}, - [3830] = {.lex_state = 684}, - [3831] = {.lex_state = 840}, - [3832] = {.lex_state = 840}, + [3787] = {.lex_state = 439, .external_lex_state = 2}, + [3788] = {.lex_state = 302}, + [3789] = {.lex_state = 457, .external_lex_state = 3}, + [3790] = {.lex_state = 461}, + [3791] = {.lex_state = 1020, .external_lex_state = 7}, + [3792] = {.lex_state = 1022, .external_lex_state = 7}, + [3793] = {.lex_state = 402}, + [3794] = {.lex_state = 793, .external_lex_state = 8}, + [3795] = {.lex_state = 991, .external_lex_state = 8}, + [3796] = {.lex_state = 991, .external_lex_state = 8}, + [3797] = {.lex_state = 991, .external_lex_state = 8}, + [3798] = {.lex_state = 410}, + [3799] = {.lex_state = 410}, + [3800] = {.lex_state = 402}, + [3801] = {.lex_state = 837, .external_lex_state = 8}, + [3802] = {.lex_state = 729, .external_lex_state = 8}, + [3803] = {.lex_state = 398}, + [3804] = {.lex_state = 402}, + [3805] = {.lex_state = 407}, + [3806] = {.lex_state = 402}, + [3807] = {.lex_state = 402}, + [3808] = {.lex_state = 971, .external_lex_state = 8}, + [3809] = {.lex_state = 729, .external_lex_state = 8}, + [3810] = {.lex_state = 729, .external_lex_state = 8}, + [3811] = {.lex_state = 423}, + [3812] = {.lex_state = 971, .external_lex_state = 8}, + [3813] = {.lex_state = 591, .external_lex_state = 8}, + [3814] = {.lex_state = 591, .external_lex_state = 8}, + [3815] = {.lex_state = 457, .external_lex_state = 6}, + [3816] = {.lex_state = 457, .external_lex_state = 3}, + [3817] = {.lex_state = 839}, + [3818] = {.lex_state = 839}, + [3819] = {.lex_state = 842, .external_lex_state = 2}, + [3820] = {.lex_state = 842, .external_lex_state = 2}, + [3821] = {.lex_state = 557}, + [3822] = {.lex_state = 645}, + [3823] = {.lex_state = 645}, + [3824] = {.lex_state = 845}, + [3825] = {.lex_state = 845}, + [3826] = {.lex_state = 848, .external_lex_state = 2}, + [3827] = {.lex_state = 848, .external_lex_state = 2}, + [3828] = {.lex_state = 572}, + [3829] = {.lex_state = 648}, + [3830] = {.lex_state = 648}, + [3831] = {.lex_state = 410}, + [3832] = {.lex_state = 437}, [3833] = {.lex_state = 410}, - [3834] = {.lex_state = 437}, - [3835] = {.lex_state = 410}, - [3836] = {.lex_state = 410}, - [3837] = {.lex_state = 612}, - [3838] = {.lex_state = 612}, - [3839] = {.lex_state = 612}, - [3840] = {.lex_state = 690}, - [3841] = {.lex_state = 402}, + [3834] = {.lex_state = 410}, + [3835] = {.lex_state = 854, .external_lex_state = 2}, + [3836] = {.lex_state = 402}, + [3837] = {.lex_state = 651}, + [3838] = {.lex_state = 402}, + [3839] = {.lex_state = 457, .external_lex_state = 6}, + [3840] = {.lex_state = 402}, + [3841] = {.lex_state = 410}, [3842] = {.lex_state = 402}, - [3843] = {.lex_state = 402}, - [3844] = {.lex_state = 410}, - [3845] = {.lex_state = 437}, - [3846] = {.lex_state = 687}, - [3847] = {.lex_state = 687}, + [3843] = {.lex_state = 410}, + [3844] = {.lex_state = 437}, + [3845] = {.lex_state = 410}, + [3846] = {.lex_state = 410}, + [3847] = {.lex_state = 860, .external_lex_state = 2}, [3848] = {.lex_state = 402}, - [3849] = {.lex_state = 402}, - [3850] = {.lex_state = 302}, - [3851] = {.lex_state = 302}, - [3852] = {.lex_state = 642}, - [3853] = {.lex_state = 402}, - [3854] = {.lex_state = 642}, - [3855] = {.lex_state = 532}, - [3856] = {.lex_state = 402}, - [3857] = {.lex_state = 532}, - [3858] = {.lex_state = 532}, - [3859] = {.lex_state = 410}, - [3860] = {.lex_state = 759}, - [3861] = {.lex_state = 759}, - [3862] = {.lex_state = 532}, - [3863] = {.lex_state = 439}, - [3864] = {.lex_state = 777}, - [3865] = {.lex_state = 780}, - [3866] = {.lex_state = 402}, - [3867] = {.lex_state = 642}, - [3868] = {.lex_state = 402}, - [3869] = {.lex_state = 407}, - [3870] = {.lex_state = 402}, - [3871] = {.lex_state = 843}, - [3872] = {.lex_state = 402}, - [3873] = {.lex_state = 407}, - [3874] = {.lex_state = 402}, - [3875] = {.lex_state = 843}, + [3849] = {.lex_state = 557}, + [3850] = {.lex_state = 402}, + [3851] = {.lex_state = 457, .external_lex_state = 6}, + [3852] = {.lex_state = 402}, + [3853] = {.lex_state = 410}, + [3854] = {.lex_state = 410}, + [3855] = {.lex_state = 437}, + [3856] = {.lex_state = 410}, + [3857] = {.lex_state = 410}, + [3858] = {.lex_state = 866, .external_lex_state = 2}, + [3859] = {.lex_state = 402}, + [3860] = {.lex_state = 654}, + [3861] = {.lex_state = 402}, + [3862] = {.lex_state = 457, .external_lex_state = 6}, + [3863] = {.lex_state = 402}, + [3864] = {.lex_state = 410}, + [3865] = {.lex_state = 869}, + [3866] = {.lex_state = 869}, + [3867] = {.lex_state = 437, .external_lex_state = 2}, + [3868] = {.lex_state = 410}, + [3869] = {.lex_state = 437}, + [3870] = {.lex_state = 410}, + [3871] = {.lex_state = 660, .external_lex_state = 2}, + [3872] = {.lex_state = 569}, + [3873] = {.lex_state = 569}, + [3874] = {.lex_state = 410}, + [3875] = {.lex_state = 437}, [3876] = {.lex_state = 410}, - [3877] = {.lex_state = 437}, - [3878] = {.lex_state = 410}, - [3879] = {.lex_state = 410}, - [3880] = {.lex_state = 402}, - [3881] = {.lex_state = 642}, - [3882] = {.lex_state = 302}, - [3883] = {.lex_state = 642}, - [3884] = {.lex_state = 642}, - [3885] = {.lex_state = 696}, - [3886] = {.lex_state = 402}, + [3877] = {.lex_state = 410}, + [3878] = {.lex_state = 875, .external_lex_state = 2}, + [3879] = {.lex_state = 402}, + [3880] = {.lex_state = 663}, + [3881] = {.lex_state = 402}, + [3882] = {.lex_state = 457, .external_lex_state = 6}, + [3883] = {.lex_state = 402}, + [3884] = {.lex_state = 410}, + [3885] = {.lex_state = 402}, + [3886] = {.lex_state = 407}, [3887] = {.lex_state = 402}, - [3888] = {.lex_state = 402}, - [3889] = {.lex_state = 410}, - [3890] = {.lex_state = 437}, - [3891] = {.lex_state = 693}, - [3892] = {.lex_state = 693}, - [3893] = {.lex_state = 402}, - [3894] = {.lex_state = 402}, - [3895] = {.lex_state = 302}, - [3896] = {.lex_state = 642}, + [3888] = {.lex_state = 973, .external_lex_state = 2}, + [3889] = {.lex_state = 402}, + [3890] = {.lex_state = 407}, + [3891] = {.lex_state = 402}, + [3892] = {.lex_state = 973, .external_lex_state = 2}, + [3893] = {.lex_state = 410}, + [3894] = {.lex_state = 437}, + [3895] = {.lex_state = 410}, + [3896] = {.lex_state = 410}, [3897] = {.lex_state = 402}, - [3898] = {.lex_state = 554}, - [3899] = {.lex_state = 419}, - [3900] = {.lex_state = 402}, - [3901] = {.lex_state = 419}, - [3902] = {.lex_state = 419}, - [3903] = {.lex_state = 410}, - [3904] = {.lex_state = 762}, - [3905] = {.lex_state = 762}, - [3906] = {.lex_state = 419}, - [3907] = {.lex_state = 439}, - [3908] = {.lex_state = 783}, - [3909] = {.lex_state = 786}, - [3910] = {.lex_state = 402}, - [3911] = {.lex_state = 554}, + [3898] = {.lex_state = 663}, + [3899] = {.lex_state = 663}, + [3900] = {.lex_state = 663}, + [3901] = {.lex_state = 663}, + [3902] = {.lex_state = 639, .external_lex_state = 6}, + [3903] = {.lex_state = 663}, + [3904] = {.lex_state = 663}, + [3905] = {.lex_state = 410}, + [3906] = {.lex_state = 663}, + [3907] = {.lex_state = 410}, + [3908] = {.lex_state = 437}, + [3909] = {.lex_state = 410}, + [3910] = {.lex_state = 410}, + [3911] = {.lex_state = 881, .external_lex_state = 2}, [3912] = {.lex_state = 402}, - [3913] = {.lex_state = 302}, - [3914] = {.lex_state = 554}, - [3915] = {.lex_state = 554}, - [3916] = {.lex_state = 702}, - [3917] = {.lex_state = 402}, - [3918] = {.lex_state = 402}, - [3919] = {.lex_state = 402}, - [3920] = {.lex_state = 410}, - [3921] = {.lex_state = 437}, - [3922] = {.lex_state = 699}, - [3923] = {.lex_state = 699}, - [3924] = {.lex_state = 402}, - [3925] = {.lex_state = 402}, - [3926] = {.lex_state = 402}, - [3927] = {.lex_state = 645}, - [3928] = {.lex_state = 627}, - [3929] = {.lex_state = 402}, - [3930] = {.lex_state = 627}, - [3931] = {.lex_state = 627}, - [3932] = {.lex_state = 410}, - [3933] = {.lex_state = 627}, - [3934] = {.lex_state = 439}, - [3935] = {.lex_state = 789}, - [3936] = {.lex_state = 792}, - [3937] = {.lex_state = 402}, - [3938] = {.lex_state = 645}, - [3939] = {.lex_state = 402}, - [3940] = {.lex_state = 398}, - [3941] = {.lex_state = 423}, - [3942] = {.lex_state = 302}, - [3943] = {.lex_state = 645}, - [3944] = {.lex_state = 645}, - [3945] = {.lex_state = 554}, - [3946] = {.lex_state = 410}, - [3947] = {.lex_state = 402}, - [3948] = {.lex_state = 765}, - [3949] = {.lex_state = 765}, - [3950] = {.lex_state = 768}, - [3951] = {.lex_state = 768}, - [3952] = {.lex_state = 554}, - [3953] = {.lex_state = 633}, - [3954] = {.lex_state = 633}, - [3955] = {.lex_state = 633}, - [3956] = {.lex_state = 398}, - [3957] = {.lex_state = 398}, - [3958] = {.lex_state = 569}, + [3913] = {.lex_state = 572}, + [3914] = {.lex_state = 402}, + [3915] = {.lex_state = 457, .external_lex_state = 6}, + [3916] = {.lex_state = 402}, + [3917] = {.lex_state = 410}, + [3918] = {.lex_state = 639, .external_lex_state = 6}, + [3919] = {.lex_state = 572}, + [3920] = {.lex_state = 572}, + [3921] = {.lex_state = 410}, + [3922] = {.lex_state = 572}, + [3923] = {.lex_state = 410}, + [3924] = {.lex_state = 437}, + [3925] = {.lex_state = 410}, + [3926] = {.lex_state = 410}, + [3927] = {.lex_state = 887, .external_lex_state = 2}, + [3928] = {.lex_state = 402}, + [3929] = {.lex_state = 666}, + [3930] = {.lex_state = 402}, + [3931] = {.lex_state = 457, .external_lex_state = 6}, + [3932] = {.lex_state = 402}, + [3933] = {.lex_state = 410}, + [3934] = {.lex_state = 639, .external_lex_state = 6}, + [3935] = {.lex_state = 666}, + [3936] = {.lex_state = 666}, + [3937] = {.lex_state = 410}, + [3938] = {.lex_state = 666}, + [3939] = {.lex_state = 890}, + [3940] = {.lex_state = 890}, + [3941] = {.lex_state = 761, .external_lex_state = 4}, + [3942] = {.lex_state = 402}, + [3943] = {.lex_state = 402}, + [3944] = {.lex_state = 402}, + [3945] = {.lex_state = 410}, + [3946] = {.lex_state = 437}, + [3947] = {.lex_state = 672, .external_lex_state = 5}, + [3948] = {.lex_state = 672, .external_lex_state = 5}, + [3949] = {.lex_state = 410}, + [3950] = {.lex_state = 672, .external_lex_state = 5}, + [3951] = {.lex_state = 402}, + [3952] = {.lex_state = 407}, + [3953] = {.lex_state = 402}, + [3954] = {.lex_state = 976, .external_lex_state = 4}, + [3955] = {.lex_state = 402}, + [3956] = {.lex_state = 407}, + [3957] = {.lex_state = 402}, + [3958] = {.lex_state = 976, .external_lex_state = 4}, [3959] = {.lex_state = 410}, - [3960] = {.lex_state = 402}, - [3961] = {.lex_state = 431}, - [3962] = {.lex_state = 771}, - [3963] = {.lex_state = 771}, - [3964] = {.lex_state = 774}, - [3965] = {.lex_state = 774}, - [3966] = {.lex_state = 569}, - [3967] = {.lex_state = 636}, - [3968] = {.lex_state = 636}, - [3969] = {.lex_state = 636}, - [3970] = {.lex_state = 789}, - [3971] = {.lex_state = 792}, - [3972] = {.lex_state = 402}, - [3973] = {.lex_state = 554}, - [3974] = {.lex_state = 645}, + [3960] = {.lex_state = 437}, + [3961] = {.lex_state = 410}, + [3962] = {.lex_state = 439, .external_lex_state = 2}, + [3963] = {.lex_state = 302}, + [3964] = {.lex_state = 457, .external_lex_state = 3}, + [3965] = {.lex_state = 461}, + [3966] = {.lex_state = 1024, .external_lex_state = 4}, + [3967] = {.lex_state = 1027, .external_lex_state = 4}, + [3968] = {.lex_state = 402}, + [3969] = {.lex_state = 684, .external_lex_state = 5}, + [3970] = {.lex_state = 893, .external_lex_state = 5}, + [3971] = {.lex_state = 893, .external_lex_state = 5}, + [3972] = {.lex_state = 893, .external_lex_state = 5}, + [3973] = {.lex_state = 410}, + [3974] = {.lex_state = 410}, [3975] = {.lex_state = 402}, - [3976] = {.lex_state = 398}, - [3977] = {.lex_state = 423}, - [3978] = {.lex_state = 525}, - [3979] = {.lex_state = 410}, - [3980] = {.lex_state = 437}, - [3981] = {.lex_state = 410}, - [3982] = {.lex_state = 410}, - [3983] = {.lex_state = 780}, - [3984] = {.lex_state = 402}, - [3985] = {.lex_state = 642}, - [3986] = {.lex_state = 402}, - [3987] = {.lex_state = 777}, - [3988] = {.lex_state = 777}, - [3989] = {.lex_state = 410}, - [3990] = {.lex_state = 437}, - [3991] = {.lex_state = 398}, - [3992] = {.lex_state = 398}, - [3993] = {.lex_state = 642}, - [3994] = {.lex_state = 642}, - [3995] = {.lex_state = 410}, - [3996] = {.lex_state = 402}, - [3997] = {.lex_state = 431}, + [3976] = {.lex_state = 893, .external_lex_state = 5}, + [3977] = {.lex_state = 1030, .external_lex_state = 5}, + [3978] = {.lex_state = 398}, + [3979] = {.lex_state = 402}, + [3980] = {.lex_state = 407}, + [3981] = {.lex_state = 402}, + [3982] = {.lex_state = 402}, + [3983] = {.lex_state = 893, .external_lex_state = 5}, + [3984] = {.lex_state = 1030, .external_lex_state = 5}, + [3985] = {.lex_state = 1030, .external_lex_state = 5}, + [3986] = {.lex_state = 423}, + [3987] = {.lex_state = 893, .external_lex_state = 5}, + [3988] = {.lex_state = 763, .external_lex_state = 5}, + [3989] = {.lex_state = 763, .external_lex_state = 5}, + [3990] = {.lex_state = 457, .external_lex_state = 6}, + [3991] = {.lex_state = 457, .external_lex_state = 3}, + [3992] = {.lex_state = 410}, + [3993] = {.lex_state = 437}, + [3994] = {.lex_state = 410}, + [3995] = {.lex_state = 676, .external_lex_state = 4}, + [3996] = {.lex_state = 410}, + [3997] = {.lex_state = 437}, [3998] = {.lex_state = 410}, [3999] = {.lex_state = 410}, - [4000] = {.lex_state = 402}, - [4001] = {.lex_state = 642}, - [4002] = {.lex_state = 581}, - [4003] = {.lex_state = 439}, - [4004] = {.lex_state = 642}, + [4000] = {.lex_state = 898, .external_lex_state = 4}, + [4001] = {.lex_state = 402}, + [4002] = {.lex_state = 772, .external_lex_state = 5}, + [4003] = {.lex_state = 402}, + [4004] = {.lex_state = 457, .external_lex_state = 6}, [4005] = {.lex_state = 402}, [4006] = {.lex_state = 410}, [4007] = {.lex_state = 402}, - [4008] = {.lex_state = 642}, - [4009] = {.lex_state = 410}, - [4010] = {.lex_state = 410}, - [4011] = {.lex_state = 437}, - [4012] = {.lex_state = 410}, - [4013] = {.lex_state = 410}, - [4014] = {.lex_state = 786}, - [4015] = {.lex_state = 402}, - [4016] = {.lex_state = 554}, - [4017] = {.lex_state = 402}, - [4018] = {.lex_state = 783}, - [4019] = {.lex_state = 783}, - [4020] = {.lex_state = 410}, - [4021] = {.lex_state = 437}, - [4022] = {.lex_state = 554}, - [4023] = {.lex_state = 410}, + [4008] = {.lex_state = 772, .external_lex_state = 5}, + [4009] = {.lex_state = 684, .external_lex_state = 5}, + [4010] = {.lex_state = 684, .external_lex_state = 5}, + [4011] = {.lex_state = 410, .external_lex_state = 2}, + [4012] = {.lex_state = 402}, + [4013] = {.lex_state = 639, .external_lex_state = 6}, + [4014] = {.lex_state = 900, .external_lex_state = 5}, + [4015] = {.lex_state = 900, .external_lex_state = 5}, + [4016] = {.lex_state = 410}, + [4017] = {.lex_state = 900, .external_lex_state = 5}, + [4018] = {.lex_state = 903, .external_lex_state = 5}, + [4019] = {.lex_state = 903, .external_lex_state = 5}, + [4020] = {.lex_state = 777, .external_lex_state = 4}, + [4021] = {.lex_state = 402}, + [4022] = {.lex_state = 402}, + [4023] = {.lex_state = 402}, [4024] = {.lex_state = 410}, - [4025] = {.lex_state = 402}, - [4026] = {.lex_state = 554}, - [4027] = {.lex_state = 581}, - [4028] = {.lex_state = 439}, - [4029] = {.lex_state = 554}, - [4030] = {.lex_state = 402}, - [4031] = {.lex_state = 410}, - [4032] = {.lex_state = 554}, - [4033] = {.lex_state = 410}, - [4034] = {.lex_state = 410}, - [4035] = {.lex_state = 437}, - [4036] = {.lex_state = 410}, - [4037] = {.lex_state = 410}, - [4038] = {.lex_state = 792}, - [4039] = {.lex_state = 402}, - [4040] = {.lex_state = 645}, - [4041] = {.lex_state = 402}, - [4042] = {.lex_state = 789}, - [4043] = {.lex_state = 789}, - [4044] = {.lex_state = 410}, - [4045] = {.lex_state = 437}, - [4046] = {.lex_state = 645}, - [4047] = {.lex_state = 410}, - [4048] = {.lex_state = 410}, - [4049] = {.lex_state = 402}, - [4050] = {.lex_state = 645}, - [4051] = {.lex_state = 581}, - [4052] = {.lex_state = 439}, - [4053] = {.lex_state = 645}, + [4025] = {.lex_state = 437}, + [4026] = {.lex_state = 681, .external_lex_state = 5}, + [4027] = {.lex_state = 681, .external_lex_state = 5}, + [4028] = {.lex_state = 410}, + [4029] = {.lex_state = 906, .external_lex_state = 4}, + [4030] = {.lex_state = 906, .external_lex_state = 4}, + [4031] = {.lex_state = 681, .external_lex_state = 5}, + [4032] = {.lex_state = 681, .external_lex_state = 5}, + [4033] = {.lex_state = 457, .external_lex_state = 6}, + [4034] = {.lex_state = 457, .external_lex_state = 3}, + [4035] = {.lex_state = 909, .external_lex_state = 5}, + [4036] = {.lex_state = 909, .external_lex_state = 5}, + [4037] = {.lex_state = 302}, + [4038] = {.lex_state = 302}, + [4039] = {.lex_state = 461}, + [4040] = {.lex_state = 979, .external_lex_state = 4}, + [4041] = {.lex_state = 587, .external_lex_state = 5}, + [4042] = {.lex_state = 589, .external_lex_state = 5}, + [4043] = {.lex_state = 437}, + [4044] = {.lex_state = 439, .external_lex_state = 2}, + [4045] = {.lex_state = 410}, + [4046] = {.lex_state = 410}, + [4047] = {.lex_state = 402}, + [4048] = {.lex_state = 596}, + [4049] = {.lex_state = 1033, .external_lex_state = 4}, + [4050] = {.lex_state = 398}, + [4051] = {.lex_state = 398}, + [4052] = {.lex_state = 402}, + [4053] = {.lex_state = 407}, [4054] = {.lex_state = 402}, - [4055] = {.lex_state = 410}, - [4056] = {.lex_state = 645}, - [4057] = {.lex_state = 410}, - [4058] = {.lex_state = 795}, - [4059] = {.lex_state = 795}, - [4060] = {.lex_state = 398}, - [4061] = {.lex_state = 398}, - [4062] = {.lex_state = 554}, - [4063] = {.lex_state = 410}, - [4064] = {.lex_state = 402}, - [4065] = {.lex_state = 431}, - [4066] = {.lex_state = 633}, - [4067] = {.lex_state = 437}, - [4068] = {.lex_state = 798}, - [4069] = {.lex_state = 801}, - [4070] = {.lex_state = 402}, - [4071] = {.lex_state = 566}, - [4072] = {.lex_state = 657}, - [4073] = {.lex_state = 657}, - [4074] = {.lex_state = 804}, - [4075] = {.lex_state = 807}, - [4076] = {.lex_state = 402}, - [4077] = {.lex_state = 569}, - [4078] = {.lex_state = 569}, - [4079] = {.lex_state = 810}, - [4080] = {.lex_state = 813}, - [4081] = {.lex_state = 402}, - [4082] = {.lex_state = 569}, - [4083] = {.lex_state = 660}, + [4055] = {.lex_state = 402}, + [4056] = {.lex_state = 780, .external_lex_state = 5}, + [4057] = {.lex_state = 780, .external_lex_state = 5}, + [4058] = {.lex_state = 410, .external_lex_state = 2}, + [4059] = {.lex_state = 1033, .external_lex_state = 4}, + [4060] = {.lex_state = 1033, .external_lex_state = 4}, + [4061] = {.lex_state = 402}, + [4062] = {.lex_state = 431, .external_lex_state = 2}, + [4063] = {.lex_state = 302}, + [4064] = {.lex_state = 780, .external_lex_state = 5}, + [4065] = {.lex_state = 780, .external_lex_state = 5}, + [4066] = {.lex_state = 402}, + [4067] = {.lex_state = 457, .external_lex_state = 3}, + [4068] = {.lex_state = 539}, + [4069] = {.lex_state = 780, .external_lex_state = 5}, + [4070] = {.lex_state = 780, .external_lex_state = 5}, + [4071] = {.lex_state = 780, .external_lex_state = 5}, + [4072] = {.lex_state = 912, .external_lex_state = 5}, + [4073] = {.lex_state = 912, .external_lex_state = 5}, + [4074] = {.lex_state = 302}, + [4075] = {.lex_state = 302}, + [4076] = {.lex_state = 461}, + [4077] = {.lex_state = 985, .external_lex_state = 4}, + [4078] = {.lex_state = 587, .external_lex_state = 5}, + [4079] = {.lex_state = 589, .external_lex_state = 5}, + [4080] = {.lex_state = 437}, + [4081] = {.lex_state = 439, .external_lex_state = 2}, + [4082] = {.lex_state = 410}, + [4083] = {.lex_state = 410}, [4084] = {.lex_state = 402}, - [4085] = {.lex_state = 398}, - [4086] = {.lex_state = 423}, - [4087] = {.lex_state = 410}, - [4088] = {.lex_state = 437}, - [4089] = {.lex_state = 410}, - [4090] = {.lex_state = 654}, - [4091] = {.lex_state = 566}, - [4092] = {.lex_state = 566}, - [4093] = {.lex_state = 566}, - [4094] = {.lex_state = 566}, - [4095] = {.lex_state = 410}, - [4096] = {.lex_state = 437}, - [4097] = {.lex_state = 410}, - [4098] = {.lex_state = 410}, - [4099] = {.lex_state = 801}, + [4085] = {.lex_state = 596}, + [4086] = {.lex_state = 684, .external_lex_state = 5}, + [4087] = {.lex_state = 457, .external_lex_state = 3}, + [4088] = {.lex_state = 539}, + [4089] = {.lex_state = 684, .external_lex_state = 5}, + [4090] = {.lex_state = 684, .external_lex_state = 5}, + [4091] = {.lex_state = 684, .external_lex_state = 5}, + [4092] = {.lex_state = 915, .external_lex_state = 4}, + [4093] = {.lex_state = 915, .external_lex_state = 4}, + [4094] = {.lex_state = 783, .external_lex_state = 5}, + [4095] = {.lex_state = 687, .external_lex_state = 5}, + [4096] = {.lex_state = 687, .external_lex_state = 5}, + [4097] = {.lex_state = 932, .external_lex_state = 4}, + [4098] = {.lex_state = 402}, + [4099] = {.lex_state = 402}, [4100] = {.lex_state = 402}, - [4101] = {.lex_state = 657}, - [4102] = {.lex_state = 402}, - [4103] = {.lex_state = 798}, - [4104] = {.lex_state = 798}, + [4101] = {.lex_state = 410}, + [4102] = {.lex_state = 437}, + [4103] = {.lex_state = 589, .external_lex_state = 5}, + [4104] = {.lex_state = 589, .external_lex_state = 5}, [4105] = {.lex_state = 410}, - [4106] = {.lex_state = 437}, - [4107] = {.lex_state = 398}, - [4108] = {.lex_state = 398}, - [4109] = {.lex_state = 657}, - [4110] = {.lex_state = 657}, - [4111] = {.lex_state = 410}, + [4106] = {.lex_state = 402}, + [4107] = {.lex_state = 808, .external_lex_state = 5}, + [4108] = {.lex_state = 410, .external_lex_state = 2}, + [4109] = {.lex_state = 402}, + [4110] = {.lex_state = 402}, + [4111] = {.lex_state = 938, .external_lex_state = 5}, [4112] = {.lex_state = 402}, - [4113] = {.lex_state = 431}, - [4114] = {.lex_state = 410}, - [4115] = {.lex_state = 410}, - [4116] = {.lex_state = 402}, - [4117] = {.lex_state = 657}, - [4118] = {.lex_state = 581}, - [4119] = {.lex_state = 439}, - [4120] = {.lex_state = 657}, - [4121] = {.lex_state = 402}, - [4122] = {.lex_state = 410}, - [4123] = {.lex_state = 402}, - [4124] = {.lex_state = 407}, - [4125] = {.lex_state = 402}, - [4126] = {.lex_state = 846}, + [4113] = {.lex_state = 1036, .external_lex_state = 4}, + [4114] = {.lex_state = 1039, .external_lex_state = 4}, + [4115] = {.lex_state = 402}, + [4116] = {.lex_state = 790, .external_lex_state = 5}, + [4117] = {.lex_state = 926, .external_lex_state = 5}, + [4118] = {.lex_state = 1042, .external_lex_state = 4}, + [4119] = {.lex_state = 1045, .external_lex_state = 4}, + [4120] = {.lex_state = 402}, + [4121] = {.lex_state = 793, .external_lex_state = 5}, + [4122] = {.lex_state = 1048, .external_lex_state = 4}, + [4123] = {.lex_state = 1051, .external_lex_state = 4}, + [4124] = {.lex_state = 402}, + [4125] = {.lex_state = 793, .external_lex_state = 5}, + [4126] = {.lex_state = 991, .external_lex_state = 5}, [4127] = {.lex_state = 402}, - [4128] = {.lex_state = 407}, - [4129] = {.lex_state = 402}, - [4130] = {.lex_state = 846}, - [4131] = {.lex_state = 410}, - [4132] = {.lex_state = 437}, - [4133] = {.lex_state = 410}, - [4134] = {.lex_state = 410}, - [4135] = {.lex_state = 402}, - [4136] = {.lex_state = 657}, - [4137] = {.lex_state = 657}, - [4138] = {.lex_state = 657}, - [4139] = {.lex_state = 657}, - [4140] = {.lex_state = 657}, - [4141] = {.lex_state = 657}, - [4142] = {.lex_state = 410}, - [4143] = {.lex_state = 657}, + [4128] = {.lex_state = 929, .external_lex_state = 5}, + [4129] = {.lex_state = 398}, + [4130] = {.lex_state = 423}, + [4131] = {.lex_state = 796, .external_lex_state = 5}, + [4132] = {.lex_state = 796, .external_lex_state = 5}, + [4133] = {.lex_state = 457, .external_lex_state = 6}, + [4134] = {.lex_state = 457, .external_lex_state = 3}, + [4135] = {.lex_state = 893, .external_lex_state = 5}, + [4136] = {.lex_state = 410, .external_lex_state = 2}, + [4137] = {.lex_state = 402}, + [4138] = {.lex_state = 802}, + [4139] = {.lex_state = 690}, + [4140] = {.lex_state = 690}, + [4141] = {.lex_state = 410}, + [4142] = {.lex_state = 437}, + [4143] = {.lex_state = 410}, [4144] = {.lex_state = 410}, - [4145] = {.lex_state = 437}, - [4146] = {.lex_state = 410}, - [4147] = {.lex_state = 410}, - [4148] = {.lex_state = 807}, - [4149] = {.lex_state = 402}, - [4150] = {.lex_state = 569}, - [4151] = {.lex_state = 402}, - [4152] = {.lex_state = 804}, - [4153] = {.lex_state = 804}, - [4154] = {.lex_state = 410}, - [4155] = {.lex_state = 437}, - [4156] = {.lex_state = 569}, - [4157] = {.lex_state = 410}, - [4158] = {.lex_state = 410}, - [4159] = {.lex_state = 402}, - [4160] = {.lex_state = 569}, - [4161] = {.lex_state = 581}, - [4162] = {.lex_state = 439}, - [4163] = {.lex_state = 569}, - [4164] = {.lex_state = 402}, - [4165] = {.lex_state = 410}, - [4166] = {.lex_state = 569}, - [4167] = {.lex_state = 569}, - [4168] = {.lex_state = 410}, - [4169] = {.lex_state = 569}, - [4170] = {.lex_state = 410}, - [4171] = {.lex_state = 437}, + [4145] = {.lex_state = 936, .external_lex_state = 7}, + [4146] = {.lex_state = 402}, + [4147] = {.lex_state = 808, .external_lex_state = 8}, + [4148] = {.lex_state = 402}, + [4149] = {.lex_state = 457, .external_lex_state = 6}, + [4150] = {.lex_state = 402}, + [4151] = {.lex_state = 410}, + [4152] = {.lex_state = 402}, + [4153] = {.lex_state = 808, .external_lex_state = 8}, + [4154] = {.lex_state = 991, .external_lex_state = 8}, + [4155] = {.lex_state = 991, .external_lex_state = 8}, + [4156] = {.lex_state = 410, .external_lex_state = 2}, + [4157] = {.lex_state = 402}, + [4158] = {.lex_state = 639, .external_lex_state = 6}, + [4159] = {.lex_state = 938, .external_lex_state = 8}, + [4160] = {.lex_state = 938, .external_lex_state = 8}, + [4161] = {.lex_state = 410}, + [4162] = {.lex_state = 938, .external_lex_state = 8}, + [4163] = {.lex_state = 941, .external_lex_state = 8}, + [4164] = {.lex_state = 941, .external_lex_state = 8}, + [4165] = {.lex_state = 788, .external_lex_state = 7}, + [4166] = {.lex_state = 402}, + [4167] = {.lex_state = 402}, + [4168] = {.lex_state = 402}, + [4169] = {.lex_state = 410}, + [4170] = {.lex_state = 437}, + [4171] = {.lex_state = 591, .external_lex_state = 8}, [4172] = {.lex_state = 410}, [4173] = {.lex_state = 410}, - [4174] = {.lex_state = 813}, - [4175] = {.lex_state = 402}, - [4176] = {.lex_state = 660}, - [4177] = {.lex_state = 402}, - [4178] = {.lex_state = 810}, - [4179] = {.lex_state = 810}, - [4180] = {.lex_state = 410}, - [4181] = {.lex_state = 437}, - [4182] = {.lex_state = 660}, + [4174] = {.lex_state = 437}, + [4175] = {.lex_state = 410}, + [4176] = {.lex_state = 410}, + [4177] = {.lex_state = 923, .external_lex_state = 7}, + [4178] = {.lex_state = 402}, + [4179] = {.lex_state = 790, .external_lex_state = 8}, + [4180] = {.lex_state = 402}, + [4181] = {.lex_state = 457, .external_lex_state = 6}, + [4182] = {.lex_state = 402}, [4183] = {.lex_state = 410}, - [4184] = {.lex_state = 410}, - [4185] = {.lex_state = 402}, - [4186] = {.lex_state = 660}, - [4187] = {.lex_state = 581}, - [4188] = {.lex_state = 439}, - [4189] = {.lex_state = 660}, + [4184] = {.lex_state = 402}, + [4185] = {.lex_state = 407}, + [4186] = {.lex_state = 402}, + [4187] = {.lex_state = 994, .external_lex_state = 7}, + [4188] = {.lex_state = 402}, + [4189] = {.lex_state = 407}, [4190] = {.lex_state = 402}, - [4191] = {.lex_state = 410}, - [4192] = {.lex_state = 660}, - [4193] = {.lex_state = 660}, + [4191] = {.lex_state = 994, .external_lex_state = 7}, + [4192] = {.lex_state = 410}, + [4193] = {.lex_state = 437}, [4194] = {.lex_state = 410}, - [4195] = {.lex_state = 660}, - [4196] = {.lex_state = 816}, - [4197] = {.lex_state = 816}, - [4198] = {.lex_state = 402}, - [4199] = {.lex_state = 302}, - [4200] = {.lex_state = 642}, - [4201] = {.lex_state = 402}, - [4202] = {.lex_state = 642}, - [4203] = {.lex_state = 402}, - [4204] = {.lex_state = 554}, - [4205] = {.lex_state = 735}, - [4206] = {.lex_state = 663}, - [4207] = {.lex_state = 663}, - [4208] = {.lex_state = 663}, + [4195] = {.lex_state = 410}, + [4196] = {.lex_state = 402}, + [4197] = {.lex_state = 790, .external_lex_state = 8}, + [4198] = {.lex_state = 997, .external_lex_state = 8}, + [4199] = {.lex_state = 997, .external_lex_state = 8}, + [4200] = {.lex_state = 410}, + [4201] = {.lex_state = 437}, + [4202] = {.lex_state = 410}, + [4203] = {.lex_state = 439, .external_lex_state = 2}, + [4204] = {.lex_state = 302}, + [4205] = {.lex_state = 457, .external_lex_state = 3}, + [4206] = {.lex_state = 461}, + [4207] = {.lex_state = 1036, .external_lex_state = 7}, + [4208] = {.lex_state = 1039, .external_lex_state = 7}, [4209] = {.lex_state = 402}, - [4210] = {.lex_state = 410}, - [4211] = {.lex_state = 398}, - [4212] = {.lex_state = 402}, - [4213] = {.lex_state = 581}, - [4214] = {.lex_state = 410}, - [4215] = {.lex_state = 581}, - [4216] = {.lex_state = 402}, + [4210] = {.lex_state = 926, .external_lex_state = 8}, + [4211] = {.lex_state = 410}, + [4212] = {.lex_state = 410}, + [4213] = {.lex_state = 926, .external_lex_state = 8}, + [4214] = {.lex_state = 926, .external_lex_state = 8}, + [4215] = {.lex_state = 1000, .external_lex_state = 8}, + [4216] = {.lex_state = 1000, .external_lex_state = 8}, [4217] = {.lex_state = 410}, - [4218] = {.lex_state = 410}, - [4219] = {.lex_state = 402}, - [4220] = {.lex_state = 402}, - [4221] = {.lex_state = 557}, - [4222] = {.lex_state = 535}, - [4223] = {.lex_state = 645}, - [4224] = {.lex_state = 557}, - [4225] = {.lex_state = 402}, - [4226] = {.lex_state = 777}, - [4227] = {.lex_state = 780}, - [4228] = {.lex_state = 402}, - [4229] = {.lex_state = 525}, - [4230] = {.lex_state = 642}, - [4231] = {.lex_state = 642}, - [4232] = {.lex_state = 783}, - [4233] = {.lex_state = 786}, + [4218] = {.lex_state = 437}, + [4219] = {.lex_state = 410}, + [4220] = {.lex_state = 439, .external_lex_state = 2}, + [4221] = {.lex_state = 302}, + [4222] = {.lex_state = 457, .external_lex_state = 3}, + [4223] = {.lex_state = 461}, + [4224] = {.lex_state = 1042, .external_lex_state = 7}, + [4225] = {.lex_state = 1045, .external_lex_state = 7}, + [4226] = {.lex_state = 402}, + [4227] = {.lex_state = 793, .external_lex_state = 8}, + [4228] = {.lex_state = 410}, + [4229] = {.lex_state = 410}, + [4230] = {.lex_state = 793, .external_lex_state = 8}, + [4231] = {.lex_state = 793, .external_lex_state = 8}, + [4232] = {.lex_state = 402}, + [4233] = {.lex_state = 407}, [4234] = {.lex_state = 402}, - [4235] = {.lex_state = 554}, - [4236] = {.lex_state = 554}, - [4237] = {.lex_state = 439}, - [4238] = {.lex_state = 789}, - [4239] = {.lex_state = 792}, - [4240] = {.lex_state = 402}, - [4241] = {.lex_state = 554}, - [4242] = {.lex_state = 645}, - [4243] = {.lex_state = 402}, - [4244] = {.lex_state = 819}, - [4245] = {.lex_state = 398}, - [4246] = {.lex_state = 423}, - [4247] = {.lex_state = 302}, - [4248] = {.lex_state = 738}, - [4249] = {.lex_state = 738}, - [4250] = {.lex_state = 439}, + [4235] = {.lex_state = 1003, .external_lex_state = 7}, + [4236] = {.lex_state = 402}, + [4237] = {.lex_state = 407}, + [4238] = {.lex_state = 402}, + [4239] = {.lex_state = 1003, .external_lex_state = 7}, + [4240] = {.lex_state = 410}, + [4241] = {.lex_state = 437}, + [4242] = {.lex_state = 410}, + [4243] = {.lex_state = 439, .external_lex_state = 2}, + [4244] = {.lex_state = 302}, + [4245] = {.lex_state = 457, .external_lex_state = 3}, + [4246] = {.lex_state = 461}, + [4247] = {.lex_state = 1048, .external_lex_state = 7}, + [4248] = {.lex_state = 1051, .external_lex_state = 7}, + [4249] = {.lex_state = 402}, + [4250] = {.lex_state = 991, .external_lex_state = 8}, [4251] = {.lex_state = 410}, - [4252] = {.lex_state = 645}, - [4253] = {.lex_state = 410}, - [4254] = {.lex_state = 402}, - [4255] = {.lex_state = 738}, - [4256] = {.lex_state = 410}, - [4257] = {.lex_state = 569}, - [4258] = {.lex_state = 410}, + [4252] = {.lex_state = 410}, + [4253] = {.lex_state = 402}, + [4254] = {.lex_state = 944, .external_lex_state = 8}, + [4255] = {.lex_state = 1054, .external_lex_state = 8}, + [4256] = {.lex_state = 398}, + [4257] = {.lex_state = 402}, + [4258] = {.lex_state = 407}, [4259] = {.lex_state = 402}, - [4260] = {.lex_state = 744}, - [4261] = {.lex_state = 666}, - [4262] = {.lex_state = 666}, - [4263] = {.lex_state = 666}, - [4264] = {.lex_state = 402}, - [4265] = {.lex_state = 410}, - [4266] = {.lex_state = 410}, - [4267] = {.lex_state = 402}, - [4268] = {.lex_state = 402}, - [4269] = {.lex_state = 633}, - [4270] = {.lex_state = 398}, - [4271] = {.lex_state = 398}, - [4272] = {.lex_state = 554}, - [4273] = {.lex_state = 410}, + [4260] = {.lex_state = 402}, + [4261] = {.lex_state = 991, .external_lex_state = 8}, + [4262] = {.lex_state = 1054, .external_lex_state = 8}, + [4263] = {.lex_state = 1054, .external_lex_state = 8}, + [4264] = {.lex_state = 423}, + [4265] = {.lex_state = 991, .external_lex_state = 8}, + [4266] = {.lex_state = 799, .external_lex_state = 8}, + [4267] = {.lex_state = 799, .external_lex_state = 8}, + [4268] = {.lex_state = 457, .external_lex_state = 6}, + [4269] = {.lex_state = 457, .external_lex_state = 3}, + [4270] = {.lex_state = 402}, + [4271] = {.lex_state = 557}, + [4272] = {.lex_state = 410, .external_lex_state = 2}, + [4273] = {.lex_state = 402}, [4274] = {.lex_state = 402}, - [4275] = {.lex_state = 431}, - [4276] = {.lex_state = 402}, - [4277] = {.lex_state = 581}, - [4278] = {.lex_state = 439}, - [4279] = {.lex_state = 410}, - [4280] = {.lex_state = 402}, - [4281] = {.lex_state = 554}, - [4282] = {.lex_state = 410}, - [4283] = {.lex_state = 402}, - [4284] = {.lex_state = 633}, - [4285] = {.lex_state = 410}, - [4286] = {.lex_state = 402}, - [4287] = {.lex_state = 525}, - [4288] = {.lex_state = 302}, - [4289] = {.lex_state = 525}, - [4290] = {.lex_state = 525}, - [4291] = {.lex_state = 398}, - [4292] = {.lex_state = 402}, - [4293] = {.lex_state = 581}, - [4294] = {.lex_state = 642}, - [4295] = {.lex_state = 581}, - [4296] = {.lex_state = 402}, - [4297] = {.lex_state = 398}, - [4298] = {.lex_state = 398}, - [4299] = {.lex_state = 642}, + [4275] = {.lex_state = 398}, + [4276] = {.lex_state = 398}, + [4277] = {.lex_state = 651}, + [4278] = {.lex_state = 410, .external_lex_state = 2}, + [4279] = {.lex_state = 402}, + [4280] = {.lex_state = 431, .external_lex_state = 2}, + [4281] = {.lex_state = 302}, + [4282] = {.lex_state = 402}, + [4283] = {.lex_state = 651}, + [4284] = {.lex_state = 402}, + [4285] = {.lex_state = 557}, + [4286] = {.lex_state = 783}, + [4287] = {.lex_state = 687}, + [4288] = {.lex_state = 687}, + [4289] = {.lex_state = 608, .external_lex_state = 2}, + [4290] = {.lex_state = 402}, + [4291] = {.lex_state = 410}, + [4292] = {.lex_state = 437}, + [4293] = {.lex_state = 410}, + [4294] = {.lex_state = 702, .external_lex_state = 2}, + [4295] = {.lex_state = 614}, + [4296] = {.lex_state = 614}, + [4297] = {.lex_state = 410}, + [4298] = {.lex_state = 437}, + [4299] = {.lex_state = 410}, [4300] = {.lex_state = 410}, - [4301] = {.lex_state = 402}, - [4302] = {.lex_state = 431}, - [4303] = {.lex_state = 302}, - [4304] = {.lex_state = 642}, - [4305] = {.lex_state = 402}, - [4306] = {.lex_state = 642}, - [4307] = {.lex_state = 535}, - [4308] = {.lex_state = 642}, - [4309] = {.lex_state = 642}, - [4310] = {.lex_state = 398}, - [4311] = {.lex_state = 402}, - [4312] = {.lex_state = 581}, - [4313] = {.lex_state = 554}, - [4314] = {.lex_state = 581}, - [4315] = {.lex_state = 402}, - [4316] = {.lex_state = 554}, - [4317] = {.lex_state = 535}, - [4318] = {.lex_state = 554}, - [4319] = {.lex_state = 554}, - [4320] = {.lex_state = 663}, - [4321] = {.lex_state = 599}, - [4322] = {.lex_state = 777}, - [4323] = {.lex_state = 780}, - [4324] = {.lex_state = 402}, - [4325] = {.lex_state = 525}, - [4326] = {.lex_state = 642}, - [4327] = {.lex_state = 642}, - [4328] = {.lex_state = 783}, - [4329] = {.lex_state = 786}, - [4330] = {.lex_state = 402}, - [4331] = {.lex_state = 554}, - [4332] = {.lex_state = 554}, - [4333] = {.lex_state = 789}, - [4334] = {.lex_state = 792}, + [4301] = {.lex_state = 950, .external_lex_state = 2}, + [4302] = {.lex_state = 402}, + [4303] = {.lex_state = 705}, + [4304] = {.lex_state = 402}, + [4305] = {.lex_state = 457, .external_lex_state = 6}, + [4306] = {.lex_state = 402}, + [4307] = {.lex_state = 410}, + [4308] = {.lex_state = 402}, + [4309] = {.lex_state = 407}, + [4310] = {.lex_state = 402}, + [4311] = {.lex_state = 1006, .external_lex_state = 2}, + [4312] = {.lex_state = 402}, + [4313] = {.lex_state = 407}, + [4314] = {.lex_state = 402}, + [4315] = {.lex_state = 1006, .external_lex_state = 2}, + [4316] = {.lex_state = 410}, + [4317] = {.lex_state = 437}, + [4318] = {.lex_state = 410}, + [4319] = {.lex_state = 410}, + [4320] = {.lex_state = 402}, + [4321] = {.lex_state = 705}, + [4322] = {.lex_state = 705}, + [4323] = {.lex_state = 705}, + [4324] = {.lex_state = 705}, + [4325] = {.lex_state = 639, .external_lex_state = 6}, + [4326] = {.lex_state = 705}, + [4327] = {.lex_state = 705}, + [4328] = {.lex_state = 410}, + [4329] = {.lex_state = 705}, + [4330] = {.lex_state = 410}, + [4331] = {.lex_state = 437}, + [4332] = {.lex_state = 410}, + [4333] = {.lex_state = 410}, + [4334] = {.lex_state = 956, .external_lex_state = 2}, [4335] = {.lex_state = 402}, - [4336] = {.lex_state = 554}, - [4337] = {.lex_state = 645}, - [4338] = {.lex_state = 402}, - [4339] = {.lex_state = 398}, - [4340] = {.lex_state = 423}, - [4341] = {.lex_state = 525}, - [4342] = {.lex_state = 398}, - [4343] = {.lex_state = 398}, - [4344] = {.lex_state = 642}, - [4345] = {.lex_state = 410}, - [4346] = {.lex_state = 402}, - [4347] = {.lex_state = 431}, - [4348] = {.lex_state = 402}, - [4349] = {.lex_state = 581}, - [4350] = {.lex_state = 439}, - [4351] = {.lex_state = 642}, - [4352] = {.lex_state = 402}, - [4353] = {.lex_state = 642}, - [4354] = {.lex_state = 410}, - [4355] = {.lex_state = 402}, - [4356] = {.lex_state = 581}, - [4357] = {.lex_state = 439}, - [4358] = {.lex_state = 554}, - [4359] = {.lex_state = 554}, - [4360] = {.lex_state = 410}, - [4361] = {.lex_state = 402}, - [4362] = {.lex_state = 581}, - [4363] = {.lex_state = 439}, - [4364] = {.lex_state = 645}, - [4365] = {.lex_state = 645}, - [4366] = {.lex_state = 410}, - [4367] = {.lex_state = 822}, - [4368] = {.lex_state = 825}, - [4369] = {.lex_state = 402}, - [4370] = {.lex_state = 605}, - [4371] = {.lex_state = 681}, - [4372] = {.lex_state = 681}, - [4373] = {.lex_state = 828}, - [4374] = {.lex_state = 831}, - [4375] = {.lex_state = 402}, - [4376] = {.lex_state = 609}, - [4377] = {.lex_state = 609}, - [4378] = {.lex_state = 834}, - [4379] = {.lex_state = 837}, - [4380] = {.lex_state = 402}, - [4381] = {.lex_state = 609}, - [4382] = {.lex_state = 684}, + [4336] = {.lex_state = 618}, + [4337] = {.lex_state = 402}, + [4338] = {.lex_state = 457, .external_lex_state = 6}, + [4339] = {.lex_state = 402}, + [4340] = {.lex_state = 410}, + [4341] = {.lex_state = 402}, + [4342] = {.lex_state = 407}, + [4343] = {.lex_state = 402}, + [4344] = {.lex_state = 1009, .external_lex_state = 2}, + [4345] = {.lex_state = 402}, + [4346] = {.lex_state = 407}, + [4347] = {.lex_state = 402}, + [4348] = {.lex_state = 1009, .external_lex_state = 2}, + [4349] = {.lex_state = 410}, + [4350] = {.lex_state = 437}, + [4351] = {.lex_state = 410}, + [4352] = {.lex_state = 410}, + [4353] = {.lex_state = 402}, + [4354] = {.lex_state = 618}, + [4355] = {.lex_state = 618}, + [4356] = {.lex_state = 639, .external_lex_state = 6}, + [4357] = {.lex_state = 618}, + [4358] = {.lex_state = 618}, + [4359] = {.lex_state = 410}, + [4360] = {.lex_state = 618}, + [4361] = {.lex_state = 410}, + [4362] = {.lex_state = 437}, + [4363] = {.lex_state = 410}, + [4364] = {.lex_state = 410}, + [4365] = {.lex_state = 962, .external_lex_state = 2}, + [4366] = {.lex_state = 402}, + [4367] = {.lex_state = 708}, + [4368] = {.lex_state = 402}, + [4369] = {.lex_state = 457, .external_lex_state = 6}, + [4370] = {.lex_state = 402}, + [4371] = {.lex_state = 410}, + [4372] = {.lex_state = 639, .external_lex_state = 6}, + [4373] = {.lex_state = 708}, + [4374] = {.lex_state = 708}, + [4375] = {.lex_state = 410}, + [4376] = {.lex_state = 708}, + [4377] = {.lex_state = 965}, + [4378] = {.lex_state = 965}, + [4379] = {.lex_state = 410}, + [4380] = {.lex_state = 437}, + [4381] = {.lex_state = 410}, + [4382] = {.lex_state = 714, .external_lex_state = 2}, [4383] = {.lex_state = 402}, - [4384] = {.lex_state = 398}, - [4385] = {.lex_state = 423}, - [4386] = {.lex_state = 410}, - [4387] = {.lex_state = 437}, - [4388] = {.lex_state = 410}, - [4389] = {.lex_state = 678}, - [4390] = {.lex_state = 605}, - [4391] = {.lex_state = 605}, - [4392] = {.lex_state = 605}, - [4393] = {.lex_state = 605}, - [4394] = {.lex_state = 410}, - [4395] = {.lex_state = 437}, + [4384] = {.lex_state = 968, .external_lex_state = 2}, + [4385] = {.lex_state = 968, .external_lex_state = 2}, + [4386] = {.lex_state = 651}, + [4387] = {.lex_state = 651}, + [4388] = {.lex_state = 651}, + [4389] = {.lex_state = 410}, + [4390] = {.lex_state = 437}, + [4391] = {.lex_state = 410}, + [4392] = {.lex_state = 720, .external_lex_state = 2}, + [4393] = {.lex_state = 402}, + [4394] = {.lex_state = 557}, + [4395] = {.lex_state = 557}, [4396] = {.lex_state = 410}, - [4397] = {.lex_state = 410}, - [4398] = {.lex_state = 825}, - [4399] = {.lex_state = 402}, - [4400] = {.lex_state = 681}, - [4401] = {.lex_state = 402}, - [4402] = {.lex_state = 822}, - [4403] = {.lex_state = 822}, - [4404] = {.lex_state = 410}, - [4405] = {.lex_state = 437}, - [4406] = {.lex_state = 398}, - [4407] = {.lex_state = 398}, - [4408] = {.lex_state = 681}, - [4409] = {.lex_state = 681}, - [4410] = {.lex_state = 410}, - [4411] = {.lex_state = 402}, - [4412] = {.lex_state = 431}, - [4413] = {.lex_state = 410}, - [4414] = {.lex_state = 410}, - [4415] = {.lex_state = 402}, - [4416] = {.lex_state = 681}, - [4417] = {.lex_state = 581}, - [4418] = {.lex_state = 439}, - [4419] = {.lex_state = 681}, - [4420] = {.lex_state = 402}, - [4421] = {.lex_state = 410}, - [4422] = {.lex_state = 402}, - [4423] = {.lex_state = 407}, - [4424] = {.lex_state = 402}, - [4425] = {.lex_state = 849}, - [4426] = {.lex_state = 402}, - [4427] = {.lex_state = 407}, - [4428] = {.lex_state = 402}, - [4429] = {.lex_state = 849}, + [4397] = {.lex_state = 437}, + [4398] = {.lex_state = 410}, + [4399] = {.lex_state = 726, .external_lex_state = 2}, + [4400] = {.lex_state = 402}, + [4401] = {.lex_state = 654}, + [4402] = {.lex_state = 654}, + [4403] = {.lex_state = 833, .external_lex_state = 7}, + [4404] = {.lex_state = 402}, + [4405] = {.lex_state = 402}, + [4406] = {.lex_state = 402}, + [4407] = {.lex_state = 410}, + [4408] = {.lex_state = 437}, + [4409] = {.lex_state = 732, .external_lex_state = 8}, + [4410] = {.lex_state = 732, .external_lex_state = 8}, + [4411] = {.lex_state = 410}, + [4412] = {.lex_state = 602, .external_lex_state = 7}, + [4413] = {.lex_state = 602, .external_lex_state = 7}, + [4414] = {.lex_state = 732, .external_lex_state = 8}, + [4415] = {.lex_state = 790, .external_lex_state = 8}, + [4416] = {.lex_state = 790, .external_lex_state = 8}, + [4417] = {.lex_state = 457, .external_lex_state = 6}, + [4418] = {.lex_state = 457, .external_lex_state = 3}, + [4419] = {.lex_state = 627, .external_lex_state = 8}, + [4420] = {.lex_state = 627, .external_lex_state = 8}, + [4421] = {.lex_state = 302}, + [4422] = {.lex_state = 302}, + [4423] = {.lex_state = 461}, + [4424] = {.lex_state = 1012, .external_lex_state = 7}, + [4425] = {.lex_state = 587, .external_lex_state = 5}, + [4426] = {.lex_state = 589, .external_lex_state = 5}, + [4427] = {.lex_state = 437}, + [4428] = {.lex_state = 439, .external_lex_state = 2}, + [4429] = {.lex_state = 410}, [4430] = {.lex_state = 410}, - [4431] = {.lex_state = 437}, - [4432] = {.lex_state = 410}, - [4433] = {.lex_state = 410}, - [4434] = {.lex_state = 402}, - [4435] = {.lex_state = 681}, - [4436] = {.lex_state = 681}, - [4437] = {.lex_state = 681}, - [4438] = {.lex_state = 681}, - [4439] = {.lex_state = 681}, - [4440] = {.lex_state = 681}, - [4441] = {.lex_state = 410}, - [4442] = {.lex_state = 681}, - [4443] = {.lex_state = 410}, - [4444] = {.lex_state = 437}, - [4445] = {.lex_state = 410}, - [4446] = {.lex_state = 410}, - [4447] = {.lex_state = 831}, - [4448] = {.lex_state = 402}, - [4449] = {.lex_state = 609}, + [4431] = {.lex_state = 402}, + [4432] = {.lex_state = 596}, + [4433] = {.lex_state = 825, .external_lex_state = 7}, + [4434] = {.lex_state = 398}, + [4435] = {.lex_state = 398}, + [4436] = {.lex_state = 402}, + [4437] = {.lex_state = 407}, + [4438] = {.lex_state = 402}, + [4439] = {.lex_state = 402}, + [4440] = {.lex_state = 835, .external_lex_state = 8}, + [4441] = {.lex_state = 835, .external_lex_state = 8}, + [4442] = {.lex_state = 410, .external_lex_state = 2}, + [4443] = {.lex_state = 825, .external_lex_state = 7}, + [4444] = {.lex_state = 825, .external_lex_state = 7}, + [4445] = {.lex_state = 402}, + [4446] = {.lex_state = 431, .external_lex_state = 2}, + [4447] = {.lex_state = 302}, + [4448] = {.lex_state = 926, .external_lex_state = 8}, + [4449] = {.lex_state = 926, .external_lex_state = 8}, [4450] = {.lex_state = 402}, - [4451] = {.lex_state = 828}, - [4452] = {.lex_state = 828}, - [4453] = {.lex_state = 410}, - [4454] = {.lex_state = 437}, - [4455] = {.lex_state = 398}, - [4456] = {.lex_state = 398}, - [4457] = {.lex_state = 609}, - [4458] = {.lex_state = 609}, - [4459] = {.lex_state = 410}, - [4460] = {.lex_state = 402}, - [4461] = {.lex_state = 431}, - [4462] = {.lex_state = 410}, - [4463] = {.lex_state = 410}, - [4464] = {.lex_state = 402}, - [4465] = {.lex_state = 609}, - [4466] = {.lex_state = 581}, - [4467] = {.lex_state = 439}, - [4468] = {.lex_state = 609}, - [4469] = {.lex_state = 402}, - [4470] = {.lex_state = 410}, - [4471] = {.lex_state = 402}, - [4472] = {.lex_state = 407}, + [4451] = {.lex_state = 457, .external_lex_state = 3}, + [4452] = {.lex_state = 539}, + [4453] = {.lex_state = 926, .external_lex_state = 8}, + [4454] = {.lex_state = 926, .external_lex_state = 8}, + [4455] = {.lex_state = 926, .external_lex_state = 8}, + [4456] = {.lex_state = 630, .external_lex_state = 8}, + [4457] = {.lex_state = 630, .external_lex_state = 8}, + [4458] = {.lex_state = 302}, + [4459] = {.lex_state = 302}, + [4460] = {.lex_state = 461}, + [4461] = {.lex_state = 1016, .external_lex_state = 7}, + [4462] = {.lex_state = 587, .external_lex_state = 5}, + [4463] = {.lex_state = 589, .external_lex_state = 5}, + [4464] = {.lex_state = 437}, + [4465] = {.lex_state = 439, .external_lex_state = 2}, + [4466] = {.lex_state = 410}, + [4467] = {.lex_state = 410}, + [4468] = {.lex_state = 402}, + [4469] = {.lex_state = 596}, + [4470] = {.lex_state = 828, .external_lex_state = 7}, + [4471] = {.lex_state = 398}, + [4472] = {.lex_state = 398}, [4473] = {.lex_state = 402}, - [4474] = {.lex_state = 852}, + [4474] = {.lex_state = 407}, [4475] = {.lex_state = 402}, - [4476] = {.lex_state = 407}, - [4477] = {.lex_state = 402}, - [4478] = {.lex_state = 852}, - [4479] = {.lex_state = 410}, - [4480] = {.lex_state = 437}, - [4481] = {.lex_state = 410}, - [4482] = {.lex_state = 410}, - [4483] = {.lex_state = 402}, - [4484] = {.lex_state = 609}, - [4485] = {.lex_state = 609}, - [4486] = {.lex_state = 609}, - [4487] = {.lex_state = 609}, - [4488] = {.lex_state = 410}, - [4489] = {.lex_state = 609}, - [4490] = {.lex_state = 410}, - [4491] = {.lex_state = 437}, - [4492] = {.lex_state = 410}, - [4493] = {.lex_state = 410}, - [4494] = {.lex_state = 837}, - [4495] = {.lex_state = 402}, - [4496] = {.lex_state = 684}, - [4497] = {.lex_state = 402}, - [4498] = {.lex_state = 834}, - [4499] = {.lex_state = 834}, + [4476] = {.lex_state = 402}, + [4477] = {.lex_state = 736, .external_lex_state = 8}, + [4478] = {.lex_state = 736, .external_lex_state = 8}, + [4479] = {.lex_state = 410, .external_lex_state = 2}, + [4480] = {.lex_state = 828, .external_lex_state = 7}, + [4481] = {.lex_state = 828, .external_lex_state = 7}, + [4482] = {.lex_state = 402}, + [4483] = {.lex_state = 431, .external_lex_state = 2}, + [4484] = {.lex_state = 402}, + [4485] = {.lex_state = 457, .external_lex_state = 3}, + [4486] = {.lex_state = 539}, + [4487] = {.lex_state = 793, .external_lex_state = 8}, + [4488] = {.lex_state = 793, .external_lex_state = 8}, + [4489] = {.lex_state = 793, .external_lex_state = 8}, + [4490] = {.lex_state = 633, .external_lex_state = 7}, + [4491] = {.lex_state = 633, .external_lex_state = 7}, + [4492] = {.lex_state = 302}, + [4493] = {.lex_state = 302}, + [4494] = {.lex_state = 461}, + [4495] = {.lex_state = 1020, .external_lex_state = 7}, + [4496] = {.lex_state = 587, .external_lex_state = 5}, + [4497] = {.lex_state = 589, .external_lex_state = 5}, + [4498] = {.lex_state = 437}, + [4499] = {.lex_state = 439, .external_lex_state = 2}, [4500] = {.lex_state = 410}, - [4501] = {.lex_state = 437}, - [4502] = {.lex_state = 684}, - [4503] = {.lex_state = 410}, - [4504] = {.lex_state = 410}, - [4505] = {.lex_state = 402}, - [4506] = {.lex_state = 684}, - [4507] = {.lex_state = 581}, - [4508] = {.lex_state = 439}, - [4509] = {.lex_state = 684}, - [4510] = {.lex_state = 402}, - [4511] = {.lex_state = 410}, - [4512] = {.lex_state = 684}, - [4513] = {.lex_state = 684}, - [4514] = {.lex_state = 410}, - [4515] = {.lex_state = 684}, - [4516] = {.lex_state = 840}, - [4517] = {.lex_state = 840}, + [4501] = {.lex_state = 410}, + [4502] = {.lex_state = 402}, + [4503] = {.lex_state = 596}, + [4504] = {.lex_state = 971, .external_lex_state = 8}, + [4505] = {.lex_state = 971, .external_lex_state = 8}, + [4506] = {.lex_state = 410, .external_lex_state = 2}, + [4507] = {.lex_state = 402}, + [4508] = {.lex_state = 457, .external_lex_state = 3}, + [4509] = {.lex_state = 539}, + [4510] = {.lex_state = 991, .external_lex_state = 8}, + [4511] = {.lex_state = 991, .external_lex_state = 8}, + [4512] = {.lex_state = 991, .external_lex_state = 8}, + [4513] = {.lex_state = 837, .external_lex_state = 8}, + [4514] = {.lex_state = 729, .external_lex_state = 8}, + [4515] = {.lex_state = 729, .external_lex_state = 8}, + [4516] = {.lex_state = 410}, + [4517] = {.lex_state = 437}, [4518] = {.lex_state = 410}, - [4519] = {.lex_state = 437}, - [4520] = {.lex_state = 410}, - [4521] = {.lex_state = 690}, - [4522] = {.lex_state = 398}, - [4523] = {.lex_state = 410}, - [4524] = {.lex_state = 410}, - [4525] = {.lex_state = 302}, - [4526] = {.lex_state = 302}, - [4527] = {.lex_state = 423}, - [4528] = {.lex_state = 398}, - [4529] = {.lex_state = 398}, - [4530] = {.lex_state = 642}, - [4531] = {.lex_state = 410}, + [4519] = {.lex_state = 410}, + [4520] = {.lex_state = 591, .external_lex_state = 8}, + [4521] = {.lex_state = 591, .external_lex_state = 8}, + [4522] = {.lex_state = 854, .external_lex_state = 2}, + [4523] = {.lex_state = 402}, + [4524] = {.lex_state = 402}, + [4525] = {.lex_state = 402}, + [4526] = {.lex_state = 410}, + [4527] = {.lex_state = 437}, + [4528] = {.lex_state = 651}, + [4529] = {.lex_state = 410}, + [4530] = {.lex_state = 860, .external_lex_state = 2}, + [4531] = {.lex_state = 402}, [4532] = {.lex_state = 402}, - [4533] = {.lex_state = 431}, - [4534] = {.lex_state = 532}, - [4535] = {.lex_state = 398}, - [4536] = {.lex_state = 402}, - [4537] = {.lex_state = 581}, - [4538] = {.lex_state = 642}, - [4539] = {.lex_state = 581}, + [4533] = {.lex_state = 402}, + [4534] = {.lex_state = 410}, + [4535] = {.lex_state = 437}, + [4536] = {.lex_state = 557}, + [4537] = {.lex_state = 410}, + [4538] = {.lex_state = 866, .external_lex_state = 2}, + [4539] = {.lex_state = 402}, [4540] = {.lex_state = 402}, - [4541] = {.lex_state = 843}, - [4542] = {.lex_state = 843}, - [4543] = {.lex_state = 642}, - [4544] = {.lex_state = 642}, - [4545] = {.lex_state = 642}, - [4546] = {.lex_state = 642}, - [4547] = {.lex_state = 410}, - [4548] = {.lex_state = 437}, - [4549] = {.lex_state = 410}, - [4550] = {.lex_state = 696}, - [4551] = {.lex_state = 398}, - [4552] = {.lex_state = 410}, - [4553] = {.lex_state = 410}, - [4554] = {.lex_state = 302}, - [4555] = {.lex_state = 302}, - [4556] = {.lex_state = 423}, - [4557] = {.lex_state = 398}, - [4558] = {.lex_state = 398}, - [4559] = {.lex_state = 554}, - [4560] = {.lex_state = 410}, - [4561] = {.lex_state = 402}, - [4562] = {.lex_state = 431}, - [4563] = {.lex_state = 419}, - [4564] = {.lex_state = 398}, + [4541] = {.lex_state = 402}, + [4542] = {.lex_state = 410}, + [4543] = {.lex_state = 437}, + [4544] = {.lex_state = 654}, + [4545] = {.lex_state = 410}, + [4546] = {.lex_state = 660, .external_lex_state = 2}, + [4547] = {.lex_state = 875, .external_lex_state = 2}, + [4548] = {.lex_state = 402}, + [4549] = {.lex_state = 402}, + [4550] = {.lex_state = 402}, + [4551] = {.lex_state = 410}, + [4552] = {.lex_state = 437}, + [4553] = {.lex_state = 663}, + [4554] = {.lex_state = 663}, + [4555] = {.lex_state = 410}, + [4556] = {.lex_state = 973, .external_lex_state = 2}, + [4557] = {.lex_state = 973, .external_lex_state = 2}, + [4558] = {.lex_state = 663}, + [4559] = {.lex_state = 663}, + [4560] = {.lex_state = 457, .external_lex_state = 6}, + [4561] = {.lex_state = 457, .external_lex_state = 3}, + [4562] = {.lex_state = 881, .external_lex_state = 2}, + [4563] = {.lex_state = 402}, + [4564] = {.lex_state = 402}, [4565] = {.lex_state = 402}, - [4566] = {.lex_state = 581}, - [4567] = {.lex_state = 554}, - [4568] = {.lex_state = 581}, - [4569] = {.lex_state = 402}, - [4570] = {.lex_state = 554}, - [4571] = {.lex_state = 554}, - [4572] = {.lex_state = 554}, - [4573] = {.lex_state = 410}, - [4574] = {.lex_state = 437}, - [4575] = {.lex_state = 410}, - [4576] = {.lex_state = 702}, - [4577] = {.lex_state = 398}, - [4578] = {.lex_state = 398}, - [4579] = {.lex_state = 410}, - [4580] = {.lex_state = 410}, - [4581] = {.lex_state = 302}, - [4582] = {.lex_state = 645}, - [4583] = {.lex_state = 410}, - [4584] = {.lex_state = 402}, - [4585] = {.lex_state = 302}, - [4586] = {.lex_state = 431}, - [4587] = {.lex_state = 627}, - [4588] = {.lex_state = 398}, - [4589] = {.lex_state = 402}, - [4590] = {.lex_state = 581}, - [4591] = {.lex_state = 645}, - [4592] = {.lex_state = 581}, - [4593] = {.lex_state = 402}, - [4594] = {.lex_state = 645}, - [4595] = {.lex_state = 645}, - [4596] = {.lex_state = 645}, - [4597] = {.lex_state = 402}, - [4598] = {.lex_state = 402}, - [4599] = {.lex_state = 402}, - [4600] = {.lex_state = 645}, - [4601] = {.lex_state = 780}, + [4566] = {.lex_state = 410}, + [4567] = {.lex_state = 437}, + [4568] = {.lex_state = 572}, + [4569] = {.lex_state = 572}, + [4570] = {.lex_state = 410}, + [4571] = {.lex_state = 572}, + [4572] = {.lex_state = 457, .external_lex_state = 6}, + [4573] = {.lex_state = 457, .external_lex_state = 3}, + [4574] = {.lex_state = 887, .external_lex_state = 2}, + [4575] = {.lex_state = 402}, + [4576] = {.lex_state = 402}, + [4577] = {.lex_state = 402}, + [4578] = {.lex_state = 410}, + [4579] = {.lex_state = 437}, + [4580] = {.lex_state = 666}, + [4581] = {.lex_state = 666}, + [4582] = {.lex_state = 410}, + [4583] = {.lex_state = 666}, + [4584] = {.lex_state = 457, .external_lex_state = 6}, + [4585] = {.lex_state = 457, .external_lex_state = 3}, + [4586] = {.lex_state = 410}, + [4587] = {.lex_state = 437}, + [4588] = {.lex_state = 410}, + [4589] = {.lex_state = 761, .external_lex_state = 4}, + [4590] = {.lex_state = 976, .external_lex_state = 4}, + [4591] = {.lex_state = 976, .external_lex_state = 4}, + [4592] = {.lex_state = 302}, + [4593] = {.lex_state = 302}, + [4594] = {.lex_state = 461}, + [4595] = {.lex_state = 1024, .external_lex_state = 4}, + [4596] = {.lex_state = 587, .external_lex_state = 5}, + [4597] = {.lex_state = 589, .external_lex_state = 5}, + [4598] = {.lex_state = 437}, + [4599] = {.lex_state = 439, .external_lex_state = 2}, + [4600] = {.lex_state = 410}, + [4601] = {.lex_state = 410}, [4602] = {.lex_state = 402}, - [4603] = {.lex_state = 402}, - [4604] = {.lex_state = 402}, - [4605] = {.lex_state = 410}, - [4606] = {.lex_state = 437}, - [4607] = {.lex_state = 777}, - [4608] = {.lex_state = 777}, - [4609] = {.lex_state = 402}, - [4610] = {.lex_state = 642}, - [4611] = {.lex_state = 402}, - [4612] = {.lex_state = 642}, - [4613] = {.lex_state = 642}, - [4614] = {.lex_state = 410}, - [4615] = {.lex_state = 302}, - [4616] = {.lex_state = 642}, - [4617] = {.lex_state = 642}, - [4618] = {.lex_state = 786}, - [4619] = {.lex_state = 402}, - [4620] = {.lex_state = 402}, + [4603] = {.lex_state = 596}, + [4604] = {.lex_state = 893, .external_lex_state = 5}, + [4605] = {.lex_state = 457, .external_lex_state = 3}, + [4606] = {.lex_state = 539}, + [4607] = {.lex_state = 893, .external_lex_state = 5}, + [4608] = {.lex_state = 893, .external_lex_state = 5}, + [4609] = {.lex_state = 893, .external_lex_state = 5}, + [4610] = {.lex_state = 893, .external_lex_state = 5}, + [4611] = {.lex_state = 1030, .external_lex_state = 5}, + [4612] = {.lex_state = 1030, .external_lex_state = 5}, + [4613] = {.lex_state = 410}, + [4614] = {.lex_state = 437}, + [4615] = {.lex_state = 410}, + [4616] = {.lex_state = 410}, + [4617] = {.lex_state = 763, .external_lex_state = 5}, + [4618] = {.lex_state = 763, .external_lex_state = 5}, + [4619] = {.lex_state = 676, .external_lex_state = 4}, + [4620] = {.lex_state = 898, .external_lex_state = 4}, [4621] = {.lex_state = 402}, - [4622] = {.lex_state = 410}, - [4623] = {.lex_state = 437}, - [4624] = {.lex_state = 783}, - [4625] = {.lex_state = 783}, - [4626] = {.lex_state = 554}, - [4627] = {.lex_state = 402}, - [4628] = {.lex_state = 554}, - [4629] = {.lex_state = 554}, - [4630] = {.lex_state = 410}, - [4631] = {.lex_state = 302}, - [4632] = {.lex_state = 554}, - [4633] = {.lex_state = 554}, - [4634] = {.lex_state = 792}, - [4635] = {.lex_state = 402}, - [4636] = {.lex_state = 402}, - [4637] = {.lex_state = 402}, + [4622] = {.lex_state = 402}, + [4623] = {.lex_state = 402}, + [4624] = {.lex_state = 410}, + [4625] = {.lex_state = 437}, + [4626] = {.lex_state = 772, .external_lex_state = 5}, + [4627] = {.lex_state = 772, .external_lex_state = 5}, + [4628] = {.lex_state = 410}, + [4629] = {.lex_state = 772, .external_lex_state = 5}, + [4630] = {.lex_state = 402}, + [4631] = {.lex_state = 684, .external_lex_state = 5}, + [4632] = {.lex_state = 900, .external_lex_state = 5}, + [4633] = {.lex_state = 900, .external_lex_state = 5}, + [4634] = {.lex_state = 457, .external_lex_state = 6}, + [4635] = {.lex_state = 457, .external_lex_state = 3}, + [4636] = {.lex_state = 410}, + [4637] = {.lex_state = 437}, [4638] = {.lex_state = 410}, - [4639] = {.lex_state = 437}, - [4640] = {.lex_state = 789}, - [4641] = {.lex_state = 789}, - [4642] = {.lex_state = 645}, - [4643] = {.lex_state = 402}, - [4644] = {.lex_state = 645}, - [4645] = {.lex_state = 645}, - [4646] = {.lex_state = 410}, - [4647] = {.lex_state = 302}, - [4648] = {.lex_state = 645}, - [4649] = {.lex_state = 645}, - [4650] = {.lex_state = 402}, + [4639] = {.lex_state = 777, .external_lex_state = 4}, + [4640] = {.lex_state = 681, .external_lex_state = 5}, + [4641] = {.lex_state = 681, .external_lex_state = 5}, + [4642] = {.lex_state = 410}, + [4643] = {.lex_state = 437}, + [4644] = {.lex_state = 410}, + [4645] = {.lex_state = 410}, + [4646] = {.lex_state = 982, .external_lex_state = 4}, + [4647] = {.lex_state = 402}, + [4648] = {.lex_state = 780, .external_lex_state = 5}, + [4649] = {.lex_state = 402}, + [4650] = {.lex_state = 457, .external_lex_state = 6}, [4651] = {.lex_state = 402}, - [4652] = {.lex_state = 302}, - [4653] = {.lex_state = 657}, - [4654] = {.lex_state = 402}, - [4655] = {.lex_state = 657}, - [4656] = {.lex_state = 402}, - [4657] = {.lex_state = 569}, - [4658] = {.lex_state = 402}, - [4659] = {.lex_state = 660}, - [4660] = {.lex_state = 654}, - [4661] = {.lex_state = 801}, - [4662] = {.lex_state = 402}, - [4663] = {.lex_state = 402}, - [4664] = {.lex_state = 402}, - [4665] = {.lex_state = 410}, - [4666] = {.lex_state = 437}, - [4667] = {.lex_state = 798}, - [4668] = {.lex_state = 798}, - [4669] = {.lex_state = 402}, - [4670] = {.lex_state = 657}, - [4671] = {.lex_state = 402}, - [4672] = {.lex_state = 657}, - [4673] = {.lex_state = 657}, - [4674] = {.lex_state = 410}, - [4675] = {.lex_state = 846}, - [4676] = {.lex_state = 846}, - [4677] = {.lex_state = 657}, - [4678] = {.lex_state = 302}, - [4679] = {.lex_state = 657}, - [4680] = {.lex_state = 657}, - [4681] = {.lex_state = 807}, + [4652] = {.lex_state = 410}, + [4653] = {.lex_state = 402}, + [4654] = {.lex_state = 407}, + [4655] = {.lex_state = 402}, + [4656] = {.lex_state = 1033, .external_lex_state = 4}, + [4657] = {.lex_state = 402}, + [4658] = {.lex_state = 407}, + [4659] = {.lex_state = 402}, + [4660] = {.lex_state = 1033, .external_lex_state = 4}, + [4661] = {.lex_state = 410}, + [4662] = {.lex_state = 437}, + [4663] = {.lex_state = 410}, + [4664] = {.lex_state = 410}, + [4665] = {.lex_state = 402}, + [4666] = {.lex_state = 780, .external_lex_state = 5}, + [4667] = {.lex_state = 780, .external_lex_state = 5}, + [4668] = {.lex_state = 780, .external_lex_state = 5}, + [4669] = {.lex_state = 780, .external_lex_state = 5}, + [4670] = {.lex_state = 639, .external_lex_state = 6}, + [4671] = {.lex_state = 780, .external_lex_state = 5}, + [4672] = {.lex_state = 780, .external_lex_state = 5}, + [4673] = {.lex_state = 410}, + [4674] = {.lex_state = 780, .external_lex_state = 5}, + [4675] = {.lex_state = 410}, + [4676] = {.lex_state = 437}, + [4677] = {.lex_state = 410}, + [4678] = {.lex_state = 410}, + [4679] = {.lex_state = 988, .external_lex_state = 4}, + [4680] = {.lex_state = 402}, + [4681] = {.lex_state = 684, .external_lex_state = 5}, [4682] = {.lex_state = 402}, - [4683] = {.lex_state = 402}, + [4683] = {.lex_state = 457, .external_lex_state = 6}, [4684] = {.lex_state = 402}, [4685] = {.lex_state = 410}, - [4686] = {.lex_state = 437}, - [4687] = {.lex_state = 804}, - [4688] = {.lex_state = 804}, - [4689] = {.lex_state = 569}, - [4690] = {.lex_state = 402}, - [4691] = {.lex_state = 569}, - [4692] = {.lex_state = 569}, + [4686] = {.lex_state = 639, .external_lex_state = 6}, + [4687] = {.lex_state = 684, .external_lex_state = 5}, + [4688] = {.lex_state = 684, .external_lex_state = 5}, + [4689] = {.lex_state = 410}, + [4690] = {.lex_state = 684, .external_lex_state = 5}, + [4691] = {.lex_state = 410}, + [4692] = {.lex_state = 437}, [4693] = {.lex_state = 410}, - [4694] = {.lex_state = 302}, - [4695] = {.lex_state = 569}, - [4696] = {.lex_state = 569}, - [4697] = {.lex_state = 813}, + [4694] = {.lex_state = 932, .external_lex_state = 4}, + [4695] = {.lex_state = 402}, + [4696] = {.lex_state = 991, .external_lex_state = 5}, + [4697] = {.lex_state = 410, .external_lex_state = 2}, [4698] = {.lex_state = 402}, [4699] = {.lex_state = 402}, - [4700] = {.lex_state = 402}, - [4701] = {.lex_state = 410}, - [4702] = {.lex_state = 437}, - [4703] = {.lex_state = 810}, - [4704] = {.lex_state = 810}, - [4705] = {.lex_state = 660}, - [4706] = {.lex_state = 402}, - [4707] = {.lex_state = 660}, - [4708] = {.lex_state = 660}, - [4709] = {.lex_state = 410}, - [4710] = {.lex_state = 302}, - [4711] = {.lex_state = 660}, - [4712] = {.lex_state = 660}, - [4713] = {.lex_state = 402}, - [4714] = {.lex_state = 581}, - [4715] = {.lex_state = 439}, - [4716] = {.lex_state = 410}, - [4717] = {.lex_state = 402}, - [4718] = {.lex_state = 645}, - [4719] = {.lex_state = 410}, - [4720] = {.lex_state = 402}, - [4721] = {.lex_state = 557}, - [4722] = {.lex_state = 410}, + [4700] = {.lex_state = 398}, + [4701] = {.lex_state = 398}, + [4702] = {.lex_state = 926, .external_lex_state = 5}, + [4703] = {.lex_state = 410, .external_lex_state = 2}, + [4704] = {.lex_state = 402}, + [4705] = {.lex_state = 431, .external_lex_state = 2}, + [4706] = {.lex_state = 302}, + [4707] = {.lex_state = 402}, + [4708] = {.lex_state = 926, .external_lex_state = 5}, + [4709] = {.lex_state = 402}, + [4710] = {.lex_state = 398}, + [4711] = {.lex_state = 398}, + [4712] = {.lex_state = 793, .external_lex_state = 5}, + [4713] = {.lex_state = 410, .external_lex_state = 2}, + [4714] = {.lex_state = 402}, + [4715] = {.lex_state = 431, .external_lex_state = 2}, + [4716] = {.lex_state = 402}, + [4717] = {.lex_state = 793, .external_lex_state = 5}, + [4718] = {.lex_state = 402}, + [4719] = {.lex_state = 991, .external_lex_state = 5}, + [4720] = {.lex_state = 929, .external_lex_state = 5}, + [4721] = {.lex_state = 796, .external_lex_state = 5}, + [4722] = {.lex_state = 796, .external_lex_state = 5}, [4723] = {.lex_state = 402}, - [4724] = {.lex_state = 398}, - [4725] = {.lex_state = 398}, - [4726] = {.lex_state = 642}, - [4727] = {.lex_state = 410}, - [4728] = {.lex_state = 402}, - [4729] = {.lex_state = 431}, - [4730] = {.lex_state = 302}, - [4731] = {.lex_state = 642}, - [4732] = {.lex_state = 402}, - [4733] = {.lex_state = 642}, + [4724] = {.lex_state = 936, .external_lex_state = 7}, + [4725] = {.lex_state = 402}, + [4726] = {.lex_state = 402}, + [4727] = {.lex_state = 402}, + [4728] = {.lex_state = 410}, + [4729] = {.lex_state = 437}, + [4730] = {.lex_state = 808, .external_lex_state = 8}, + [4731] = {.lex_state = 808, .external_lex_state = 8}, + [4732] = {.lex_state = 410}, + [4733] = {.lex_state = 808, .external_lex_state = 8}, [4734] = {.lex_state = 402}, - [4735] = {.lex_state = 554}, - [4736] = {.lex_state = 410}, - [4737] = {.lex_state = 402}, - [4738] = {.lex_state = 554}, - [4739] = {.lex_state = 398}, - [4740] = {.lex_state = 402}, - [4741] = {.lex_state = 581}, - [4742] = {.lex_state = 645}, - [4743] = {.lex_state = 581}, - [4744] = {.lex_state = 402}, - [4745] = {.lex_state = 645}, - [4746] = {.lex_state = 535}, - [4747] = {.lex_state = 645}, - [4748] = {.lex_state = 645}, - [4749] = {.lex_state = 819}, - [4750] = {.lex_state = 738}, - [4751] = {.lex_state = 738}, - [4752] = {.lex_state = 738}, - [4753] = {.lex_state = 410}, - [4754] = {.lex_state = 402}, - [4755] = {.lex_state = 302}, - [4756] = {.lex_state = 738}, - [4757] = {.lex_state = 738}, - [4758] = {.lex_state = 402}, - [4759] = {.lex_state = 402}, - [4760] = {.lex_state = 402}, - [4761] = {.lex_state = 402}, - [4762] = {.lex_state = 410}, - [4763] = {.lex_state = 402}, - [4764] = {.lex_state = 302}, - [4765] = {.lex_state = 633}, - [4766] = {.lex_state = 633}, - [4767] = {.lex_state = 525}, - [4768] = {.lex_state = 402}, - [4769] = {.lex_state = 581}, - [4770] = {.lex_state = 439}, - [4771] = {.lex_state = 642}, + [4735] = {.lex_state = 991, .external_lex_state = 8}, + [4736] = {.lex_state = 938, .external_lex_state = 8}, + [4737] = {.lex_state = 938, .external_lex_state = 8}, + [4738] = {.lex_state = 457, .external_lex_state = 6}, + [4739] = {.lex_state = 457, .external_lex_state = 3}, + [4740] = {.lex_state = 410}, + [4741] = {.lex_state = 437}, + [4742] = {.lex_state = 410}, + [4743] = {.lex_state = 788, .external_lex_state = 7}, + [4744] = {.lex_state = 923, .external_lex_state = 7}, + [4745] = {.lex_state = 402}, + [4746] = {.lex_state = 402}, + [4747] = {.lex_state = 402}, + [4748] = {.lex_state = 410}, + [4749] = {.lex_state = 437}, + [4750] = {.lex_state = 790, .external_lex_state = 8}, + [4751] = {.lex_state = 410}, + [4752] = {.lex_state = 994, .external_lex_state = 7}, + [4753] = {.lex_state = 994, .external_lex_state = 7}, + [4754] = {.lex_state = 790, .external_lex_state = 8}, + [4755] = {.lex_state = 997, .external_lex_state = 8}, + [4756] = {.lex_state = 997, .external_lex_state = 8}, + [4757] = {.lex_state = 302}, + [4758] = {.lex_state = 302}, + [4759] = {.lex_state = 461}, + [4760] = {.lex_state = 1036, .external_lex_state = 7}, + [4761] = {.lex_state = 587, .external_lex_state = 5}, + [4762] = {.lex_state = 589, .external_lex_state = 5}, + [4763] = {.lex_state = 437}, + [4764] = {.lex_state = 439, .external_lex_state = 2}, + [4765] = {.lex_state = 410}, + [4766] = {.lex_state = 410}, + [4767] = {.lex_state = 402}, + [4768] = {.lex_state = 596}, + [4769] = {.lex_state = 1057, .external_lex_state = 7}, + [4770] = {.lex_state = 398}, + [4771] = {.lex_state = 398}, [4772] = {.lex_state = 402}, - [4773] = {.lex_state = 642}, - [4774] = {.lex_state = 410}, + [4773] = {.lex_state = 407}, + [4774] = {.lex_state = 402}, [4775] = {.lex_state = 402}, - [4776] = {.lex_state = 581}, - [4777] = {.lex_state = 439}, - [4778] = {.lex_state = 554}, - [4779] = {.lex_state = 554}, - [4780] = {.lex_state = 410}, + [4776] = {.lex_state = 926, .external_lex_state = 8}, + [4777] = {.lex_state = 926, .external_lex_state = 8}, + [4778] = {.lex_state = 410, .external_lex_state = 2}, + [4779] = {.lex_state = 1057, .external_lex_state = 7}, + [4780] = {.lex_state = 1057, .external_lex_state = 7}, [4781] = {.lex_state = 402}, - [4782] = {.lex_state = 302}, - [4783] = {.lex_state = 642}, - [4784] = {.lex_state = 402}, - [4785] = {.lex_state = 642}, - [4786] = {.lex_state = 402}, - [4787] = {.lex_state = 554}, - [4788] = {.lex_state = 402}, - [4789] = {.lex_state = 645}, - [4790] = {.lex_state = 402}, - [4791] = {.lex_state = 402}, - [4792] = {.lex_state = 642}, - [4793] = {.lex_state = 302}, - [4794] = {.lex_state = 642}, - [4795] = {.lex_state = 642}, - [4796] = {.lex_state = 402}, - [4797] = {.lex_state = 554}, - [4798] = {.lex_state = 302}, - [4799] = {.lex_state = 554}, - [4800] = {.lex_state = 554}, - [4801] = {.lex_state = 402}, - [4802] = {.lex_state = 645}, - [4803] = {.lex_state = 302}, - [4804] = {.lex_state = 645}, - [4805] = {.lex_state = 645}, - [4806] = {.lex_state = 402}, - [4807] = {.lex_state = 302}, - [4808] = {.lex_state = 681}, + [4782] = {.lex_state = 431, .external_lex_state = 2}, + [4783] = {.lex_state = 1000, .external_lex_state = 8}, + [4784] = {.lex_state = 1000, .external_lex_state = 8}, + [4785] = {.lex_state = 302}, + [4786] = {.lex_state = 302}, + [4787] = {.lex_state = 461}, + [4788] = {.lex_state = 1042, .external_lex_state = 7}, + [4789] = {.lex_state = 587, .external_lex_state = 5}, + [4790] = {.lex_state = 589, .external_lex_state = 5}, + [4791] = {.lex_state = 437}, + [4792] = {.lex_state = 439, .external_lex_state = 2}, + [4793] = {.lex_state = 410}, + [4794] = {.lex_state = 410}, + [4795] = {.lex_state = 402}, + [4796] = {.lex_state = 596}, + [4797] = {.lex_state = 1060, .external_lex_state = 7}, + [4798] = {.lex_state = 398}, + [4799] = {.lex_state = 398}, + [4800] = {.lex_state = 402}, + [4801] = {.lex_state = 407}, + [4802] = {.lex_state = 402}, + [4803] = {.lex_state = 402}, + [4804] = {.lex_state = 793, .external_lex_state = 8}, + [4805] = {.lex_state = 793, .external_lex_state = 8}, + [4806] = {.lex_state = 410, .external_lex_state = 2}, + [4807] = {.lex_state = 1060, .external_lex_state = 7}, + [4808] = {.lex_state = 1060, .external_lex_state = 7}, [4809] = {.lex_state = 402}, - [4810] = {.lex_state = 681}, - [4811] = {.lex_state = 402}, - [4812] = {.lex_state = 402}, - [4813] = {.lex_state = 609}, - [4814] = {.lex_state = 402}, - [4815] = {.lex_state = 684}, - [4816] = {.lex_state = 678}, - [4817] = {.lex_state = 825}, - [4818] = {.lex_state = 402}, - [4819] = {.lex_state = 402}, - [4820] = {.lex_state = 402}, + [4810] = {.lex_state = 431, .external_lex_state = 2}, + [4811] = {.lex_state = 1003, .external_lex_state = 7}, + [4812] = {.lex_state = 1003, .external_lex_state = 7}, + [4813] = {.lex_state = 302}, + [4814] = {.lex_state = 302}, + [4815] = {.lex_state = 461}, + [4816] = {.lex_state = 1048, .external_lex_state = 7}, + [4817] = {.lex_state = 587, .external_lex_state = 5}, + [4818] = {.lex_state = 589, .external_lex_state = 5}, + [4819] = {.lex_state = 437}, + [4820] = {.lex_state = 439, .external_lex_state = 2}, [4821] = {.lex_state = 410}, - [4822] = {.lex_state = 437}, - [4823] = {.lex_state = 822}, - [4824] = {.lex_state = 822}, - [4825] = {.lex_state = 402}, - [4826] = {.lex_state = 681}, - [4827] = {.lex_state = 402}, - [4828] = {.lex_state = 681}, - [4829] = {.lex_state = 681}, - [4830] = {.lex_state = 410}, - [4831] = {.lex_state = 849}, - [4832] = {.lex_state = 849}, - [4833] = {.lex_state = 681}, - [4834] = {.lex_state = 302}, - [4835] = {.lex_state = 681}, - [4836] = {.lex_state = 681}, - [4837] = {.lex_state = 831}, - [4838] = {.lex_state = 402}, + [4822] = {.lex_state = 410}, + [4823] = {.lex_state = 402}, + [4824] = {.lex_state = 596}, + [4825] = {.lex_state = 991, .external_lex_state = 8}, + [4826] = {.lex_state = 944, .external_lex_state = 8}, + [4827] = {.lex_state = 1054, .external_lex_state = 8}, + [4828] = {.lex_state = 1054, .external_lex_state = 8}, + [4829] = {.lex_state = 410}, + [4830] = {.lex_state = 437}, + [4831] = {.lex_state = 410}, + [4832] = {.lex_state = 410}, + [4833] = {.lex_state = 799, .external_lex_state = 8}, + [4834] = {.lex_state = 799, .external_lex_state = 8}, + [4835] = {.lex_state = 402}, + [4836] = {.lex_state = 402}, + [4837] = {.lex_state = 702, .external_lex_state = 2}, + [4838] = {.lex_state = 950, .external_lex_state = 2}, [4839] = {.lex_state = 402}, [4840] = {.lex_state = 402}, - [4841] = {.lex_state = 410}, - [4842] = {.lex_state = 437}, - [4843] = {.lex_state = 828}, - [4844] = {.lex_state = 828}, - [4845] = {.lex_state = 402}, - [4846] = {.lex_state = 609}, - [4847] = {.lex_state = 402}, - [4848] = {.lex_state = 609}, - [4849] = {.lex_state = 609}, - [4850] = {.lex_state = 410}, - [4851] = {.lex_state = 852}, - [4852] = {.lex_state = 852}, - [4853] = {.lex_state = 609}, - [4854] = {.lex_state = 302}, - [4855] = {.lex_state = 609}, - [4856] = {.lex_state = 609}, - [4857] = {.lex_state = 837}, - [4858] = {.lex_state = 402}, - [4859] = {.lex_state = 402}, - [4860] = {.lex_state = 402}, + [4841] = {.lex_state = 402}, + [4842] = {.lex_state = 410}, + [4843] = {.lex_state = 437}, + [4844] = {.lex_state = 705}, + [4845] = {.lex_state = 705}, + [4846] = {.lex_state = 410}, + [4847] = {.lex_state = 1006, .external_lex_state = 2}, + [4848] = {.lex_state = 1006, .external_lex_state = 2}, + [4849] = {.lex_state = 705}, + [4850] = {.lex_state = 705}, + [4851] = {.lex_state = 457, .external_lex_state = 6}, + [4852] = {.lex_state = 457, .external_lex_state = 3}, + [4853] = {.lex_state = 956, .external_lex_state = 2}, + [4854] = {.lex_state = 402}, + [4855] = {.lex_state = 402}, + [4856] = {.lex_state = 402}, + [4857] = {.lex_state = 410}, + [4858] = {.lex_state = 437}, + [4859] = {.lex_state = 618}, + [4860] = {.lex_state = 618}, [4861] = {.lex_state = 410}, - [4862] = {.lex_state = 437}, - [4863] = {.lex_state = 834}, - [4864] = {.lex_state = 834}, - [4865] = {.lex_state = 684}, - [4866] = {.lex_state = 402}, - [4867] = {.lex_state = 684}, - [4868] = {.lex_state = 684}, - [4869] = {.lex_state = 410}, - [4870] = {.lex_state = 302}, - [4871] = {.lex_state = 684}, - [4872] = {.lex_state = 684}, - [4873] = {.lex_state = 690}, - [4874] = {.lex_state = 777}, - [4875] = {.lex_state = 780}, - [4876] = {.lex_state = 402}, - [4877] = {.lex_state = 642}, - [4878] = {.lex_state = 402}, - [4879] = {.lex_state = 402}, - [4880] = {.lex_state = 581}, - [4881] = {.lex_state = 439}, - [4882] = {.lex_state = 642}, - [4883] = {.lex_state = 696}, - [4884] = {.lex_state = 783}, - [4885] = {.lex_state = 786}, - [4886] = {.lex_state = 402}, - [4887] = {.lex_state = 554}, - [4888] = {.lex_state = 402}, - [4889] = {.lex_state = 402}, - [4890] = {.lex_state = 581}, - [4891] = {.lex_state = 439}, - [4892] = {.lex_state = 554}, - [4893] = {.lex_state = 702}, - [4894] = {.lex_state = 789}, - [4895] = {.lex_state = 792}, + [4862] = {.lex_state = 1009, .external_lex_state = 2}, + [4863] = {.lex_state = 1009, .external_lex_state = 2}, + [4864] = {.lex_state = 618}, + [4865] = {.lex_state = 618}, + [4866] = {.lex_state = 457, .external_lex_state = 6}, + [4867] = {.lex_state = 457, .external_lex_state = 3}, + [4868] = {.lex_state = 962, .external_lex_state = 2}, + [4869] = {.lex_state = 402}, + [4870] = {.lex_state = 402}, + [4871] = {.lex_state = 402}, + [4872] = {.lex_state = 410}, + [4873] = {.lex_state = 437}, + [4874] = {.lex_state = 708}, + [4875] = {.lex_state = 708}, + [4876] = {.lex_state = 410}, + [4877] = {.lex_state = 708}, + [4878] = {.lex_state = 457, .external_lex_state = 6}, + [4879] = {.lex_state = 457, .external_lex_state = 3}, + [4880] = {.lex_state = 714, .external_lex_state = 2}, + [4881] = {.lex_state = 720, .external_lex_state = 2}, + [4882] = {.lex_state = 726, .external_lex_state = 2}, + [4883] = {.lex_state = 410}, + [4884] = {.lex_state = 437}, + [4885] = {.lex_state = 410}, + [4886] = {.lex_state = 833, .external_lex_state = 7}, + [4887] = {.lex_state = 790, .external_lex_state = 8}, + [4888] = {.lex_state = 790, .external_lex_state = 8}, + [4889] = {.lex_state = 410}, + [4890] = {.lex_state = 437}, + [4891] = {.lex_state = 410}, + [4892] = {.lex_state = 410}, + [4893] = {.lex_state = 1014, .external_lex_state = 7}, + [4894] = {.lex_state = 402}, + [4895] = {.lex_state = 835, .external_lex_state = 8}, [4896] = {.lex_state = 402}, - [4897] = {.lex_state = 645}, + [4897] = {.lex_state = 457, .external_lex_state = 6}, [4898] = {.lex_state = 402}, - [4899] = {.lex_state = 398}, - [4900] = {.lex_state = 423}, - [4901] = {.lex_state = 402}, - [4902] = {.lex_state = 581}, - [4903] = {.lex_state = 439}, - [4904] = {.lex_state = 645}, - [4905] = {.lex_state = 410}, - [4906] = {.lex_state = 437}, - [4907] = {.lex_state = 410}, - [4908] = {.lex_state = 780}, - [4909] = {.lex_state = 642}, - [4910] = {.lex_state = 642}, + [4899] = {.lex_state = 410}, + [4900] = {.lex_state = 402}, + [4901] = {.lex_state = 407}, + [4902] = {.lex_state = 402}, + [4903] = {.lex_state = 825, .external_lex_state = 7}, + [4904] = {.lex_state = 402}, + [4905] = {.lex_state = 407}, + [4906] = {.lex_state = 402}, + [4907] = {.lex_state = 825, .external_lex_state = 7}, + [4908] = {.lex_state = 410}, + [4909] = {.lex_state = 437}, + [4910] = {.lex_state = 410}, [4911] = {.lex_state = 410}, - [4912] = {.lex_state = 437}, - [4913] = {.lex_state = 410}, - [4914] = {.lex_state = 786}, - [4915] = {.lex_state = 554}, - [4916] = {.lex_state = 554}, - [4917] = {.lex_state = 410}, - [4918] = {.lex_state = 437}, - [4919] = {.lex_state = 410}, - [4920] = {.lex_state = 792}, - [4921] = {.lex_state = 645}, - [4922] = {.lex_state = 645}, - [4923] = {.lex_state = 410}, - [4924] = {.lex_state = 437}, + [4912] = {.lex_state = 402}, + [4913] = {.lex_state = 835, .external_lex_state = 8}, + [4914] = {.lex_state = 926, .external_lex_state = 8}, + [4915] = {.lex_state = 926, .external_lex_state = 8}, + [4916] = {.lex_state = 926, .external_lex_state = 8}, + [4917] = {.lex_state = 639, .external_lex_state = 6}, + [4918] = {.lex_state = 926, .external_lex_state = 8}, + [4919] = {.lex_state = 926, .external_lex_state = 8}, + [4920] = {.lex_state = 410}, + [4921] = {.lex_state = 926, .external_lex_state = 8}, + [4922] = {.lex_state = 410}, + [4923] = {.lex_state = 437}, + [4924] = {.lex_state = 410}, [4925] = {.lex_state = 410}, - [4926] = {.lex_state = 801}, - [4927] = {.lex_state = 657}, - [4928] = {.lex_state = 657}, - [4929] = {.lex_state = 657}, - [4930] = {.lex_state = 657}, - [4931] = {.lex_state = 410}, - [4932] = {.lex_state = 437}, - [4933] = {.lex_state = 410}, - [4934] = {.lex_state = 807}, - [4935] = {.lex_state = 569}, - [4936] = {.lex_state = 569}, - [4937] = {.lex_state = 569}, - [4938] = {.lex_state = 569}, - [4939] = {.lex_state = 410}, - [4940] = {.lex_state = 437}, + [4926] = {.lex_state = 1018, .external_lex_state = 7}, + [4927] = {.lex_state = 402}, + [4928] = {.lex_state = 736, .external_lex_state = 8}, + [4929] = {.lex_state = 402}, + [4930] = {.lex_state = 457, .external_lex_state = 6}, + [4931] = {.lex_state = 402}, + [4932] = {.lex_state = 410}, + [4933] = {.lex_state = 402}, + [4934] = {.lex_state = 407}, + [4935] = {.lex_state = 402}, + [4936] = {.lex_state = 828, .external_lex_state = 7}, + [4937] = {.lex_state = 402}, + [4938] = {.lex_state = 407}, + [4939] = {.lex_state = 402}, + [4940] = {.lex_state = 828, .external_lex_state = 7}, [4941] = {.lex_state = 410}, - [4942] = {.lex_state = 813}, - [4943] = {.lex_state = 660}, - [4944] = {.lex_state = 660}, - [4945] = {.lex_state = 660}, - [4946] = {.lex_state = 660}, - [4947] = {.lex_state = 402}, - [4948] = {.lex_state = 410}, - [4949] = {.lex_state = 402}, - [4950] = {.lex_state = 302}, - [4951] = {.lex_state = 557}, - [4952] = {.lex_state = 557}, - [4953] = {.lex_state = 402}, - [4954] = {.lex_state = 402}, - [4955] = {.lex_state = 402}, - [4956] = {.lex_state = 581}, - [4957] = {.lex_state = 439}, - [4958] = {.lex_state = 645}, - [4959] = {.lex_state = 645}, - [4960] = {.lex_state = 410}, - [4961] = {.lex_state = 738}, - [4962] = {.lex_state = 633}, - [4963] = {.lex_state = 402}, - [4964] = {.lex_state = 642}, - [4965] = {.lex_state = 302}, - [4966] = {.lex_state = 642}, - [4967] = {.lex_state = 642}, - [4968] = {.lex_state = 402}, - [4969] = {.lex_state = 554}, - [4970] = {.lex_state = 302}, - [4971] = {.lex_state = 554}, - [4972] = {.lex_state = 554}, - [4973] = {.lex_state = 642}, - [4974] = {.lex_state = 554}, - [4975] = {.lex_state = 645}, - [4976] = {.lex_state = 410}, - [4977] = {.lex_state = 437}, - [4978] = {.lex_state = 410}, - [4979] = {.lex_state = 825}, - [4980] = {.lex_state = 681}, - [4981] = {.lex_state = 681}, - [4982] = {.lex_state = 681}, - [4983] = {.lex_state = 681}, - [4984] = {.lex_state = 410}, - [4985] = {.lex_state = 437}, - [4986] = {.lex_state = 410}, - [4987] = {.lex_state = 831}, - [4988] = {.lex_state = 609}, - [4989] = {.lex_state = 609}, - [4990] = {.lex_state = 609}, - [4991] = {.lex_state = 609}, - [4992] = {.lex_state = 410}, - [4993] = {.lex_state = 437}, - [4994] = {.lex_state = 410}, - [4995] = {.lex_state = 837}, - [4996] = {.lex_state = 684}, - [4997] = {.lex_state = 684}, - [4998] = {.lex_state = 684}, - [4999] = {.lex_state = 684}, - [5000] = {.lex_state = 402}, - [5001] = {.lex_state = 402}, - [5002] = {.lex_state = 642}, - [5003] = {.lex_state = 402}, - [5004] = {.lex_state = 402}, - [5005] = {.lex_state = 554}, - [5006] = {.lex_state = 402}, - [5007] = {.lex_state = 402}, - [5008] = {.lex_state = 645}, - [5009] = {.lex_state = 780}, - [5010] = {.lex_state = 786}, - [5011] = {.lex_state = 792}, - [5012] = {.lex_state = 801}, - [5013] = {.lex_state = 807}, - [5014] = {.lex_state = 813}, - [5015] = {.lex_state = 557}, - [5016] = {.lex_state = 402}, - [5017] = {.lex_state = 645}, - [5018] = {.lex_state = 302}, - [5019] = {.lex_state = 645}, - [5020] = {.lex_state = 645}, - [5021] = {.lex_state = 642}, - [5022] = {.lex_state = 554}, - [5023] = {.lex_state = 825}, - [5024] = {.lex_state = 831}, - [5025] = {.lex_state = 837}, - [5026] = {.lex_state = 645}, + [4942] = {.lex_state = 437}, + [4943] = {.lex_state = 410}, + [4944] = {.lex_state = 410}, + [4945] = {.lex_state = 402}, + [4946] = {.lex_state = 736, .external_lex_state = 8}, + [4947] = {.lex_state = 793, .external_lex_state = 8}, + [4948] = {.lex_state = 639, .external_lex_state = 6}, + [4949] = {.lex_state = 793, .external_lex_state = 8}, + [4950] = {.lex_state = 793, .external_lex_state = 8}, + [4951] = {.lex_state = 410}, + [4952] = {.lex_state = 793, .external_lex_state = 8}, + [4953] = {.lex_state = 410}, + [4954] = {.lex_state = 437}, + [4955] = {.lex_state = 410}, + [4956] = {.lex_state = 410}, + [4957] = {.lex_state = 1022, .external_lex_state = 7}, + [4958] = {.lex_state = 402}, + [4959] = {.lex_state = 971, .external_lex_state = 8}, + [4960] = {.lex_state = 402}, + [4961] = {.lex_state = 457, .external_lex_state = 6}, + [4962] = {.lex_state = 402}, + [4963] = {.lex_state = 410}, + [4964] = {.lex_state = 402}, + [4965] = {.lex_state = 971, .external_lex_state = 8}, + [4966] = {.lex_state = 639, .external_lex_state = 6}, + [4967] = {.lex_state = 991, .external_lex_state = 8}, + [4968] = {.lex_state = 991, .external_lex_state = 8}, + [4969] = {.lex_state = 410}, + [4970] = {.lex_state = 991, .external_lex_state = 8}, + [4971] = {.lex_state = 729, .external_lex_state = 8}, + [4972] = {.lex_state = 729, .external_lex_state = 8}, + [4973] = {.lex_state = 410}, + [4974] = {.lex_state = 437}, + [4975] = {.lex_state = 410}, + [4976] = {.lex_state = 854, .external_lex_state = 2}, + [4977] = {.lex_state = 410}, + [4978] = {.lex_state = 437}, + [4979] = {.lex_state = 410}, + [4980] = {.lex_state = 860, .external_lex_state = 2}, + [4981] = {.lex_state = 410}, + [4982] = {.lex_state = 437}, + [4983] = {.lex_state = 410}, + [4984] = {.lex_state = 866, .external_lex_state = 2}, + [4985] = {.lex_state = 410}, + [4986] = {.lex_state = 437}, + [4987] = {.lex_state = 410}, + [4988] = {.lex_state = 875, .external_lex_state = 2}, + [4989] = {.lex_state = 663}, + [4990] = {.lex_state = 663}, + [4991] = {.lex_state = 410}, + [4992] = {.lex_state = 437}, + [4993] = {.lex_state = 410}, + [4994] = {.lex_state = 881, .external_lex_state = 2}, + [4995] = {.lex_state = 572}, + [4996] = {.lex_state = 572}, + [4997] = {.lex_state = 410}, + [4998] = {.lex_state = 437}, + [4999] = {.lex_state = 410}, + [5000] = {.lex_state = 887, .external_lex_state = 2}, + [5001] = {.lex_state = 666}, + [5002] = {.lex_state = 666}, + [5003] = {.lex_state = 761, .external_lex_state = 4}, + [5004] = {.lex_state = 410}, + [5005] = {.lex_state = 437}, + [5006] = {.lex_state = 410}, + [5007] = {.lex_state = 410}, + [5008] = {.lex_state = 1027, .external_lex_state = 4}, + [5009] = {.lex_state = 402}, + [5010] = {.lex_state = 893, .external_lex_state = 5}, + [5011] = {.lex_state = 402}, + [5012] = {.lex_state = 457, .external_lex_state = 6}, + [5013] = {.lex_state = 402}, + [5014] = {.lex_state = 410}, + [5015] = {.lex_state = 639, .external_lex_state = 6}, + [5016] = {.lex_state = 893, .external_lex_state = 5}, + [5017] = {.lex_state = 893, .external_lex_state = 5}, + [5018] = {.lex_state = 410}, + [5019] = {.lex_state = 893, .external_lex_state = 5}, + [5020] = {.lex_state = 1030, .external_lex_state = 5}, + [5021] = {.lex_state = 1030, .external_lex_state = 5}, + [5022] = {.lex_state = 410}, + [5023] = {.lex_state = 437}, + [5024] = {.lex_state = 410}, + [5025] = {.lex_state = 898, .external_lex_state = 4}, + [5026] = {.lex_state = 684, .external_lex_state = 5}, + [5027] = {.lex_state = 900, .external_lex_state = 5}, + [5028] = {.lex_state = 900, .external_lex_state = 5}, + [5029] = {.lex_state = 777, .external_lex_state = 4}, + [5030] = {.lex_state = 982, .external_lex_state = 4}, + [5031] = {.lex_state = 402}, + [5032] = {.lex_state = 402}, + [5033] = {.lex_state = 402}, + [5034] = {.lex_state = 410}, + [5035] = {.lex_state = 437}, + [5036] = {.lex_state = 780, .external_lex_state = 5}, + [5037] = {.lex_state = 780, .external_lex_state = 5}, + [5038] = {.lex_state = 410}, + [5039] = {.lex_state = 1033, .external_lex_state = 4}, + [5040] = {.lex_state = 1033, .external_lex_state = 4}, + [5041] = {.lex_state = 780, .external_lex_state = 5}, + [5042] = {.lex_state = 780, .external_lex_state = 5}, + [5043] = {.lex_state = 457, .external_lex_state = 6}, + [5044] = {.lex_state = 457, .external_lex_state = 3}, + [5045] = {.lex_state = 988, .external_lex_state = 4}, + [5046] = {.lex_state = 402}, + [5047] = {.lex_state = 402}, + [5048] = {.lex_state = 402}, + [5049] = {.lex_state = 410}, + [5050] = {.lex_state = 437}, + [5051] = {.lex_state = 684, .external_lex_state = 5}, + [5052] = {.lex_state = 684, .external_lex_state = 5}, + [5053] = {.lex_state = 410}, + [5054] = {.lex_state = 684, .external_lex_state = 5}, + [5055] = {.lex_state = 457, .external_lex_state = 6}, + [5056] = {.lex_state = 457, .external_lex_state = 3}, + [5057] = {.lex_state = 932, .external_lex_state = 4}, + [5058] = {.lex_state = 402}, + [5059] = {.lex_state = 402}, + [5060] = {.lex_state = 402}, + [5061] = {.lex_state = 410}, + [5062] = {.lex_state = 437}, + [5063] = {.lex_state = 410}, + [5064] = {.lex_state = 936, .external_lex_state = 7}, + [5065] = {.lex_state = 991, .external_lex_state = 8}, + [5066] = {.lex_state = 938, .external_lex_state = 8}, + [5067] = {.lex_state = 938, .external_lex_state = 8}, + [5068] = {.lex_state = 788, .external_lex_state = 7}, + [5069] = {.lex_state = 410}, + [5070] = {.lex_state = 437}, + [5071] = {.lex_state = 410}, + [5072] = {.lex_state = 923, .external_lex_state = 7}, + [5073] = {.lex_state = 410}, + [5074] = {.lex_state = 437}, + [5075] = {.lex_state = 410}, + [5076] = {.lex_state = 410}, + [5077] = {.lex_state = 1039, .external_lex_state = 7}, + [5078] = {.lex_state = 402}, + [5079] = {.lex_state = 926, .external_lex_state = 8}, + [5080] = {.lex_state = 402}, + [5081] = {.lex_state = 457, .external_lex_state = 6}, + [5082] = {.lex_state = 402}, + [5083] = {.lex_state = 410}, + [5084] = {.lex_state = 402}, + [5085] = {.lex_state = 407}, + [5086] = {.lex_state = 402}, + [5087] = {.lex_state = 1057, .external_lex_state = 7}, + [5088] = {.lex_state = 402}, + [5089] = {.lex_state = 407}, + [5090] = {.lex_state = 402}, + [5091] = {.lex_state = 1057, .external_lex_state = 7}, + [5092] = {.lex_state = 410}, + [5093] = {.lex_state = 437}, + [5094] = {.lex_state = 410}, + [5095] = {.lex_state = 410}, + [5096] = {.lex_state = 402}, + [5097] = {.lex_state = 926, .external_lex_state = 8}, + [5098] = {.lex_state = 410}, + [5099] = {.lex_state = 437}, + [5100] = {.lex_state = 410}, + [5101] = {.lex_state = 410}, + [5102] = {.lex_state = 1045, .external_lex_state = 7}, + [5103] = {.lex_state = 402}, + [5104] = {.lex_state = 793, .external_lex_state = 8}, + [5105] = {.lex_state = 402}, + [5106] = {.lex_state = 457, .external_lex_state = 6}, + [5107] = {.lex_state = 402}, + [5108] = {.lex_state = 410}, + [5109] = {.lex_state = 402}, + [5110] = {.lex_state = 407}, + [5111] = {.lex_state = 402}, + [5112] = {.lex_state = 1060, .external_lex_state = 7}, + [5113] = {.lex_state = 402}, + [5114] = {.lex_state = 407}, + [5115] = {.lex_state = 402}, + [5116] = {.lex_state = 1060, .external_lex_state = 7}, + [5117] = {.lex_state = 410}, + [5118] = {.lex_state = 437}, + [5119] = {.lex_state = 410}, + [5120] = {.lex_state = 410}, + [5121] = {.lex_state = 402}, + [5122] = {.lex_state = 793, .external_lex_state = 8}, + [5123] = {.lex_state = 410}, + [5124] = {.lex_state = 437}, + [5125] = {.lex_state = 410}, + [5126] = {.lex_state = 410}, + [5127] = {.lex_state = 1051, .external_lex_state = 7}, + [5128] = {.lex_state = 402}, + [5129] = {.lex_state = 991, .external_lex_state = 8}, + [5130] = {.lex_state = 402}, + [5131] = {.lex_state = 457, .external_lex_state = 6}, + [5132] = {.lex_state = 402}, + [5133] = {.lex_state = 410}, + [5134] = {.lex_state = 1054, .external_lex_state = 8}, + [5135] = {.lex_state = 1054, .external_lex_state = 8}, + [5136] = {.lex_state = 410}, + [5137] = {.lex_state = 437}, + [5138] = {.lex_state = 410}, + [5139] = {.lex_state = 950, .external_lex_state = 2}, + [5140] = {.lex_state = 705}, + [5141] = {.lex_state = 705}, + [5142] = {.lex_state = 410}, + [5143] = {.lex_state = 437}, + [5144] = {.lex_state = 410}, + [5145] = {.lex_state = 956, .external_lex_state = 2}, + [5146] = {.lex_state = 618}, + [5147] = {.lex_state = 618}, + [5148] = {.lex_state = 410}, + [5149] = {.lex_state = 437}, + [5150] = {.lex_state = 410}, + [5151] = {.lex_state = 962, .external_lex_state = 2}, + [5152] = {.lex_state = 708}, + [5153] = {.lex_state = 708}, + [5154] = {.lex_state = 833, .external_lex_state = 7}, + [5155] = {.lex_state = 1014, .external_lex_state = 7}, + [5156] = {.lex_state = 402}, + [5157] = {.lex_state = 402}, + [5158] = {.lex_state = 402}, + [5159] = {.lex_state = 410}, + [5160] = {.lex_state = 437}, + [5161] = {.lex_state = 835, .external_lex_state = 8}, + [5162] = {.lex_state = 835, .external_lex_state = 8}, + [5163] = {.lex_state = 410}, + [5164] = {.lex_state = 825, .external_lex_state = 7}, + [5165] = {.lex_state = 825, .external_lex_state = 7}, + [5166] = {.lex_state = 835, .external_lex_state = 8}, + [5167] = {.lex_state = 926, .external_lex_state = 8}, + [5168] = {.lex_state = 926, .external_lex_state = 8}, + [5169] = {.lex_state = 457, .external_lex_state = 6}, + [5170] = {.lex_state = 457, .external_lex_state = 3}, + [5171] = {.lex_state = 1018, .external_lex_state = 7}, + [5172] = {.lex_state = 402}, + [5173] = {.lex_state = 402}, + [5174] = {.lex_state = 402}, + [5175] = {.lex_state = 410}, + [5176] = {.lex_state = 437}, + [5177] = {.lex_state = 736, .external_lex_state = 8}, + [5178] = {.lex_state = 736, .external_lex_state = 8}, + [5179] = {.lex_state = 410}, + [5180] = {.lex_state = 828, .external_lex_state = 7}, + [5181] = {.lex_state = 828, .external_lex_state = 7}, + [5182] = {.lex_state = 736, .external_lex_state = 8}, + [5183] = {.lex_state = 793, .external_lex_state = 8}, + [5184] = {.lex_state = 793, .external_lex_state = 8}, + [5185] = {.lex_state = 457, .external_lex_state = 6}, + [5186] = {.lex_state = 457, .external_lex_state = 3}, + [5187] = {.lex_state = 1022, .external_lex_state = 7}, + [5188] = {.lex_state = 402}, + [5189] = {.lex_state = 402}, + [5190] = {.lex_state = 402}, + [5191] = {.lex_state = 410}, + [5192] = {.lex_state = 437}, + [5193] = {.lex_state = 971, .external_lex_state = 8}, + [5194] = {.lex_state = 971, .external_lex_state = 8}, + [5195] = {.lex_state = 410}, + [5196] = {.lex_state = 971, .external_lex_state = 8}, + [5197] = {.lex_state = 991, .external_lex_state = 8}, + [5198] = {.lex_state = 991, .external_lex_state = 8}, + [5199] = {.lex_state = 457, .external_lex_state = 6}, + [5200] = {.lex_state = 457, .external_lex_state = 3}, + [5201] = {.lex_state = 854, .external_lex_state = 2}, + [5202] = {.lex_state = 860, .external_lex_state = 2}, + [5203] = {.lex_state = 866, .external_lex_state = 2}, + [5204] = {.lex_state = 875, .external_lex_state = 2}, + [5205] = {.lex_state = 881, .external_lex_state = 2}, + [5206] = {.lex_state = 887, .external_lex_state = 2}, + [5207] = {.lex_state = 1027, .external_lex_state = 4}, + [5208] = {.lex_state = 402}, + [5209] = {.lex_state = 402}, + [5210] = {.lex_state = 402}, + [5211] = {.lex_state = 410}, + [5212] = {.lex_state = 437}, + [5213] = {.lex_state = 893, .external_lex_state = 5}, + [5214] = {.lex_state = 893, .external_lex_state = 5}, + [5215] = {.lex_state = 410}, + [5216] = {.lex_state = 893, .external_lex_state = 5}, + [5217] = {.lex_state = 457, .external_lex_state = 6}, + [5218] = {.lex_state = 457, .external_lex_state = 3}, + [5219] = {.lex_state = 898, .external_lex_state = 4}, + [5220] = {.lex_state = 410}, + [5221] = {.lex_state = 437}, + [5222] = {.lex_state = 410}, + [5223] = {.lex_state = 982, .external_lex_state = 4}, + [5224] = {.lex_state = 780, .external_lex_state = 5}, + [5225] = {.lex_state = 780, .external_lex_state = 5}, + [5226] = {.lex_state = 410}, + [5227] = {.lex_state = 437}, + [5228] = {.lex_state = 410}, + [5229] = {.lex_state = 988, .external_lex_state = 4}, + [5230] = {.lex_state = 684, .external_lex_state = 5}, + [5231] = {.lex_state = 684, .external_lex_state = 5}, + [5232] = {.lex_state = 936, .external_lex_state = 7}, + [5233] = {.lex_state = 923, .external_lex_state = 7}, + [5234] = {.lex_state = 1039, .external_lex_state = 7}, + [5235] = {.lex_state = 402}, + [5236] = {.lex_state = 402}, + [5237] = {.lex_state = 402}, + [5238] = {.lex_state = 410}, + [5239] = {.lex_state = 437}, + [5240] = {.lex_state = 926, .external_lex_state = 8}, + [5241] = {.lex_state = 410}, + [5242] = {.lex_state = 1057, .external_lex_state = 7}, + [5243] = {.lex_state = 1057, .external_lex_state = 7}, + [5244] = {.lex_state = 926, .external_lex_state = 8}, + [5245] = {.lex_state = 1045, .external_lex_state = 7}, + [5246] = {.lex_state = 402}, + [5247] = {.lex_state = 402}, + [5248] = {.lex_state = 402}, + [5249] = {.lex_state = 410}, + [5250] = {.lex_state = 437}, + [5251] = {.lex_state = 793, .external_lex_state = 8}, + [5252] = {.lex_state = 410}, + [5253] = {.lex_state = 1060, .external_lex_state = 7}, + [5254] = {.lex_state = 1060, .external_lex_state = 7}, + [5255] = {.lex_state = 793, .external_lex_state = 8}, + [5256] = {.lex_state = 1051, .external_lex_state = 7}, + [5257] = {.lex_state = 402}, + [5258] = {.lex_state = 402}, + [5259] = {.lex_state = 402}, + [5260] = {.lex_state = 410}, + [5261] = {.lex_state = 437}, + [5262] = {.lex_state = 991, .external_lex_state = 8}, + [5263] = {.lex_state = 410}, + [5264] = {.lex_state = 950, .external_lex_state = 2}, + [5265] = {.lex_state = 956, .external_lex_state = 2}, + [5266] = {.lex_state = 962, .external_lex_state = 2}, + [5267] = {.lex_state = 410}, + [5268] = {.lex_state = 437}, + [5269] = {.lex_state = 410}, + [5270] = {.lex_state = 1014, .external_lex_state = 7}, + [5271] = {.lex_state = 926, .external_lex_state = 8}, + [5272] = {.lex_state = 926, .external_lex_state = 8}, + [5273] = {.lex_state = 410}, + [5274] = {.lex_state = 437}, + [5275] = {.lex_state = 410}, + [5276] = {.lex_state = 1018, .external_lex_state = 7}, + [5277] = {.lex_state = 793, .external_lex_state = 8}, + [5278] = {.lex_state = 793, .external_lex_state = 8}, + [5279] = {.lex_state = 410}, + [5280] = {.lex_state = 437}, + [5281] = {.lex_state = 410}, + [5282] = {.lex_state = 1022, .external_lex_state = 7}, + [5283] = {.lex_state = 991, .external_lex_state = 8}, + [5284] = {.lex_state = 991, .external_lex_state = 8}, + [5285] = {.lex_state = 410}, + [5286] = {.lex_state = 437}, + [5287] = {.lex_state = 410}, + [5288] = {.lex_state = 1027, .external_lex_state = 4}, + [5289] = {.lex_state = 893, .external_lex_state = 5}, + [5290] = {.lex_state = 893, .external_lex_state = 5}, + [5291] = {.lex_state = 982, .external_lex_state = 4}, + [5292] = {.lex_state = 988, .external_lex_state = 4}, + [5293] = {.lex_state = 410}, + [5294] = {.lex_state = 437}, + [5295] = {.lex_state = 410}, + [5296] = {.lex_state = 1039, .external_lex_state = 7}, + [5297] = {.lex_state = 410}, + [5298] = {.lex_state = 437}, + [5299] = {.lex_state = 410}, + [5300] = {.lex_state = 1045, .external_lex_state = 7}, + [5301] = {.lex_state = 410}, + [5302] = {.lex_state = 437}, + [5303] = {.lex_state = 410}, + [5304] = {.lex_state = 1051, .external_lex_state = 7}, + [5305] = {.lex_state = 1014, .external_lex_state = 7}, + [5306] = {.lex_state = 1018, .external_lex_state = 7}, + [5307] = {.lex_state = 1022, .external_lex_state = 7}, + [5308] = {.lex_state = 1027, .external_lex_state = 4}, + [5309] = {.lex_state = 1039, .external_lex_state = 7}, + [5310] = {.lex_state = 1045, .external_lex_state = 7}, + [5311] = {.lex_state = 1051, .external_lex_state = 7}, +}; + +enum { + ts_external_token__layout_semicolon, + ts_external_token__layout_open_brace, + ts_external_token__layout_close_brace, + ts_external_token_DASH_GT, +}; + +static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__layout_semicolon] = sym__layout_semicolon, + [ts_external_token__layout_open_brace] = sym__layout_open_brace, + [ts_external_token__layout_close_brace] = sym__layout_close_brace, + [ts_external_token_DASH_GT] = anon_sym_DASH_GT, +}; + +static bool ts_external_scanner_states[9][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__layout_semicolon] = true, + [ts_external_token__layout_open_brace] = true, + [ts_external_token__layout_close_brace] = true, + [ts_external_token_DASH_GT] = true, + }, + [2] = { + [ts_external_token_DASH_GT] = true, + }, + [3] = { + [ts_external_token__layout_open_brace] = true, + }, + [4] = { + [ts_external_token__layout_semicolon] = true, + [ts_external_token_DASH_GT] = true, + }, + [5] = { + [ts_external_token__layout_semicolon] = true, + }, + [6] = { + [ts_external_token__layout_close_brace] = true, + }, + [7] = { + [ts_external_token__layout_semicolon] = true, + [ts_external_token__layout_close_brace] = true, + [ts_external_token_DASH_GT] = true, + }, + [8] = { + [ts_external_token__layout_semicolon] = true, + [ts_external_token__layout_close_brace] = true, + }, }; static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [0] = { + [sym__layout_semicolon] = ACTIONS(1), + [sym__layout_open_brace] = ACTIONS(1), + [sym__layout_close_brace] = ACTIONS(1), [ts_builtin_sym_end] = ACTIONS(1), [sym_int] = ACTIONS(3), [sym_literal] = ACTIONS(1), @@ -26284,60 +33521,5551 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rewrite] = ACTIONS(1), [anon_sym_with] = ACTIONS(1), }, - [1] = { - [sym_source_file] = STATE(11), - [sym__expr1] = STATE(12), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), + [1] = { + [sym_source_file] = STATE(11), + [sym__expr1] = STATE(12), + [sym__application] = STATE(13), + [sym__expr2] = STATE(14), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(16), + [sym__atomic_expr_curly] = STATE(17), + [sym__atomic_expr_no_curly] = STATE(17), + [sym_lhs] = STATE(18), + [sym__declaration] = STATE(19), + [sym_function_clause] = STATE(20), + [aux_sym_source_file_repeat1] = STATE(21), + [aux_sym__expr1_repeat1] = STATE(22), + [aux_sym__application_repeat1] = STATE(23), + [ts_builtin_sym_end] = ACTIONS(8), + [sym_literal] = ACTIONS(10), + [sym_set_n] = ACTIONS(10), + [sym_name_at] = ACTIONS(12), + [sym_qualified_name] = ACTIONS(10), + [anon_sym__] = ACTIONS(10), + [anon_sym_DOT] = ACTIONS(12), + [anon_sym_LBRACE] = ACTIONS(14), + [anon_sym_LBRACE_LBRACE] = ACTIONS(16), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(20), + [anon_sym_forall] = ACTIONS(22), + [anon_sym_let] = ACTIONS(24), + [anon_sym_QMARK] = ACTIONS(10), + [anon_sym_Prop] = ACTIONS(10), + [anon_sym_Set] = ACTIONS(10), + [anon_sym_quote] = ACTIONS(10), + [anon_sym_quoteTerm] = ACTIONS(10), + [anon_sym_unquote] = ACTIONS(10), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LPAREN_PIPE] = ACTIONS(28), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10), + }, + [2] = { + [ts_builtin_sym_end] = ACTIONS(30), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_rewrite] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), + }, + [3] = { + [sym_atomic_expr] = STATE(24), + [sym__atomic_expr_curly] = STATE(17), + [sym__atomic_expr_no_curly] = STATE(17), + [sym_literal] = ACTIONS(10), + [sym_set_n] = ACTIONS(10), + [sym_name_at] = ACTIONS(12), + [sym_qualified_name] = ACTIONS(10), + [anon_sym__] = ACTIONS(10), + [anon_sym_DOT] = ACTIONS(12), + [anon_sym_LBRACE] = ACTIONS(14), + [anon_sym_LBRACE_LBRACE] = ACTIONS(16), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(10), + [anon_sym_Prop] = ACTIONS(10), + [anon_sym_Set] = ACTIONS(10), + [anon_sym_quote] = ACTIONS(10), + [anon_sym_quoteTerm] = ACTIONS(10), + [anon_sym_unquote] = ACTIONS(10), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LPAREN_PIPE] = ACTIONS(28), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10), + }, + [4] = { + [sym_expr] = STATE(37), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(42), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [5] = { + [sym_expr] = STATE(59), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(66), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [6] = { + [sym_lambda_bindings] = STATE(74), + [sym_untyped_bindings] = STATE(75), + [sym_typed_bindings] = STATE(75), + [anon_sym_DOT] = ACTIONS(78), + [anon_sym_DOT_DOT] = ACTIONS(80), + [anon_sym_LBRACE] = ACTIONS(82), + [anon_sym_LBRACE_LBRACE] = ACTIONS(84), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(88), + [anon_sym_LPAREN] = ACTIONS(90), + }, + [7] = { + [sym_forall_bindings] = STATE(80), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [8] = { + [sym__expr1] = STATE(93), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(98), + [sym__declaration] = STATE(99), + [sym_function_clause] = STATE(100), + [aux_sym_source_file_repeat1] = STATE(101), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(104), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [9] = { + [sym_expr] = STATE(109), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(66), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [10] = { + [sym_expr] = STATE(125), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [11] = { + [ts_builtin_sym_end] = ACTIONS(150), + [sym_comment] = ACTIONS(86), + }, + [12] = { + [sym_rewrite_equations] = STATE(135), + [sym_with_expressions] = STATE(136), + [ts_builtin_sym_end] = ACTIONS(152), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(154), + [anon_sym_with] = ACTIONS(156), + }, + [13] = { + [ts_builtin_sym_end] = ACTIONS(158), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + [anon_sym_rewrite] = ACTIONS(158), + [anon_sym_with] = ACTIONS(158), + }, + [14] = { + [ts_builtin_sym_end] = ACTIONS(160), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + [anon_sym_rewrite] = ACTIONS(160), + [anon_sym_with] = ACTIONS(160), + }, + [15] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE] = ACTIONS(162), + }, + [16] = { + [ts_builtin_sym_end] = ACTIONS(164), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_rewrite] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), + }, + [17] = { + [ts_builtin_sym_end] = ACTIONS(168), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_rewrite] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), + }, + [18] = { + [sym_where_clause] = STATE(141), + [sym_rhs] = STATE(142), + [ts_builtin_sym_end] = ACTIONS(170), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(174), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_module] = ACTIONS(176), + }, + [19] = { + [ts_builtin_sym_end] = ACTIONS(178), + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + }, + [20] = { + [ts_builtin_sym_end] = ACTIONS(180), + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + }, + [21] = { + [sym__expr1] = STATE(12), + [sym__application] = STATE(13), + [sym__expr2] = STATE(14), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(16), + [sym__atomic_expr_curly] = STATE(17), + [sym__atomic_expr_no_curly] = STATE(17), + [sym_lhs] = STATE(18), + [sym__declaration] = STATE(19), + [sym_function_clause] = STATE(20), + [aux_sym_source_file_repeat1] = STATE(143), + [aux_sym__expr1_repeat1] = STATE(22), + [aux_sym__application_repeat1] = STATE(23), + [ts_builtin_sym_end] = ACTIONS(182), + [sym_literal] = ACTIONS(10), + [sym_set_n] = ACTIONS(10), + [sym_name_at] = ACTIONS(12), + [sym_qualified_name] = ACTIONS(10), + [anon_sym__] = ACTIONS(10), + [anon_sym_DOT] = ACTIONS(12), + [anon_sym_LBRACE] = ACTIONS(14), + [anon_sym_LBRACE_LBRACE] = ACTIONS(16), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(20), + [anon_sym_forall] = ACTIONS(22), + [anon_sym_let] = ACTIONS(24), + [anon_sym_QMARK] = ACTIONS(10), + [anon_sym_Prop] = ACTIONS(10), + [anon_sym_Set] = ACTIONS(10), + [anon_sym_quote] = ACTIONS(10), + [anon_sym_quoteTerm] = ACTIONS(10), + [anon_sym_unquote] = ACTIONS(10), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LPAREN_PIPE] = ACTIONS(28), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10), + }, + [22] = { + [sym__application] = STATE(144), + [sym__expr2] = STATE(14), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(16), + [sym__atomic_expr_curly] = STATE(17), + [sym__atomic_expr_no_curly] = STATE(17), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(23), + [sym_literal] = ACTIONS(10), + [sym_set_n] = ACTIONS(10), + [sym_name_at] = ACTIONS(12), + [sym_qualified_name] = ACTIONS(10), + [anon_sym__] = ACTIONS(10), + [anon_sym_DOT] = ACTIONS(12), + [anon_sym_LBRACE] = ACTIONS(14), + [anon_sym_LBRACE_LBRACE] = ACTIONS(16), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(20), + [anon_sym_forall] = ACTIONS(22), + [anon_sym_let] = ACTIONS(24), + [anon_sym_QMARK] = ACTIONS(10), + [anon_sym_Prop] = ACTIONS(10), + [anon_sym_Set] = ACTIONS(10), + [anon_sym_quote] = ACTIONS(10), + [anon_sym_quoteTerm] = ACTIONS(10), + [anon_sym_unquote] = ACTIONS(10), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LPAREN_PIPE] = ACTIONS(28), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10), + }, + [23] = { + [sym__expr2] = STATE(146), + [sym_atomic_expr] = STATE(16), + [sym__atomic_expr_curly] = STATE(17), + [sym__atomic_expr_no_curly] = STATE(17), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(10), + [sym_set_n] = ACTIONS(10), + [sym_name_at] = ACTIONS(12), + [sym_qualified_name] = ACTIONS(10), + [anon_sym__] = ACTIONS(10), + [anon_sym_DOT] = ACTIONS(12), + [anon_sym_LBRACE] = ACTIONS(14), + [anon_sym_LBRACE_LBRACE] = ACTIONS(16), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(20), + [anon_sym_forall] = ACTIONS(22), + [anon_sym_let] = ACTIONS(24), + [anon_sym_QMARK] = ACTIONS(10), + [anon_sym_Prop] = ACTIONS(10), + [anon_sym_Set] = ACTIONS(10), + [anon_sym_quote] = ACTIONS(10), + [anon_sym_quoteTerm] = ACTIONS(10), + [anon_sym_unquote] = ACTIONS(10), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LPAREN_PIPE] = ACTIONS(28), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10), + }, + [24] = { + [ts_builtin_sym_end] = ACTIONS(186), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_rewrite] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), + }, + [25] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_RPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + }, + [26] = { + [sym_atomic_expr] = STATE(151), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(188), + [anon_sym_LBRACE_LBRACE] = ACTIONS(190), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [27] = { + [sym_atomic_expr] = STATE(151), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(194), + [anon_sym_LBRACE_LBRACE] = ACTIONS(196), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(198), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [28] = { + [anon_sym_LBRACE] = ACTIONS(200), + [anon_sym_LBRACE_LBRACE] = ACTIONS(202), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(204), + }, + [29] = { + [sym_expr] = STATE(169), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [30] = { + [ts_builtin_sym_end] = ACTIONS(228), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_rewrite] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), + }, + [31] = { + [sym_expr] = STATE(184), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(240), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [32] = { + [sym_lambda_bindings] = STATE(193), + [sym_untyped_bindings] = STATE(194), + [sym_typed_bindings] = STATE(194), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(252), + [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(256), + [anon_sym_LPAREN] = ACTIONS(258), + }, + [33] = { + [sym_forall_bindings] = STATE(195), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [34] = { + [sym__expr1] = STATE(200), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(201), + [sym__declaration] = STATE(202), + [sym_function_clause] = STATE(203), + [aux_sym_source_file_repeat1] = STATE(204), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(260), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [35] = { + [sym_expr] = STATE(212), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(240), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [36] = { + [sym_expr] = STATE(215), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [37] = { + [anon_sym_RBRACE] = ACTIONS(278), + [sym_comment] = ACTIONS(86), + }, + [38] = { + [anon_sym_RBRACE] = ACTIONS(280), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(282), + }, + [39] = { + [anon_sym_RBRACE] = ACTIONS(284), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_PIPE_RPAREN] = ACTIONS(284), + [anon_sym_COLON] = ACTIONS(284), + }, + [40] = { + [anon_sym_RBRACE] = ACTIONS(286), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_RPAREN] = ACTIONS(286), + [anon_sym_PIPE_RPAREN] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(286), + }, + [41] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_PIPE] = ACTIONS(162), + }, + [42] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(164), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + }, + [43] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + }, + [44] = { + [sym_expr] = STATE(218), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [45] = { + [anon_sym_DOT] = ACTIONS(288), + [anon_sym_DOT_DOT] = ACTIONS(290), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACE_LBRACE] = ACTIONS(290), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(290), + }, + [46] = { + [sym__application] = STATE(225), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(226), + [sym__atomic_expr_curly] = STATE(227), + [sym__atomic_expr_no_curly] = STATE(227), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(228), + [sym_literal] = ACTIONS(292), + [sym_set_n] = ACTIONS(292), + [sym_name_at] = ACTIONS(294), + [sym_qualified_name] = ACTIONS(292), + [anon_sym__] = ACTIONS(292), + [anon_sym_DOT] = ACTIONS(294), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_LBRACE_LBRACE] = ACTIONS(298), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(292), + [anon_sym_Prop] = ACTIONS(292), + [anon_sym_Set] = ACTIONS(292), + [anon_sym_quote] = ACTIONS(292), + [anon_sym_quoteTerm] = ACTIONS(292), + [anon_sym_unquote] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(300), + [anon_sym_LPAREN_PIPE] = ACTIONS(302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(292), + }, + [47] = { + [sym__expr2] = STATE(229), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(34), + [anon_sym_LBRACE] = ACTIONS(188), + [anon_sym_LBRACE_LBRACE] = ACTIONS(190), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [48] = { + [sym_typed_bindings] = STATE(45), + [aux_sym_tele_arrow_repeat1] = STATE(235), + [anon_sym_DOT] = ACTIONS(304), + [anon_sym_DOT_DOT] = ACTIONS(306), + [anon_sym_LBRACE] = ACTIONS(308), + [anon_sym_LBRACE_LBRACE] = ACTIONS(310), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(314), + }, + [49] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE_RBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + }, + [50] = { + [sym_atomic_expr] = STATE(239), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(58), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LBRACE_LBRACE] = ACTIONS(318), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [51] = { + [sym_atomic_expr] = STATE(239), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(58), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_LBRACE_LBRACE] = ACTIONS(324), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(326), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [52] = { + [sym_expr] = STATE(244), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(328), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [53] = { + [sym_expr] = STATE(245), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(330), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [54] = { + [sym_lambda_bindings] = STATE(251), + [sym_untyped_bindings] = STATE(252), + [sym_typed_bindings] = STATE(252), + [anon_sym_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_LBRACE_LBRACE] = ACTIONS(338), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + }, + [55] = { + [sym_forall_bindings] = STATE(253), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [56] = { + [sym__expr1] = STATE(263), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(268), + [sym__declaration] = STATE(269), + [sym_function_clause] = STATE(270), + [aux_sym_source_file_repeat1] = STATE(271), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(344), + [sym_set_n] = ACTIONS(344), + [sym_name_at] = ACTIONS(346), + [sym_qualified_name] = ACTIONS(344), + [anon_sym__] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_Prop] = ACTIONS(344), + [anon_sym_Set] = ACTIONS(344), + [anon_sym_quote] = ACTIONS(344), + [anon_sym_quoteTerm] = ACTIONS(344), + [anon_sym_unquote] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LPAREN_PIPE] = ACTIONS(360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + }, + [57] = { + [sym_expr] = STATE(274), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [58] = { + [sym_expr] = STATE(275), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [59] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(362), + [sym_comment] = ACTIONS(86), + }, + [60] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(280), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(364), + }, + [61] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(284), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_COLON] = ACTIONS(284), + }, + [62] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(286), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(286), + }, + [63] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(364), + [anon_sym_PIPE] = ACTIONS(162), + }, + [64] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE_RBRACE] = ACTIONS(164), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + }, + [65] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE_RBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + }, + [66] = { + [sym_expr] = STATE(278), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [67] = { + [sym__application] = STATE(285), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(286), + [sym__atomic_expr_curly] = STATE(287), + [sym__atomic_expr_no_curly] = STATE(287), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(288), + [sym_literal] = ACTIONS(366), + [sym_set_n] = ACTIONS(366), + [sym_name_at] = ACTIONS(368), + [sym_qualified_name] = ACTIONS(366), + [anon_sym__] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(368), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_LBRACE_LBRACE] = ACTIONS(372), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(366), + [anon_sym_Prop] = ACTIONS(366), + [anon_sym_Set] = ACTIONS(366), + [anon_sym_quote] = ACTIONS(366), + [anon_sym_quoteTerm] = ACTIONS(366), + [anon_sym_unquote] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(374), + [anon_sym_LPAREN_PIPE] = ACTIONS(376), + [anon_sym_DOT_DOT_DOT] = ACTIONS(366), + }, + [68] = { + [sym__expr2] = STATE(289), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(58), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LBRACE_LBRACE] = ACTIONS(318), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [69] = { + [anon_sym_LBRACE] = ACTIONS(378), + [anon_sym_LBRACE_LBRACE] = ACTIONS(380), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(382), + }, + [70] = { + [sym__application] = STATE(305), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(311), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), + }, + [71] = { + [sym__application] = STATE(322), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(390), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [72] = { + [sym_vopen] = STATE(327), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), + }, + [73] = { + [sym_binding_name] = STATE(334), + [sym__application] = STATE(335), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(390), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [74] = { + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(442), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [75] = { + [sym_lambda_bindings] = STATE(296), + [sym_untyped_bindings] = STATE(75), + [sym_typed_bindings] = STATE(75), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(446), + [anon_sym_DOT_DOT] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_LBRACE_LBRACE] = ACTIONS(450), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_rewrite] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), + }, + [76] = { + [anon_sym_LBRACE] = ACTIONS(454), + [anon_sym_LBRACE_LBRACE] = ACTIONS(456), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(458), + }, + [77] = { + [sym__application] = STATE(351), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [78] = { + [sym__application] = STATE(355), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [79] = { + [sym_binding_name] = STATE(356), + [sym__application] = STATE(357), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [80] = { + [sym_expr] = STATE(365), + [sym__expr1] = STATE(366), + [sym__application] = STATE(13), + [sym__expr2] = STATE(14), + [sym__atomic_exprs1] = STATE(367), + [sym_atomic_expr] = STATE(368), + [sym__atomic_expr_curly] = STATE(369), + [sym__atomic_expr_no_curly] = STATE(369), + [sym_tele_arrow] = STATE(370), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(22), + [aux_sym__application_repeat1] = STATE(371), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(478), + [sym_set_n] = ACTIONS(478), + [sym_name_at] = ACTIONS(480), + [sym_qualified_name] = ACTIONS(478), + [anon_sym__] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(20), + [anon_sym_forall] = ACTIONS(22), + [anon_sym_let] = ACTIONS(24), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_Prop] = ACTIONS(478), + [anon_sym_Set] = ACTIONS(478), + [anon_sym_quote] = ACTIONS(478), + [anon_sym_quoteTerm] = ACTIONS(478), + [anon_sym_unquote] = ACTIONS(478), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_LPAREN_PIPE] = ACTIONS(490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + }, + [81] = { + [anon_sym_DOT] = ACTIONS(492), + [anon_sym_DOT_DOT] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_LBRACE_LBRACE] = ACTIONS(494), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(494), + }, + [82] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(496), + }, + [83] = { + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(373), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [84] = { + [ts_builtin_sym_end] = ACTIONS(30), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_RPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_rewrite] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), + }, + [85] = { + [sym_atomic_expr] = STATE(374), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(104), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [86] = { + [sym_expr] = STATE(376), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [87] = { + [sym_expr] = STATE(377), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(502), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [88] = { + [sym_lambda_bindings] = STATE(383), + [sym_untyped_bindings] = STATE(384), + [sym_typed_bindings] = STATE(384), + [anon_sym_DOT] = ACTIONS(504), + [anon_sym_DOT_DOT] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(510), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(514), + }, + [89] = { + [sym_forall_bindings] = STATE(385), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [90] = { + [sym__expr1] = STATE(93), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(98), + [sym__declaration] = STATE(99), + [sym_function_clause] = STATE(100), + [aux_sym_source_file_repeat1] = STATE(386), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(104), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [91] = { + [sym_expr] = STATE(387), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(502), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [92] = { + [sym_expr] = STATE(388), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [93] = { + [sym_rewrite_equations] = STATE(391), + [sym_with_expressions] = STATE(392), + [ts_builtin_sym_end] = ACTIONS(152), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_RBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_in] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_RPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(152), + [anon_sym_with] = ACTIONS(152), + }, + [94] = { + [ts_builtin_sym_end] = ACTIONS(158), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + [anon_sym_rewrite] = ACTIONS(158), + [anon_sym_with] = ACTIONS(158), + }, + [95] = { + [ts_builtin_sym_end] = ACTIONS(160), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + [anon_sym_rewrite] = ACTIONS(160), + [anon_sym_with] = ACTIONS(160), + }, + [96] = { + [ts_builtin_sym_end] = ACTIONS(164), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(164), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_rewrite] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), + }, + [97] = { + [ts_builtin_sym_end] = ACTIONS(168), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_rewrite] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), + }, + [98] = { + [sym_where_clause] = STATE(396), + [sym_rhs] = STATE(397), + [ts_builtin_sym_end] = ACTIONS(170), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(170), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_RPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(170), + [anon_sym_rewrite] = ACTIONS(170), + [anon_sym_with] = ACTIONS(170), + }, + [99] = { + [ts_builtin_sym_end] = ACTIONS(178), + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_RPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), + [anon_sym_rewrite] = ACTIONS(178), + [anon_sym_with] = ACTIONS(178), + }, + [100] = { + [ts_builtin_sym_end] = ACTIONS(180), + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_RPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), + [anon_sym_rewrite] = ACTIONS(180), + [anon_sym_with] = ACTIONS(180), + }, + [101] = { + [sym__expr1] = STATE(93), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(98), + [sym__declaration] = STATE(99), + [sym_function_clause] = STATE(100), + [aux_sym_source_file_repeat1] = STATE(398), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [102] = { + [sym__application] = STATE(399), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(103), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(104), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [103] = { + [sym__expr2] = STATE(400), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(104), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [104] = { + [sym_atomic_expr] = STATE(151), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(188), + [anon_sym_LBRACE_LBRACE] = ACTIONS(190), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [105] = { + [sym_atomic_expr] = STATE(151), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(194), + [anon_sym_LBRACE_LBRACE] = ACTIONS(196), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(198), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [106] = { + [sym_lambda_bindings] = STATE(401), + [sym_untyped_bindings] = STATE(402), + [sym_typed_bindings] = STATE(402), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(252), + [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(256), + [anon_sym_LPAREN] = ACTIONS(258), + }, + [107] = { + [sym_forall_bindings] = STATE(403), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [108] = { + [sym__expr1] = STATE(408), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(409), + [sym__declaration] = STATE(202), + [sym_function_clause] = STATE(203), + [aux_sym_source_file_repeat1] = STATE(410), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(516), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [109] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(362), + }, + [110] = { + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(524), + [anon_sym_RPAREN] = ACTIONS(280), + }, + [111] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(162), + }, + [112] = { + [sym_expr] = STATE(218), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [113] = { + [sym__application] = STATE(225), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(226), + [sym__atomic_expr_curly] = STATE(227), + [sym__atomic_expr_no_curly] = STATE(227), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(415), + [sym_literal] = ACTIONS(292), + [sym_set_n] = ACTIONS(292), + [sym_name_at] = ACTIONS(526), + [sym_qualified_name] = ACTIONS(292), + [anon_sym__] = ACTIONS(292), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_LBRACE_LBRACE] = ACTIONS(298), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(292), + [anon_sym_Prop] = ACTIONS(292), + [anon_sym_Set] = ACTIONS(292), + [anon_sym_quote] = ACTIONS(292), + [anon_sym_quoteTerm] = ACTIONS(292), + [anon_sym_unquote] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(300), + [anon_sym_LPAREN_PIPE] = ACTIONS(302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(292), + }, + [114] = { + [sym__expr2] = STATE(229), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(188), + [anon_sym_LBRACE_LBRACE] = ACTIONS(190), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [115] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_PIPE_RPAREN] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + }, + [116] = { + [sym_atomic_expr] = STATE(419), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(528), + [anon_sym_LBRACE_LBRACE] = ACTIONS(530), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [117] = { + [sym_atomic_expr] = STATE(419), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_LBRACE_LBRACE] = ACTIONS(536), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [118] = { + [sym_expr] = STATE(424), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [119] = { + [sym_expr] = STATE(425), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(542), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [120] = { + [sym_lambda_bindings] = STATE(426), + [sym_untyped_bindings] = STATE(427), + [sym_typed_bindings] = STATE(427), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(252), + [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(256), + [anon_sym_LPAREN] = ACTIONS(258), + }, + [121] = { + [sym_forall_bindings] = STATE(428), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [122] = { + [sym__expr1] = STATE(438), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_lhs] = STATE(443), + [sym__declaration] = STATE(444), + [sym_function_clause] = STATE(445), + [aux_sym_source_file_repeat1] = STATE(446), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(544), + [sym_set_n] = ACTIONS(544), + [sym_name_at] = ACTIONS(546), + [sym_qualified_name] = ACTIONS(544), + [anon_sym__] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_LBRACE_LBRACE] = ACTIONS(550), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_Prop] = ACTIONS(544), + [anon_sym_Set] = ACTIONS(544), + [anon_sym_quote] = ACTIONS(544), + [anon_sym_quoteTerm] = ACTIONS(544), + [anon_sym_unquote] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LPAREN_PIPE] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), + }, + [123] = { + [sym_expr] = STATE(449), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(542), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [124] = { + [sym_expr] = STATE(450), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [125] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(362), + }, + [126] = { + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_PIPE_RPAREN] = ACTIONS(280), + }, + [127] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(162), + }, + [128] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_PIPE_RPAREN] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + }, + [129] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_PIPE_RPAREN] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + }, + [130] = { + [sym_expr] = STATE(218), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [131] = { + [sym__application] = STATE(225), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(458), + [sym__atomic_expr_curly] = STATE(459), + [sym__atomic_expr_no_curly] = STATE(459), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(460), + [sym_literal] = ACTIONS(564), + [sym_set_n] = ACTIONS(564), + [sym_name_at] = ACTIONS(566), + [sym_qualified_name] = ACTIONS(564), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(568), + [anon_sym_LBRACE_LBRACE] = ACTIONS(570), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_Prop] = ACTIONS(564), + [anon_sym_Set] = ACTIONS(564), + [anon_sym_quote] = ACTIONS(564), + [anon_sym_quoteTerm] = ACTIONS(564), + [anon_sym_unquote] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_LPAREN_PIPE] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(564), + }, + [132] = { + [sym__expr2] = STATE(229), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(528), + [anon_sym_LBRACE_LBRACE] = ACTIONS(530), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [133] = { + [sym__expr1] = STATE(470), + [sym__application] = STATE(471), + [sym__expr2] = STATE(472), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(473), + [sym__atomic_expr_curly] = STATE(474), + [sym__atomic_expr_no_curly] = STATE(474), + [aux_sym__expr1_repeat1] = STATE(475), + [aux_sym__application_repeat1] = STATE(476), + [sym_literal] = ACTIONS(576), + [sym_set_n] = ACTIONS(576), + [sym_name_at] = ACTIONS(578), + [sym_qualified_name] = ACTIONS(576), + [anon_sym__] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_LBRACE_LBRACE] = ACTIONS(582), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(584), + [anon_sym_forall] = ACTIONS(586), + [anon_sym_let] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_Prop] = ACTIONS(576), + [anon_sym_Set] = ACTIONS(576), + [anon_sym_quote] = ACTIONS(576), + [anon_sym_quoteTerm] = ACTIONS(576), + [anon_sym_unquote] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_LPAREN_PIPE] = ACTIONS(592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + }, + [134] = { + [sym__expr1] = STATE(486), + [sym__application] = STATE(487), + [sym__expr2] = STATE(488), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(489), + [sym__atomic_expr_curly] = STATE(490), + [sym__atomic_expr_no_curly] = STATE(490), + [aux_sym__expr1_repeat1] = STATE(491), + [aux_sym__application_repeat1] = STATE(492), + [sym_literal] = ACTIONS(594), + [sym_set_n] = ACTIONS(594), + [sym_name_at] = ACTIONS(596), + [sym_qualified_name] = ACTIONS(594), + [anon_sym__] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_LBRACE_LBRACE] = ACTIONS(600), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(602), + [anon_sym_forall] = ACTIONS(604), + [anon_sym_let] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_Prop] = ACTIONS(594), + [anon_sym_Set] = ACTIONS(594), + [anon_sym_quote] = ACTIONS(594), + [anon_sym_quoteTerm] = ACTIONS(594), + [anon_sym_unquote] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_LPAREN_PIPE] = ACTIONS(610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + }, + [135] = { + [sym_with_expressions] = STATE(493), + [ts_builtin_sym_end] = ACTIONS(612), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(156), + }, + [136] = { + [ts_builtin_sym_end] = ACTIONS(612), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + }, + [137] = { + [sym_literal] = ACTIONS(614), + [sym_set_n] = ACTIONS(614), + [sym_name_at] = ACTIONS(614), + [sym_qualified_name] = ACTIONS(614), + [anon_sym__] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_LBRACE_LBRACE] = ACTIONS(614), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(614), + [anon_sym_forall] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(614), + [anon_sym_Prop] = ACTIONS(614), + [anon_sym_Set] = ACTIONS(614), + [anon_sym_quote] = ACTIONS(614), + [anon_sym_quoteTerm] = ACTIONS(614), + [anon_sym_unquote] = ACTIONS(614), + [anon_sym_LPAREN] = ACTIONS(614), + [anon_sym_LPAREN_PIPE] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(614), + }, + [138] = { + [sym_expr] = STATE(504), + [sym__expr1] = STATE(505), + [sym__application] = STATE(506), + [sym__expr2] = STATE(507), + [sym__atomic_exprs1] = STATE(508), + [sym_atomic_expr] = STATE(509), + [sym__atomic_expr_curly] = STATE(510), + [sym__atomic_expr_no_curly] = STATE(510), + [sym_tele_arrow] = STATE(511), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(512), + [aux_sym__application_repeat1] = STATE(513), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(616), + [sym_set_n] = ACTIONS(616), + [sym_name_at] = ACTIONS(618), + [sym_qualified_name] = ACTIONS(616), + [anon_sym__] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_LBRACE_LBRACE] = ACTIONS(624), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_forall] = ACTIONS(628), + [anon_sym_let] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_Prop] = ACTIONS(616), + [anon_sym_Set] = ACTIONS(616), + [anon_sym_quote] = ACTIONS(616), + [anon_sym_quoteTerm] = ACTIONS(616), + [anon_sym_unquote] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_LPAREN_PIPE] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + }, + [139] = { + [sym_vopen] = STATE(515), + [sym_declarations] = STATE(516), + [sym__declarations0] = STATE(517), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [140] = { + [sym_anonymous_name] = STATE(518), + [sym_name] = ACTIONS(638), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), + }, + [141] = { + [ts_builtin_sym_end] = ACTIONS(642), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + }, + [142] = { + [sym_where_clause] = STATE(520), + [ts_builtin_sym_end] = ACTIONS(642), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(174), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(176), + }, + [143] = { + [sym__expr1] = STATE(12), + [sym__application] = STATE(13), + [sym__expr2] = STATE(14), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(16), + [sym__atomic_expr_curly] = STATE(17), + [sym__atomic_expr_no_curly] = STATE(17), + [sym_lhs] = STATE(18), + [sym__declaration] = STATE(19), + [sym_function_clause] = STATE(20), + [aux_sym_source_file_repeat1] = STATE(143), + [aux_sym__expr1_repeat1] = STATE(22), + [aux_sym__application_repeat1] = STATE(23), + [ts_builtin_sym_end] = ACTIONS(644), + [sym_literal] = ACTIONS(646), + [sym_set_n] = ACTIONS(646), + [sym_name_at] = ACTIONS(649), + [sym_qualified_name] = ACTIONS(646), + [anon_sym__] = ACTIONS(646), + [anon_sym_DOT] = ACTIONS(649), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_LBRACE_LBRACE] = ACTIONS(655), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(658), + [anon_sym_forall] = ACTIONS(661), + [anon_sym_let] = ACTIONS(664), + [anon_sym_QMARK] = ACTIONS(646), + [anon_sym_Prop] = ACTIONS(646), + [anon_sym_Set] = ACTIONS(646), + [anon_sym_quote] = ACTIONS(646), + [anon_sym_quoteTerm] = ACTIONS(646), + [anon_sym_unquote] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_LPAREN_PIPE] = ACTIONS(670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + }, + [144] = { + [ts_builtin_sym_end] = ACTIONS(673), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_rewrite] = ACTIONS(673), + [anon_sym_with] = ACTIONS(673), + }, + [145] = { + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(527), + [sym__atomic_expr_curly] = STATE(528), + [sym__atomic_expr_no_curly] = STATE(528), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(529), + [sym_literal] = ACTIONS(675), + [sym_set_n] = ACTIONS(675), + [sym_name_at] = ACTIONS(678), + [sym_qualified_name] = ACTIONS(675), + [anon_sym__] = ACTIONS(675), + [anon_sym_DOT] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_LBRACE_LBRACE] = ACTIONS(684), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(614), + [anon_sym_forall] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(675), + [anon_sym_Prop] = ACTIONS(675), + [anon_sym_Set] = ACTIONS(675), + [anon_sym_quote] = ACTIONS(675), + [anon_sym_quoteTerm] = ACTIONS(675), + [anon_sym_unquote] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LPAREN_PIPE] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(675), + }, + [146] = { + [ts_builtin_sym_end] = ACTIONS(693), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), + [anon_sym_rewrite] = ACTIONS(693), + [anon_sym_with] = ACTIONS(693), + }, + [147] = { + [sym_atomic_expr] = STATE(536), + [sym__atomic_expr_curly] = STATE(537), + [sym__atomic_expr_no_curly] = STATE(537), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(695), + [sym_set_n] = ACTIONS(695), + [sym_name_at] = ACTIONS(698), + [sym_qualified_name] = ACTIONS(695), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_LBRACE_LBRACE] = ACTIONS(704), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_BSLASH] = ACTIONS(707), + [anon_sym_forall] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(695), + [anon_sym_Prop] = ACTIONS(695), + [anon_sym_Set] = ACTIONS(695), + [anon_sym_quote] = ACTIONS(695), + [anon_sym_quoteTerm] = ACTIONS(695), + [anon_sym_unquote] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_LPAREN_PIPE] = ACTIONS(712), + [anon_sym_DOT_DOT_DOT] = ACTIONS(695), + }, + [148] = { + [sym_expr] = STATE(169), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [149] = { + [sym_expr] = STATE(184), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(240), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [150] = { + [sym_expr] = STATE(212), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(240), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [151] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_RPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + }, + [152] = { + [sym_expr] = STATE(169), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [153] = { + [sym_expr] = STATE(184), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(240), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [154] = { + [sym_expr] = STATE(212), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(240), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [155] = { + [sym__application] = STATE(541), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [156] = { + [sym__application] = STATE(542), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [157] = { + [sym__application] = STATE(543), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [158] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_RPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + }, + [159] = { + [sym_atomic_expr] = STATE(547), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_LBRACE_LBRACE] = ACTIONS(717), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [160] = { + [sym_atomic_expr] = STATE(547), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_LBRACE_LBRACE] = ACTIONS(723), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [161] = { + [sym_expr] = STATE(552), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [162] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + }, + [163] = { + [sym_expr] = STATE(553), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(729), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [164] = { + [sym_lambda_bindings] = STATE(554), + [sym_untyped_bindings] = STATE(555), + [sym_typed_bindings] = STATE(555), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(252), + [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(256), + [anon_sym_LPAREN] = ACTIONS(258), + }, + [165] = { + [sym_forall_bindings] = STATE(556), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [166] = { + [sym__expr1] = STATE(200), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(557), + [sym__declaration] = STATE(558), + [sym_function_clause] = STATE(559), + [aux_sym_source_file_repeat1] = STATE(560), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(260), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [167] = { + [sym_expr] = STATE(561), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [168] = { + [sym_expr] = STATE(562), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [169] = { + [anon_sym_RBRACE] = ACTIONS(731), + [sym_comment] = ACTIONS(86), + }, + [170] = { + [anon_sym_RBRACE] = ACTIONS(284), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_COLON] = ACTIONS(733), + }, + [171] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(164), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + }, + [172] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + }, + [173] = { + [sym__expr2] = STATE(229), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_LBRACE_LBRACE] = ACTIONS(717), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [174] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE_RBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + }, + [175] = { + [sym_atomic_expr] = STATE(568), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(232), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_LBRACE_LBRACE] = ACTIONS(737), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [176] = { + [sym_atomic_expr] = STATE(568), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(232), + [anon_sym_LBRACE] = ACTIONS(741), + [anon_sym_LBRACE_LBRACE] = ACTIONS(743), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [177] = { + [sym_expr] = STATE(573), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [178] = { + [sym_expr] = STATE(574), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(749), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [179] = { + [sym_lambda_bindings] = STATE(575), + [sym_untyped_bindings] = STATE(576), + [sym_typed_bindings] = STATE(576), + [anon_sym_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_LBRACE_LBRACE] = ACTIONS(338), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + }, + [180] = { + [sym_forall_bindings] = STATE(577), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [181] = { + [sym__expr1] = STATE(263), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(578), + [sym__declaration] = STATE(579), + [sym_function_clause] = STATE(580), + [aux_sym_source_file_repeat1] = STATE(581), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(344), + [sym_set_n] = ACTIONS(344), + [sym_name_at] = ACTIONS(346), + [sym_qualified_name] = ACTIONS(344), + [anon_sym__] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_Prop] = ACTIONS(344), + [anon_sym_Set] = ACTIONS(344), + [anon_sym_quote] = ACTIONS(344), + [anon_sym_quoteTerm] = ACTIONS(344), + [anon_sym_unquote] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LPAREN_PIPE] = ACTIONS(360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + }, + [182] = { + [sym_expr] = STATE(582), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [183] = { + [sym_expr] = STATE(583), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [184] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(751), + [sym_comment] = ACTIONS(86), + }, + [185] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(284), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_COLON] = ACTIONS(753), + }, + [186] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE_RBRACE] = ACTIONS(164), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + }, + [187] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE_RBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + }, + [188] = { + [sym__expr2] = STATE(289), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(232), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_LBRACE_LBRACE] = ACTIONS(737), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [189] = { + [sym__application] = STATE(587), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(588), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), + }, + [190] = { + [sym__application] = STATE(355), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(755), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [191] = { + [sym_vopen] = STATE(589), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), + }, + [192] = { + [sym_binding_name] = STATE(356), + [sym__application] = STATE(357), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [193] = { + [anon_sym_RBRACE] = ACTIONS(757), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(759), + [anon_sym_EQ] = ACTIONS(757), + }, + [194] = { + [sym_lambda_bindings] = STATE(586), + [sym_untyped_bindings] = STATE(194), + [sym_typed_bindings] = STATE(194), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(258), + }, + [195] = { + [sym_expr] = STATE(592), + [sym__expr1] = STATE(593), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(594), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(595), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [196] = { + [sym_atomic_expr] = STATE(374), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(260), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [197] = { + [sym_lambda_bindings] = STATE(596), + [sym_untyped_bindings] = STATE(597), + [sym_typed_bindings] = STATE(597), + [anon_sym_DOT] = ACTIONS(504), + [anon_sym_DOT_DOT] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(510), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(514), + }, + [198] = { + [sym_forall_bindings] = STATE(598), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [199] = { + [sym__expr1] = STATE(93), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(98), + [sym__declaration] = STATE(99), + [sym_function_clause] = STATE(100), + [aux_sym_source_file_repeat1] = STATE(599), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(260), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [200] = { + [sym_rewrite_equations] = STATE(602), + [sym_with_expressions] = STATE(603), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_RBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_in] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(765), + [anon_sym_with] = ACTIONS(767), + }, + [201] = { + [sym_where_clause] = STATE(607), + [sym_rhs] = STATE(608), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(769), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(771), + [anon_sym_module] = ACTIONS(773), + }, + [202] = { + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_RPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + }, + [203] = { + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_RPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + }, + [204] = { + [sym__expr1] = STATE(200), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(201), + [sym__declaration] = STATE(202), + [sym_function_clause] = STATE(203), + [aux_sym_source_file_repeat1] = STATE(609), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(260), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_in] = ACTIONS(775), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [205] = { + [sym__application] = STATE(399), + [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(16), - [sym__atomic_expr_curly] = STATE(17), - [sym__atomic_expr_no_curly] = STATE(17), - [sym_lhs] = STATE(18), - [sym__declaration] = STATE(19), - [sym_function_clause] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym__expr1_repeat1] = STATE(22), - [aux_sym__application_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(8), - [sym_literal] = ACTIONS(10), - [sym_set_n] = ACTIONS(10), - [sym_name_at] = ACTIONS(12), - [sym_qualified_name] = ACTIONS(10), - [anon_sym__] = ACTIONS(10), - [anon_sym_DOT] = ACTIONS(12), - [anon_sym_LBRACE] = ACTIONS(14), - [anon_sym_LBRACE_LBRACE] = ACTIONS(16), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(260), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(20), - [anon_sym_forall] = ACTIONS(22), - [anon_sym_let] = ACTIONS(24), - [anon_sym_QMARK] = ACTIONS(10), - [anon_sym_Prop] = ACTIONS(10), - [anon_sym_Set] = ACTIONS(10), - [anon_sym_quote] = ACTIONS(10), - [anon_sym_quoteTerm] = ACTIONS(10), - [anon_sym_unquote] = ACTIONS(10), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LPAREN_PIPE] = ACTIONS(28), - [anon_sym_DOT_DOT_DOT] = ACTIONS(10), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [2] = { - [ts_builtin_sym_end] = ACTIONS(30), + [206] = { + [sym__expr2] = STATE(400), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(260), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [207] = { + [sym_atomic_expr] = STATE(547), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(268), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_LBRACE_LBRACE] = ACTIONS(717), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [208] = { + [sym_atomic_expr] = STATE(547), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(268), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_LBRACE_LBRACE] = ACTIONS(723), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [209] = { + [sym_lambda_bindings] = STATE(610), + [sym_untyped_bindings] = STATE(611), + [sym_typed_bindings] = STATE(611), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(252), + [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(256), + [anon_sym_LPAREN] = ACTIONS(258), + }, + [210] = { + [sym_forall_bindings] = STATE(612), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [211] = { + [sym__expr1] = STATE(408), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(557), + [sym__declaration] = STATE(558), + [sym_function_clause] = STATE(559), + [aux_sym_source_file_repeat1] = STATE(613), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(516), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [212] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(751), + }, + [213] = { + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_COLON] = ACTIONS(777), + }, + [214] = { + [sym__expr2] = STATE(229), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(268), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_LBRACE_LBRACE] = ACTIONS(717), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [215] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(751), + }, + [216] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_rewrite] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [217] = { + [sym_expr] = STATE(615), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [218] = { + [anon_sym_RBRACE] = ACTIONS(781), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_PIPE_RPAREN] = ACTIONS(781), + [anon_sym_COLON] = ACTIONS(781), + }, + [219] = { [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(30), [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), @@ -26347,38 +39075,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(30), [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_RPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_rewrite] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), }, - [3] = { - [sym_atomic_expr] = STATE(24), - [sym__atomic_expr_curly] = STATE(17), - [sym__atomic_expr_no_curly] = STATE(17), - [sym_literal] = ACTIONS(10), - [sym_set_n] = ACTIONS(10), - [sym_name_at] = ACTIONS(12), - [sym_qualified_name] = ACTIONS(10), - [anon_sym__] = ACTIONS(10), - [anon_sym_DOT] = ACTIONS(12), - [anon_sym_LBRACE] = ACTIONS(14), - [anon_sym_LBRACE_LBRACE] = ACTIONS(16), + [220] = { + [sym_atomic_expr] = STATE(616), + [sym__atomic_expr_curly] = STATE(227), + [sym__atomic_expr_no_curly] = STATE(227), + [sym_literal] = ACTIONS(292), + [sym_set_n] = ACTIONS(292), + [sym_name_at] = ACTIONS(294), + [sym_qualified_name] = ACTIONS(292), + [anon_sym__] = ACTIONS(292), + [anon_sym_DOT] = ACTIONS(294), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_LBRACE_LBRACE] = ACTIONS(298), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(10), - [anon_sym_Prop] = ACTIONS(10), - [anon_sym_Set] = ACTIONS(10), - [anon_sym_quote] = ACTIONS(10), - [anon_sym_quoteTerm] = ACTIONS(10), - [anon_sym_unquote] = ACTIONS(10), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LPAREN_PIPE] = ACTIONS(28), - [anon_sym_DOT_DOT_DOT] = ACTIONS(10), + [anon_sym_QMARK] = ACTIONS(292), + [anon_sym_Prop] = ACTIONS(292), + [anon_sym_Set] = ACTIONS(292), + [anon_sym_quote] = ACTIONS(292), + [anon_sym_quoteTerm] = ACTIONS(292), + [anon_sym_unquote] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(300), + [anon_sym_LPAREN_PIPE] = ACTIONS(302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(292), }, - [4] = { - [sym_expr] = STATE(37), + [221] = { + [sym_expr] = STATE(618), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -26399,7 +39124,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(42), + [anon_sym_RBRACE] = ACTIONS(783), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -26415,8 +39140,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [5] = { - [sym_expr] = STATE(59), + [222] = { + [sym_expr] = STATE(619), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -26438,7 +39163,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(66), + [anon_sym_RBRACE_RBRACE] = ACTIONS(785), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -26453,69 +39178,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [6] = { - [sym_lambda_bindings] = STATE(74), - [sym_untyped_bindings] = STATE(75), - [sym_typed_bindings] = STATE(75), - [anon_sym_DOT] = ACTIONS(78), - [anon_sym_DOT_DOT] = ACTIONS(80), - [anon_sym_LBRACE] = ACTIONS(82), - [anon_sym_LBRACE_LBRACE] = ACTIONS(84), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(88), - [anon_sym_LPAREN] = ACTIONS(90), - }, - [7] = { - [sym_forall_bindings] = STATE(80), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [8] = { - [sym__expr1] = STATE(93), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(98), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(101), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(104), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [9] = { - [sym_expr] = STATE(109), + [223] = { + [sym_expr] = STATE(620), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -26546,167 +39210,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Set] = ACTIONS(32), [anon_sym_quote] = ACTIONS(32), [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(66), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [10] = { - [sym_expr] = STATE(125), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [11] = { - [ts_builtin_sym_end] = ACTIONS(150), - [sym_comment] = ACTIONS(86), - }, - [12] = { - [sym_rewrite_equations] = STATE(135), - [sym_with_expressions] = STATE(136), - [ts_builtin_sym_end] = ACTIONS(152), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(154), - [anon_sym_with] = ACTIONS(156), - }, - [13] = { - [ts_builtin_sym_end] = ACTIONS(158), - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), - [anon_sym_rewrite] = ACTIONS(158), - [anon_sym_with] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(785), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [14] = { - [ts_builtin_sym_end] = ACTIONS(160), - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [224] = { + [sym_expr] = STATE(621), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), - [anon_sym_rewrite] = ACTIONS(160), - [anon_sym_with] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [15] = { + [225] = { + [anon_sym_RBRACE] = ACTIONS(787), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_PIPE_RPAREN] = ACTIONS(787), + [anon_sym_COLON] = ACTIONS(787), }, - [16] = { - [ts_builtin_sym_end] = ACTIONS(164), + [226] = { [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), [anon_sym_QMARK] = ACTIONS(166), @@ -26716,29 +39284,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(166), [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(164), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_rewrite] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), }, - [17] = { - [ts_builtin_sym_end] = ACTIONS(168), + [227] = { [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(168), [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), @@ -26748,306 +39311,343 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(168), [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_rewrite] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), }, - [18] = { - [sym_where_clause] = STATE(141), - [sym_rhs] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(170), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [228] = { + [sym__expr2] = STATE(229), + [sym_atomic_expr] = STATE(226), + [sym__atomic_expr_curly] = STATE(227), + [sym__atomic_expr_no_curly] = STATE(227), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(292), + [sym_set_n] = ACTIONS(292), + [sym_name_at] = ACTIONS(294), + [sym_qualified_name] = ACTIONS(292), + [anon_sym__] = ACTIONS(292), + [anon_sym_DOT] = ACTIONS(294), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_LBRACE_LBRACE] = ACTIONS(298), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(172), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(174), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(172), - [anon_sym_module] = ACTIONS(176), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(292), + [anon_sym_Prop] = ACTIONS(292), + [anon_sym_Set] = ACTIONS(292), + [anon_sym_quote] = ACTIONS(292), + [anon_sym_quoteTerm] = ACTIONS(292), + [anon_sym_unquote] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(300), + [anon_sym_LPAREN_PIPE] = ACTIONS(302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(292), }, - [19] = { - [ts_builtin_sym_end] = ACTIONS(178), - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [229] = { + [anon_sym_RBRACE] = ACTIONS(789), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_PIPE_RPAREN] = ACTIONS(789), + [anon_sym_COLON] = ACTIONS(789), }, - [20] = { - [ts_builtin_sym_end] = ACTIONS(180), - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [230] = { + [sym_atomic_expr] = STATE(628), + [sym__atomic_expr_curly] = STATE(629), + [sym__atomic_expr_no_curly] = STATE(629), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(791), + [sym_set_n] = ACTIONS(791), + [sym_name_at] = ACTIONS(794), + [sym_qualified_name] = ACTIONS(791), + [anon_sym__] = ACTIONS(791), + [anon_sym_DOT] = ACTIONS(794), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(800), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_BSLASH] = ACTIONS(707), + [anon_sym_forall] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(791), + [anon_sym_Prop] = ACTIONS(791), + [anon_sym_Set] = ACTIONS(791), + [anon_sym_quote] = ACTIONS(791), + [anon_sym_quoteTerm] = ACTIONS(791), + [anon_sym_unquote] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_LPAREN_PIPE] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(791), }, - [21] = { - [sym__expr1] = STATE(12), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(16), - [sym__atomic_expr_curly] = STATE(17), - [sym__atomic_expr_no_curly] = STATE(17), - [sym_lhs] = STATE(18), - [sym__declaration] = STATE(19), - [sym_function_clause] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(143), - [aux_sym__expr1_repeat1] = STATE(22), - [aux_sym__application_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(182), - [sym_literal] = ACTIONS(10), - [sym_set_n] = ACTIONS(10), - [sym_name_at] = ACTIONS(12), - [sym_qualified_name] = ACTIONS(10), - [anon_sym__] = ACTIONS(10), - [anon_sym_DOT] = ACTIONS(12), - [anon_sym_LBRACE] = ACTIONS(14), - [anon_sym_LBRACE_LBRACE] = ACTIONS(16), + [231] = { + [sym__application] = STATE(630), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(20), - [anon_sym_forall] = ACTIONS(22), - [anon_sym_let] = ACTIONS(24), - [anon_sym_QMARK] = ACTIONS(10), - [anon_sym_Prop] = ACTIONS(10), - [anon_sym_Set] = ACTIONS(10), - [anon_sym_quote] = ACTIONS(10), - [anon_sym_quoteTerm] = ACTIONS(10), - [anon_sym_unquote] = ACTIONS(10), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LPAREN_PIPE] = ACTIONS(28), - [anon_sym_DOT_DOT_DOT] = ACTIONS(10), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [22] = { - [sym__application] = STATE(144), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(16), - [sym__atomic_expr_curly] = STATE(17), - [sym__atomic_expr_no_curly] = STATE(17), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(23), - [sym_literal] = ACTIONS(10), - [sym_set_n] = ACTIONS(10), - [sym_name_at] = ACTIONS(12), - [sym_qualified_name] = ACTIONS(10), - [anon_sym__] = ACTIONS(10), - [anon_sym_DOT] = ACTIONS(12), - [anon_sym_LBRACE] = ACTIONS(14), - [anon_sym_LBRACE_LBRACE] = ACTIONS(16), + [232] = { + [sym__application] = STATE(631), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(20), - [anon_sym_forall] = ACTIONS(22), - [anon_sym_let] = ACTIONS(24), - [anon_sym_QMARK] = ACTIONS(10), - [anon_sym_Prop] = ACTIONS(10), - [anon_sym_Set] = ACTIONS(10), - [anon_sym_quote] = ACTIONS(10), - [anon_sym_quoteTerm] = ACTIONS(10), - [anon_sym_unquote] = ACTIONS(10), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LPAREN_PIPE] = ACTIONS(28), - [anon_sym_DOT_DOT_DOT] = ACTIONS(10), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [23] = { - [sym__expr2] = STATE(146), - [sym_atomic_expr] = STATE(16), - [sym__atomic_expr_curly] = STATE(17), - [sym__atomic_expr_no_curly] = STATE(17), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(10), - [sym_set_n] = ACTIONS(10), - [sym_name_at] = ACTIONS(12), - [sym_qualified_name] = ACTIONS(10), - [anon_sym__] = ACTIONS(10), - [anon_sym_DOT] = ACTIONS(12), - [anon_sym_LBRACE] = ACTIONS(14), - [anon_sym_LBRACE_LBRACE] = ACTIONS(16), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(20), - [anon_sym_forall] = ACTIONS(22), - [anon_sym_let] = ACTIONS(24), - [anon_sym_QMARK] = ACTIONS(10), - [anon_sym_Prop] = ACTIONS(10), - [anon_sym_Set] = ACTIONS(10), - [anon_sym_quote] = ACTIONS(10), - [anon_sym_quoteTerm] = ACTIONS(10), - [anon_sym_unquote] = ACTIONS(10), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LPAREN_PIPE] = ACTIONS(28), - [anon_sym_DOT_DOT_DOT] = ACTIONS(10), + [233] = { + [sym_literal] = ACTIONS(809), + [sym_set_n] = ACTIONS(809), + [sym_name_at] = ACTIONS(809), + [sym_qualified_name] = ACTIONS(809), + [anon_sym__] = ACTIONS(809), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_LBRACE_LBRACE] = ACTIONS(809), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_forall] = ACTIONS(809), + [anon_sym_let] = ACTIONS(809), + [anon_sym_QMARK] = ACTIONS(809), + [anon_sym_Prop] = ACTIONS(809), + [anon_sym_Set] = ACTIONS(809), + [anon_sym_quote] = ACTIONS(809), + [anon_sym_quoteTerm] = ACTIONS(809), + [anon_sym_unquote] = ACTIONS(809), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_LPAREN_PIPE] = ACTIONS(809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(809), }, - [24] = { - [ts_builtin_sym_end] = ACTIONS(186), - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [234] = { + [sym__application] = STATE(357), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_rewrite] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [25] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [235] = { + [sym_typed_bindings] = STATE(45), + [aux_sym_tele_arrow_repeat1] = STATE(235), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(817), + [anon_sym_LBRACE_LBRACE] = ACTIONS(820), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(823), + [anon_sym_LPAREN] = ACTIONS(825), }, - [26] = { - [sym_atomic_expr] = STATE(151), + [236] = { + [sym_expr] = STATE(244), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), [sym_name_at] = ACTIONS(34), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(34), - [anon_sym_LBRACE] = ACTIONS(188), - [anon_sym_LBRACE_LBRACE] = ACTIONS(190), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(328), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), [anon_sym_quote] = ACTIONS(32), [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_LPAREN] = ACTIONS(52), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [27] = { - [sym_atomic_expr] = STATE(151), + [237] = { + [sym_expr] = STATE(245), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(330), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [238] = { + [sym_expr] = STATE(274), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), + [sym_name_at] = ACTIONS(120), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(34), - [anon_sym_LBRACE] = ACTIONS(194), - [anon_sym_LBRACE_LBRACE] = ACTIONS(196), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), [anon_sym_quote] = ACTIONS(32), [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(198), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(330), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [28] = { - [anon_sym_LBRACE] = ACTIONS(200), - [anon_sym_LBRACE_LBRACE] = ACTIONS(202), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(204), + [239] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE_RBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), }, - [29] = { - [sym_expr] = STATE(169), + [240] = { + [sym_expr] = STATE(244), [sym__expr1] = STATE(38), - [sym__application] = STATE(170), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -27066,7 +39666,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(328), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -27082,42 +39682,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [30] = { - [ts_builtin_sym_end] = ACTIONS(228), - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_rewrite] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), - }, - [31] = { - [sym_expr] = STATE(184), + [241] = { + [sym_expr] = STATE(245), [sym__expr1] = STATE(60), - [sym__application] = STATE(185), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -27137,7 +39705,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(240), + [anon_sym_RBRACE_RBRACE] = ACTIONS(330), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -27152,71 +39720,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [32] = { - [sym_lambda_bindings] = STATE(193), - [sym_untyped_bindings] = STATE(194), - [sym_typed_bindings] = STATE(194), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(256), - [anon_sym_LPAREN] = ACTIONS(258), - }, - [33] = { - [sym_forall_bindings] = STATE(195), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [34] = { - [sym__expr1] = STATE(200), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(201), - [sym__declaration] = STATE(202), - [sym_function_clause] = STATE(203), - [aux_sym_source_file_repeat1] = STATE(204), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(260), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [35] = { - [sym_expr] = STATE(212), + [242] = { + [sym_expr] = STATE(274), [sym__expr1] = STATE(110), - [sym__application] = STATE(213), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -27247,12 +39754,442 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(240), + [anon_sym_RPAREN] = ACTIONS(330), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [36] = { - [sym_expr] = STATE(215), + [243] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE_RBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + }, + [244] = { + [anon_sym_RBRACE] = ACTIONS(828), + [sym_comment] = ACTIONS(86), + }, + [245] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(830), + [sym_comment] = ACTIONS(86), + }, + [246] = { + [anon_sym_LBRACE] = ACTIONS(832), + [anon_sym_LBRACE_LBRACE] = ACTIONS(834), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(836), + }, + [247] = { + [sym__application] = STATE(638), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(639), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), + }, + [248] = { + [sym__application] = STATE(640), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(838), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [249] = { + [sym_vopen] = STATE(641), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), + }, + [250] = { + [sym_binding_name] = STATE(642), + [sym__application] = STATE(643), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(838), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [251] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(757), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(757), + }, + [252] = { + [sym_lambda_bindings] = STATE(637), + [sym_untyped_bindings] = STATE(252), + [sym_typed_bindings] = STATE(252), + [anon_sym_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_LBRACE_LBRACE] = ACTIONS(338), + [anon_sym_RBRACE_RBRACE] = ACTIONS(763), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(342), + }, + [253] = { + [sym_expr] = STATE(646), + [sym__expr1] = STATE(647), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(648), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(649), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [254] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE_RBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_rewrite] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), + }, + [255] = { + [sym_atomic_expr] = STATE(650), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_literal] = ACTIONS(344), + [sym_set_n] = ACTIONS(344), + [sym_name_at] = ACTIONS(346), + [sym_qualified_name] = ACTIONS(344), + [anon_sym__] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_Prop] = ACTIONS(344), + [anon_sym_Set] = ACTIONS(344), + [anon_sym_quote] = ACTIONS(344), + [anon_sym_quoteTerm] = ACTIONS(344), + [anon_sym_unquote] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LPAREN_PIPE] = ACTIONS(360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + }, + [256] = { + [sym_expr] = STATE(652), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(844), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [257] = { + [sym_expr] = STATE(653), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(846), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [258] = { + [sym_lambda_bindings] = STATE(659), + [sym_untyped_bindings] = STATE(660), + [sym_typed_bindings] = STATE(660), + [anon_sym_DOT] = ACTIONS(848), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_LBRACE_LBRACE] = ACTIONS(854), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(858), + }, + [259] = { + [sym_forall_bindings] = STATE(661), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [260] = { + [sym__expr1] = STATE(662), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(663), + [sym__declaration] = STATE(664), + [sym_function_clause] = STATE(665), + [aux_sym_source_file_repeat1] = STATE(666), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(344), + [sym_set_n] = ACTIONS(344), + [sym_name_at] = ACTIONS(346), + [sym_qualified_name] = ACTIONS(344), + [anon_sym__] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_Prop] = ACTIONS(344), + [anon_sym_Set] = ACTIONS(344), + [anon_sym_quote] = ACTIONS(344), + [anon_sym_quoteTerm] = ACTIONS(344), + [anon_sym_unquote] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LPAREN_PIPE] = ACTIONS(360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + }, + [261] = { + [sym_expr] = STATE(667), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [262] = { + [sym_expr] = STATE(668), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -27288,56 +40225,119 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [37] = { - [anon_sym_RBRACE] = ACTIONS(278), - [sym_comment] = ACTIONS(86), - }, - [38] = { - [anon_sym_RBRACE] = ACTIONS(280), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(282), - }, - [39] = { - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(284), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_RPAREN] = ACTIONS(284), - [anon_sym_PIPE_RPAREN] = ACTIONS(284), - [anon_sym_COLON] = ACTIONS(284), + [263] = { + [sym_rewrite_equations] = STATE(671), + [sym_with_expressions] = STATE(672), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [anon_sym_RBRACE_RBRACE] = ACTIONS(152), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_in] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(860), + [anon_sym_with] = ACTIONS(862), }, - [40] = { - [anon_sym_SEMI] = ACTIONS(286), - [anon_sym_RBRACE] = ACTIONS(286), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(286), - [anon_sym_PIPE_RPAREN] = ACTIONS(286), - [anon_sym_COLON] = ACTIONS(286), + [264] = { + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [anon_sym_RBRACE_RBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + [anon_sym_rewrite] = ACTIONS(158), + [anon_sym_with] = ACTIONS(158), }, - [41] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_PIPE] = ACTIONS(162), + [265] = { + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [anon_sym_RBRACE_RBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + [anon_sym_rewrite] = ACTIONS(160), + [anon_sym_with] = ACTIONS(160), }, - [42] = { + [266] = { [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE_RBRACE] = ACTIONS(164), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -27345,28 +40345,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(166), [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_rewrite] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [43] = { + [267] = { [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE_RBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -27374,132 +40377,280 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(168), [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_rewrite] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [44] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [268] = { + [sym_where_clause] = STATE(676), + [sym_rhs] = STATE(677), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE_RBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(864), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(866), + [anon_sym_module] = ACTIONS(868), }, - [45] = { - [anon_sym_DOT] = ACTIONS(288), - [anon_sym_DOT_DOT] = ACTIONS(290), - [anon_sym_LBRACE] = ACTIONS(288), - [anon_sym_LBRACE_LBRACE] = ACTIONS(290), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(290), - [anon_sym_LPAREN] = ACTIONS(290), + [269] = { + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE_RBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), }, - [46] = { - [sym__application] = STATE(225), - [sym__expr2] = STATE(40), + [270] = { + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE_RBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + }, + [271] = { + [sym__expr1] = STATE(263), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(226), - [sym__atomic_expr_curly] = STATE(227), - [sym__atomic_expr_no_curly] = STATE(227), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(268), + [sym__declaration] = STATE(269), + [sym_function_clause] = STATE(270), + [aux_sym_source_file_repeat1] = STATE(678), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(344), + [sym_set_n] = ACTIONS(344), + [sym_name_at] = ACTIONS(346), + [sym_qualified_name] = ACTIONS(344), + [anon_sym__] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [anon_sym_RBRACE_RBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_in] = ACTIONS(870), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_Prop] = ACTIONS(344), + [anon_sym_Set] = ACTIONS(344), + [anon_sym_quote] = ACTIONS(344), + [anon_sym_quoteTerm] = ACTIONS(344), + [anon_sym_unquote] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LPAREN_PIPE] = ACTIONS(360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + }, + [272] = { + [sym__application] = STATE(679), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(228), - [sym_literal] = ACTIONS(292), - [sym_set_n] = ACTIONS(292), - [sym_name_at] = ACTIONS(294), - [sym_qualified_name] = ACTIONS(292), - [anon_sym__] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(294), - [anon_sym_LBRACE] = ACTIONS(296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(298), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(344), + [sym_set_n] = ACTIONS(344), + [sym_name_at] = ACTIONS(346), + [sym_qualified_name] = ACTIONS(344), + [anon_sym__] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE_LBRACE] = ACTIONS(350), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_Prop] = ACTIONS(292), - [anon_sym_Set] = ACTIONS(292), - [anon_sym_quote] = ACTIONS(292), - [anon_sym_quoteTerm] = ACTIONS(292), - [anon_sym_unquote] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LPAREN_PIPE] = ACTIONS(302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_Prop] = ACTIONS(344), + [anon_sym_Set] = ACTIONS(344), + [anon_sym_quote] = ACTIONS(344), + [anon_sym_quoteTerm] = ACTIONS(344), + [anon_sym_unquote] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LPAREN_PIPE] = ACTIONS(360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(344), }, - [47] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(34), - [anon_sym_LBRACE] = ACTIONS(188), - [anon_sym_LBRACE_LBRACE] = ACTIONS(190), + [273] = { + [sym__expr2] = STATE(680), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(344), + [sym_set_n] = ACTIONS(344), + [sym_name_at] = ACTIONS(346), + [sym_qualified_name] = ACTIONS(344), + [anon_sym__] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE_LBRACE] = ACTIONS(350), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(192), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_Prop] = ACTIONS(344), + [anon_sym_Set] = ACTIONS(344), + [anon_sym_quote] = ACTIONS(344), + [anon_sym_quoteTerm] = ACTIONS(344), + [anon_sym_unquote] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LPAREN_PIPE] = ACTIONS(360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(344), }, - [48] = { + [274] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(830), + }, + [275] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(830), + }, + [276] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_rewrite] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [277] = { + [sym_expr] = STATE(681), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym_tele_arrow_repeat1] = STATE(235), - [anon_sym_DOT] = ACTIONS(304), - [anon_sym_DOT_DOT] = ACTIONS(306), - [anon_sym_LBRACE] = ACTIONS(308), - [anon_sym_LBRACE_LBRACE] = ACTIONS(310), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [278] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(781), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(312), - [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_COLON] = ACTIONS(781), }, - [49] = { + [279] = { [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), @@ -27508,7 +40659,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [anon_sym_RBRACE_RBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), @@ -27524,229 +40674,145 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), }, - [50] = { - [sym_atomic_expr] = STATE(239), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(58), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LBRACE_LBRACE] = ACTIONS(318), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(320), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), - }, - [51] = { - [sym_atomic_expr] = STATE(239), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(58), - [anon_sym_LBRACE] = ACTIONS(322), - [anon_sym_LBRACE_LBRACE] = ACTIONS(324), + [280] = { + [sym_atomic_expr] = STATE(682), + [sym__atomic_expr_curly] = STATE(287), + [sym__atomic_expr_no_curly] = STATE(287), + [sym_literal] = ACTIONS(366), + [sym_set_n] = ACTIONS(366), + [sym_name_at] = ACTIONS(368), + [sym_qualified_name] = ACTIONS(366), + [anon_sym__] = ACTIONS(366), + [anon_sym_DOT] = ACTIONS(368), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_LBRACE_LBRACE] = ACTIONS(372), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_QMARK] = ACTIONS(366), + [anon_sym_Prop] = ACTIONS(366), + [anon_sym_Set] = ACTIONS(366), + [anon_sym_quote] = ACTIONS(366), + [anon_sym_quoteTerm] = ACTIONS(366), + [anon_sym_unquote] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(374), + [anon_sym_LPAREN_PIPE] = ACTIONS(376), + [anon_sym_DOT_DOT_DOT] = ACTIONS(366), }, - [52] = { - [sym_expr] = STATE(244), + [281] = { + [sym_expr] = STATE(684), [sym__expr1] = STATE(38), - [sym__application] = STATE(170), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(328), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [53] = { - [sym_expr] = STATE(245), + [282] = { + [sym_expr] = STATE(685), [sym__expr1] = STATE(60), - [sym__application] = STATE(185), + [sym__application] = STATE(61), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(330), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), - }, - [54] = { - [sym_lambda_bindings] = STATE(251), - [sym_untyped_bindings] = STATE(252), - [sym_typed_bindings] = STATE(252), - [anon_sym_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LBRACE_LBRACE] = ACTIONS(338), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(342), - }, - [55] = { - [sym_forall_bindings] = STATE(253), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [56] = { - [sym__expr1] = STATE(263), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(268), - [sym__declaration] = STATE(269), - [sym_function_clause] = STATE(270), - [aux_sym_source_file_repeat1] = STATE(271), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(346), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(876), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [57] = { - [sym_expr] = STATE(274), + [283] = { + [sym_expr] = STATE(686), [sym__expr1] = STATE(110), - [sym__application] = STATE(213), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(330), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(876), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [58] = { - [sym_expr] = STATE(275), + [284] = { + [sym_expr] = STATE(687), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -27782,38 +40848,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [59] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(362), - [sym_comment] = ACTIONS(86), - }, - [60] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(280), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(364), - }, - [61] = { - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_RBRACE_RBRACE] = ACTIONS(284), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_COLON] = ACTIONS(284), - }, - [62] = { - [anon_sym_SEMI] = ACTIONS(286), - [anon_sym_RBRACE_RBRACE] = ACTIONS(286), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_COLON] = ACTIONS(286), - }, - [63] = { + [285] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(787), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(364), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_COLON] = ACTIONS(787), }, - [64] = { + [286] = { [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), @@ -27822,7 +40865,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [anon_sym_RBRACE_RBRACE] = ACTIONS(164), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), @@ -27838,10 +40880,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), }, - [65] = { + [287] = { [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), @@ -27850,7 +40891,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [anon_sym_RBRACE_RBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), @@ -27866,52 +40906,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), }, - [66] = { - [sym_expr] = STATE(278), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), - }, - [67] = { - [sym__application] = STATE(285), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(15), + [288] = { + [sym__expr2] = STATE(289), [sym_atomic_expr] = STATE(286), [sym__atomic_expr_curly] = STATE(287), [sym__atomic_expr_no_curly] = STATE(287), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(288), + [aux_sym__application_repeat1] = STATE(147), [sym_literal] = ACTIONS(366), [sym_set_n] = ACTIONS(366), [sym_name_at] = ACTIONS(368), @@ -27921,6 +40921,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(370), [anon_sym_LBRACE_LBRACE] = ACTIONS(372), [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), [anon_sym_let] = ACTIONS(72), @@ -27934,282 +40935,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(376), [anon_sym_DOT_DOT_DOT] = ACTIONS(366), }, - [68] = { - [sym__expr2] = STATE(289), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(58), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LBRACE_LBRACE] = ACTIONS(318), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(320), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), - }, - [69] = { - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(380), + [289] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(789), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(382), - }, - [70] = { - [sym__application] = STATE(305), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(310), - [aux_sym__application_repeat1] = STATE(311), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(406), - }, - [71] = { - [sym__application] = STATE(321), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(390), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [72] = { - [sym__application] = STATE(336), - [sym__expr2] = STATE(14), - [sym_atomic_expr] = STATE(337), - [sym__atomic_expr_curly] = STATE(338), - [sym__atomic_expr_no_curly] = STATE(338), - [sym_non_absurd_lambda_clause] = STATE(339), - [sym_absurd_lambda_clause] = STATE(339), - [sym_lambda_clause] = STATE(340), - [sym_lambda_where_clauses] = STATE(341), - [aux_sym__application_repeat1] = STATE(342), - [sym_literal] = ACTIONS(426), - [sym_set_n] = ACTIONS(426), - [sym_name_at] = ACTIONS(428), - [sym_qualified_name] = ACTIONS(426), - [anon_sym__] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_LBRACE_LBRACE] = ACTIONS(432), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(434), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(426), - [anon_sym_Prop] = ACTIONS(426), - [anon_sym_Set] = ACTIONS(426), - [anon_sym_quote] = ACTIONS(426), - [anon_sym_quoteTerm] = ACTIONS(426), - [anon_sym_unquote] = ACTIONS(426), - [anon_sym_LPAREN] = ACTIONS(442), - [anon_sym_LPAREN_PIPE] = ACTIONS(444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(426), - [sym_catchall_pragma] = ACTIONS(446), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_COLON] = ACTIONS(789), }, - [73] = { - [sym_binding_name] = STATE(349), - [sym__application] = STATE(350), + [290] = { + [sym__application] = STATE(688), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(390), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [74] = { - [ts_builtin_sym_end] = ACTIONS(460), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(462), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [75] = { - [sym_lambda_bindings] = STATE(296), - [sym_untyped_bindings] = STATE(75), - [sym_typed_bindings] = STATE(75), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(466), - [anon_sym_DOT_DOT] = ACTIONS(466), - [anon_sym_LBRACE] = ACTIONS(468), - [anon_sym_LBRACE_LBRACE] = ACTIONS(470), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(472), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_rewrite] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), - }, - [76] = { - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_LBRACE_LBRACE] = ACTIONS(476), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(478), - }, - [77] = { - [sym__application] = STATE(366), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), }, - [78] = { - [sym__application] = STATE(370), + [291] = { + [sym__application] = STATE(689), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), [sym_name_at] = ACTIONS(410), @@ -28232,27 +40999,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [79] = { - [sym_binding_name] = STATE(371), - [sym__application] = STATE(372), + [292] = { + [sym_binding_name] = STATE(690), + [sym__application] = STATE(691), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), [anon_sym_QMARK] = ACTIONS(408), [anon_sym_Prop] = ACTIONS(408), [anon_sym_Set] = ACTIONS(408), @@ -28263,70 +41030,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [80] = { - [sym_expr] = STATE(341), - [sym__expr1] = STATE(380), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(381), - [sym_atomic_expr] = STATE(382), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [sym_tele_arrow] = STATE(384), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(22), - [aux_sym__application_repeat1] = STATE(385), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(500), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(502), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(506), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(20), - [anon_sym_forall] = ACTIONS(22), - [anon_sym_let] = ACTIONS(24), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), - }, - [81] = { - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_LBRACE_LBRACE] = ACTIONS(514), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(514), - [anon_sym_LPAREN] = ACTIONS(514), - }, - [82] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(516), - }, - [83] = { - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(387), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [84] = { - [ts_builtin_sym_end] = ACTIONS(30), + [293] = { + [sym__layout_semicolon] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -28338,13 +41043,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), [anon_sym_Prop] = ACTIONS(30), [anon_sym_Set] = ACTIONS(30), @@ -28352,39 +41054,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(30), [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_rewrite] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), }, - [85] = { - [sym_atomic_expr] = STATE(388), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(104), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [294] = { + [sym_atomic_expr] = STATE(692), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), }, - [86] = { - [sym_expr] = STATE(390), + [295] = { + [sym_expr] = STATE(694), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -28405,7 +41103,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(880), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -28421,8 +41119,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [87] = { - [sym_expr] = STATE(391), + [296] = { + [ts_builtin_sym_end] = ACTIONS(882), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + [anon_sym_rewrite] = ACTIONS(882), + [anon_sym_with] = ACTIONS(882), + }, + [297] = { + [sym_expr] = STATE(695), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -28444,7 +41173,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(522), + [anon_sym_RBRACE_RBRACE] = ACTIONS(884), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -28459,20 +41188,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [88] = { - [sym_lambda_bindings] = STATE(397), - [sym_untyped_bindings] = STATE(398), - [sym_typed_bindings] = STATE(398), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACE_LBRACE] = ACTIONS(530), + [298] = { + [sym_expr] = STATE(706), + [sym__expr1] = STATE(707), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(710), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(713), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(714), + [aux_sym__application_repeat1] = STATE(715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(888), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(896), + [anon_sym_forall] = ACTIONS(898), + [anon_sym_let] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [299] = { + [sym_lambda_bindings] = STATE(721), + [sym_untyped_bindings] = STATE(722), + [sym_typed_bindings] = STATE(722), + [anon_sym_DOT] = ACTIONS(906), + [anon_sym_DOT_DOT] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACE_LBRACE] = ACTIONS(912), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_where] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(916), }, - [89] = { - [sym_forall_bindings] = STATE(399), + [300] = { + [sym_forall_bindings] = STATE(723), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -28484,44 +41250,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [90] = { - [sym__expr1] = STATE(93), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [301] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(98), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(400), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(104), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(738), + [sym__declaration] = STATE(739), + [sym_function_clause] = STATE(740), + [aux_sym_source_file_repeat1] = STATE(741), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), }, - [91] = { - [sym_expr] = STATE(401), + [302] = { + [sym_expr] = STATE(744), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -28554,12 +41320,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(522), + [anon_sym_RPAREN] = ACTIONS(884), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [92] = { - [sym_expr] = STATE(402), + [303] = { + [sym_expr] = STATE(745), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -28595,109 +41361,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [93] = { - [sym_rewrite_equations] = STATE(405), - [sym_with_expressions] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(152), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [304] = { + [sym__application] = STATE(756), + [sym__expr2] = STATE(757), + [sym_atomic_expr] = STATE(758), + [sym__atomic_expr_curly] = STATE(759), + [sym__atomic_expr_no_curly] = STATE(759), + [aux_sym__application_repeat1] = STATE(760), + [sym_literal] = ACTIONS(936), + [sym_set_n] = ACTIONS(936), + [sym_name_at] = ACTIONS(938), + [sym_qualified_name] = ACTIONS(936), + [anon_sym__] = ACTIONS(936), + [anon_sym_DOT] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_LBRACE_LBRACE] = ACTIONS(942), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(536), - [anon_sym_with] = ACTIONS(538), + [anon_sym_DASH_GT] = ACTIONS(944), + [anon_sym_BSLASH] = ACTIONS(946), + [anon_sym_forall] = ACTIONS(948), + [anon_sym_let] = ACTIONS(950), + [anon_sym_QMARK] = ACTIONS(936), + [anon_sym_Prop] = ACTIONS(936), + [anon_sym_Set] = ACTIONS(936), + [anon_sym_quote] = ACTIONS(936), + [anon_sym_quoteTerm] = ACTIONS(936), + [anon_sym_unquote] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_LPAREN_PIPE] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(936), }, - [94] = { - [ts_builtin_sym_end] = ACTIONS(158), - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_in] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), - [anon_sym_rewrite] = ACTIONS(158), - [anon_sym_with] = ACTIONS(158), + [305] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(958), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(960), }, - [95] = { - [ts_builtin_sym_end] = ACTIONS(160), - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_in] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), - [anon_sym_rewrite] = ACTIONS(160), - [anon_sym_with] = ACTIONS(160), + [306] = { + [sym__layout_semicolon] = ACTIONS(286), + [anon_sym_SEMI] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(286), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(286), }, - [96] = { - [ts_builtin_sym_end] = ACTIONS(164), + [307] = { + [sym__layout_semicolon] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -28709,13 +41418,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -28723,16 +41429,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(166), [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_rewrite] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), }, - [97] = { - [ts_builtin_sym_end] = ACTIONS(168), + [308] = { + [sym__layout_semicolon] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -28744,13 +41446,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -28758,279 +41457,527 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(168), [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_rewrite] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), }, - [98] = { - [sym_where_clause] = STATE(410), - [sym_rhs] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(170), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [309] = { + [sym__layout_semicolon] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [sym_comment] = ACTIONS(86), + }, + [310] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [sym_comment] = ACTIONS(86), + }, + [311] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(970), + [sym_comment] = ACTIONS(86), + }, + [312] = { + [sym__expr2] = STATE(766), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [aux_sym__application_repeat1] = STATE(767), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(540), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(542), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(540), - [anon_sym_module] = ACTIONS(544), - [anon_sym_rewrite] = ACTIONS(170), - [anon_sym_with] = ACTIONS(170), + [anon_sym_DASH_GT] = ACTIONS(944), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), }, - [99] = { - [ts_builtin_sym_end] = ACTIONS(178), - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_RBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [313] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE_RBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_where] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_in] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_RPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - [anon_sym_COLON] = ACTIONS(178), - [anon_sym_module] = ACTIONS(178), - [anon_sym_rewrite] = ACTIONS(178), - [anon_sym_with] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), }, - [100] = { - [ts_builtin_sym_end] = ACTIONS(180), - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_RBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [314] = { + [sym_atomic_expr] = STATE(768), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(180), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_where] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_in] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_RPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), - [anon_sym_COLON] = ACTIONS(180), - [anon_sym_module] = ACTIONS(180), - [anon_sym_rewrite] = ACTIONS(180), - [anon_sym_with] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [101] = { - [sym__expr1] = STATE(93), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(98), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(412), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(462), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [315] = { + [sym_expr] = STATE(770), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [102] = { - [sym__application] = STATE(413), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(103), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(104), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [316] = { + [sym_expr] = STATE(771), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(974), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [103] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(104), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [317] = { + [sym_lambda_bindings] = STATE(772), + [sym_untyped_bindings] = STATE(773), + [sym_typed_bindings] = STATE(773), + [anon_sym_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_LBRACE_LBRACE] = ACTIONS(338), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(342), + }, + [318] = { + [sym_forall_bindings] = STATE(774), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [319] = { + [sym__expr1] = STATE(263), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(775), + [sym__declaration] = STATE(776), + [sym_function_clause] = STATE(777), + [aux_sym_source_file_repeat1] = STATE(778), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(344), + [sym_set_n] = ACTIONS(344), + [sym_name_at] = ACTIONS(346), + [sym_qualified_name] = ACTIONS(344), + [anon_sym__] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE_LBRACE] = ACTIONS(350), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_Prop] = ACTIONS(344), + [anon_sym_Set] = ACTIONS(344), + [anon_sym_quote] = ACTIONS(344), + [anon_sym_quoteTerm] = ACTIONS(344), + [anon_sym_unquote] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LPAREN_PIPE] = ACTIONS(360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(344), }, - [104] = { - [sym_atomic_expr] = STATE(151), + [320] = { + [sym_expr] = STATE(779), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), [sym_name_at] = ACTIONS(120), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(188), - [anon_sym_LBRACE_LBRACE] = ACTIONS(190), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), [anon_sym_quote] = ACTIONS(32), [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(974), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [105] = { - [sym_atomic_expr] = STATE(151), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(194), - [anon_sym_LBRACE_LBRACE] = ACTIONS(196), + [321] = { + [sym_expr] = STATE(780), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(198), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [106] = { - [sym_lambda_bindings] = STATE(416), - [sym_untyped_bindings] = STATE(417), - [sym_typed_bindings] = STATE(417), + [322] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(958), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(976), + }, + [323] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE_RBRACE] = ACTIONS(164), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + }, + [324] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE_RBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + }, + [325] = { + [sym__expr2] = STATE(289), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(782), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [326] = { + [sym_literal] = ACTIONS(978), + [sym_set_n] = ACTIONS(978), + [sym_name_at] = ACTIONS(978), + [sym_qualified_name] = ACTIONS(978), + [anon_sym__] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_LBRACE_LBRACE] = ACTIONS(978), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(978), + [anon_sym_BSLASH] = ACTIONS(978), + [anon_sym_forall] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_QMARK] = ACTIONS(978), + [anon_sym_Prop] = ACTIONS(978), + [anon_sym_Set] = ACTIONS(978), + [anon_sym_quote] = ACTIONS(978), + [anon_sym_quoteTerm] = ACTIONS(978), + [anon_sym_unquote] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_LPAREN_PIPE] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(978), + [sym_catchall_pragma] = ACTIONS(978), + }, + [327] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(800), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [328] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(1002), + }, + [329] = { + [sym_atomic_expr] = STATE(768), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [330] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + }, + [331] = { + [sym_lambda_bindings] = STATE(802), + [sym_untyped_bindings] = STATE(803), + [sym_typed_bindings] = STATE(803), [anon_sym_DOT] = ACTIONS(92), [anon_sym_DOT_DOT] = ACTIONS(94), [anon_sym_LBRACE] = ACTIONS(252), [anon_sym_LBRACE_LBRACE] = ACTIONS(254), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(546), + [anon_sym_where] = ACTIONS(256), [anon_sym_LPAREN] = ACTIONS(258), }, - [107] = { - [sym_forall_bindings] = STATE(418), + [332] = { + [sym_forall_bindings] = STATE(804), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -29042,32 +41989,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [108] = { - [sym__expr1] = STATE(423), + [333] = { + [sym__expr1] = STATE(809), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(424), - [sym__declaration] = STATE(202), - [sym_function_clause] = STATE(203), - [aux_sym_source_file_repeat1] = STATE(425), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), + [sym_lhs] = STATE(810), + [sym__declaration] = STATE(776), + [sym_function_clause] = STATE(777), + [aux_sym_source_file_repeat1] = STATE(811), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), [sym_literal] = ACTIONS(102), [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(548), + [sym_name_at] = ACTIONS(1006), [sym_qualified_name] = ACTIONS(102), [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(548), + [anon_sym_DOT] = ACTIONS(1006), [anon_sym_LBRACE] = ACTIONS(106), [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), [anon_sym_QMARK] = ACTIONS(102), [anon_sym_Prop] = ACTIONS(102), [anon_sym_Set] = ACTIONS(102), @@ -29078,132 +42025,209 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(118), [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [109] = { + [334] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(362), + [anon_sym_RPAREN] = ACTIONS(958), }, - [110] = { + [335] = { [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(1014), }, - [111] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(162), + [336] = { + [sym__expr2] = STATE(229), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(782), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [112] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), + [337] = { + [sym_expr] = STATE(765), + [sym__expr1] = STATE(366), + [sym__application] = STATE(13), + [sym__expr2] = STATE(14), + [sym__atomic_exprs1] = STATE(367), + [sym_atomic_expr] = STATE(368), + [sym__atomic_expr_curly] = STATE(369), + [sym__atomic_expr_no_curly] = STATE(369), + [sym_tele_arrow] = STATE(370), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), + [aux_sym__expr1_repeat1] = STATE(22), + [aux_sym__application_repeat1] = STATE(371), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), + [sym_literal] = ACTIONS(478), + [sym_set_n] = ACTIONS(478), + [sym_name_at] = ACTIONS(480), + [sym_qualified_name] = ACTIONS(478), + [anon_sym__] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(482), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_LBRACE_LBRACE] = ACTIONS(486), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(20), + [anon_sym_forall] = ACTIONS(22), + [anon_sym_let] = ACTIONS(24), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_Prop] = ACTIONS(478), + [anon_sym_Set] = ACTIONS(478), + [anon_sym_quote] = ACTIONS(478), + [anon_sym_quoteTerm] = ACTIONS(478), + [anon_sym_unquote] = ACTIONS(478), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_LPAREN_PIPE] = ACTIONS(490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), }, - [113] = { - [sym__application] = STATE(225), + [338] = { + [sym__application] = STATE(815), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(226), - [sym__atomic_expr_curly] = STATE(227), - [sym__atomic_expr_no_curly] = STATE(227), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(430), - [sym_literal] = ACTIONS(292), - [sym_set_n] = ACTIONS(292), - [sym_name_at] = ACTIONS(558), - [sym_qualified_name] = ACTIONS(292), - [anon_sym__] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(298), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_Prop] = ACTIONS(292), - [anon_sym_Set] = ACTIONS(292), - [anon_sym_quote] = ACTIONS(292), - [anon_sym_quoteTerm] = ACTIONS(292), - [anon_sym_unquote] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LPAREN_PIPE] = ACTIONS(302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [114] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(188), - [anon_sym_LBRACE_LBRACE] = ACTIONS(190), + [339] = { + [sym__application] = STATE(816), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(192), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [115] = { + [340] = { + [sym__application] = STATE(817), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [341] = { + [sym_binding_name] = STATE(818), + [sym__application] = STATE(543), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [342] = { [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), @@ -29215,145 +42239,122 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_PIPE_RPAREN] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), }, - [116] = { - [sym_atomic_expr] = STATE(434), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(132), - [anon_sym_LBRACE] = ACTIONS(560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(562), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [117] = { - [sym_atomic_expr] = STATE(434), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(132), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_LBRACE_LBRACE] = ACTIONS(568), + [343] = { + [sym_atomic_expr] = STATE(819), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [118] = { - [sym_expr] = STATE(439), + [344] = { + [sym_expr] = STATE(821), [sym__expr1] = STATE(38), - [sym__application] = STATE(170), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(572), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [119] = { - [sym_expr] = STATE(440), + [345] = { + [sym_expr] = STATE(822), [sym__expr1] = STATE(60), - [sym__application] = STATE(185), + [sym__application] = STATE(61), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1018), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [120] = { - [sym_lambda_bindings] = STATE(442), - [sym_untyped_bindings] = STATE(443), - [sym_typed_bindings] = STATE(443), + [346] = { + [sym_lambda_bindings] = STATE(823), + [sym_untyped_bindings] = STATE(824), + [sym_typed_bindings] = STATE(824), [anon_sym_DOT] = ACTIONS(92), [anon_sym_DOT_DOT] = ACTIONS(94), [anon_sym_LBRACE] = ACTIONS(252), [anon_sym_LBRACE_LBRACE] = ACTIONS(254), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(576), + [anon_sym_where] = ACTIONS(256), [anon_sym_LPAREN] = ACTIONS(258), }, - [121] = { - [sym_forall_bindings] = STATE(444), + [347] = { + [sym_forall_bindings] = STATE(825), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -29365,82 +42366,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [122] = { - [sym__expr1] = STATE(454), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), + [348] = { + [sym__expr1] = STATE(200), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(459), - [sym__declaration] = STATE(460), - [sym_function_clause] = STATE(461), - [aux_sym_source_file_repeat1] = STATE(462), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(580), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(826), + [sym__declaration] = STATE(827), + [sym_function_clause] = STATE(828), + [aux_sym_source_file_repeat1] = STATE(829), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(260), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [123] = { - [sym_expr] = STATE(465), + [349] = { + [sym_expr] = STATE(830), [sym__expr1] = STATE(110), - [sym__application] = STATE(213), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(574), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(1018), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [124] = { - [sym_expr] = STATE(466), + [350] = { + [sym_expr] = STATE(831), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -29476,34 +42477,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [125] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(362), - }, - [126] = { - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(596), - [anon_sym_PIPE_RPAREN] = ACTIONS(280), - }, - [127] = { + [351] = { + [anon_sym_RBRACE] = ACTIONS(1020), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(733), }, - [128] = { + [352] = { [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), @@ -29515,23 +42504,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_PIPE_RPAREN] = ACTIONS(164), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), }, - [129] = { + [353] = { [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), @@ -29540,693 +42526,135 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Set] = ACTIONS(168), [anon_sym_quote] = ACTIONS(168), [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_PIPE_RPAREN] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - }, - [130] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [131] = { - [sym__application] = STATE(225), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(474), - [sym__atomic_expr_curly] = STATE(475), - [sym__atomic_expr_no_curly] = STATE(475), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(476), - [sym_literal] = ACTIONS(598), - [sym_set_n] = ACTIONS(598), - [sym_name_at] = ACTIONS(600), - [sym_qualified_name] = ACTIONS(598), - [anon_sym__] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_LBRACE_LBRACE] = ACTIONS(604), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_Prop] = ACTIONS(598), - [anon_sym_Set] = ACTIONS(598), - [anon_sym_quote] = ACTIONS(598), - [anon_sym_quoteTerm] = ACTIONS(598), - [anon_sym_unquote] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LPAREN_PIPE] = ACTIONS(608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - }, - [132] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(132), - [anon_sym_LBRACE] = ACTIONS(560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(562), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [133] = { - [sym__expr1] = STATE(486), - [sym__application] = STATE(487), - [sym__expr2] = STATE(488), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(489), - [sym__atomic_expr_curly] = STATE(490), - [sym__atomic_expr_no_curly] = STATE(490), - [aux_sym__expr1_repeat1] = STATE(491), - [aux_sym__application_repeat1] = STATE(492), - [sym_literal] = ACTIONS(610), - [sym_set_n] = ACTIONS(610), - [sym_name_at] = ACTIONS(612), - [sym_qualified_name] = ACTIONS(610), - [anon_sym__] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_LBRACE_LBRACE] = ACTIONS(616), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(618), - [anon_sym_forall] = ACTIONS(620), - [anon_sym_let] = ACTIONS(622), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_Prop] = ACTIONS(610), - [anon_sym_Set] = ACTIONS(610), - [anon_sym_quote] = ACTIONS(610), - [anon_sym_quoteTerm] = ACTIONS(610), - [anon_sym_unquote] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_LPAREN_PIPE] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(610), - }, - [134] = { - [sym__expr1] = STATE(502), - [sym__application] = STATE(503), - [sym__expr2] = STATE(504), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(505), - [sym__atomic_expr_curly] = STATE(506), - [sym__atomic_expr_no_curly] = STATE(506), - [aux_sym__expr1_repeat1] = STATE(507), - [aux_sym__application_repeat1] = STATE(508), - [sym_literal] = ACTIONS(628), - [sym_set_n] = ACTIONS(628), - [sym_name_at] = ACTIONS(630), - [sym_qualified_name] = ACTIONS(628), - [anon_sym__] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(630), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LBRACE_LBRACE] = ACTIONS(634), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(636), - [anon_sym_forall] = ACTIONS(638), - [anon_sym_let] = ACTIONS(640), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_Prop] = ACTIONS(628), - [anon_sym_Set] = ACTIONS(628), - [anon_sym_quote] = ACTIONS(628), - [anon_sym_quoteTerm] = ACTIONS(628), - [anon_sym_unquote] = ACTIONS(628), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LPAREN_PIPE] = ACTIONS(644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - }, - [135] = { - [sym_with_expressions] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(646), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(156), - }, - [136] = { - [ts_builtin_sym_end] = ACTIONS(646), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - }, - [137] = { - [sym_literal] = ACTIONS(648), - [sym_set_n] = ACTIONS(648), - [sym_name_at] = ACTIONS(648), - [sym_qualified_name] = ACTIONS(648), - [anon_sym__] = ACTIONS(648), - [anon_sym_DOT] = ACTIONS(648), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(648), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(648), - [anon_sym_forall] = ACTIONS(648), - [anon_sym_let] = ACTIONS(648), - [anon_sym_QMARK] = ACTIONS(648), - [anon_sym_Prop] = ACTIONS(648), - [anon_sym_Set] = ACTIONS(648), - [anon_sym_quote] = ACTIONS(648), - [anon_sym_quoteTerm] = ACTIONS(648), - [anon_sym_unquote] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_LPAREN_PIPE] = ACTIONS(648), - [anon_sym_DOT_DOT_DOT] = ACTIONS(648), - }, - [138] = { - [sym_expr] = STATE(520), - [sym__expr1] = STATE(521), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(524), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(527), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(528), - [aux_sym__application_repeat1] = STATE(529), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(652), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(660), - [anon_sym_forall] = ACTIONS(662), - [anon_sym_let] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), - }, - [139] = { - [sym__expr1] = STATE(531), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(16), - [sym__atomic_expr_curly] = STATE(17), - [sym__atomic_expr_no_curly] = STATE(17), - [sym_lhs] = STATE(532), - [sym__declaration] = STATE(533), - [sym_function_clause] = STATE(20), - [sym__declarations1] = STATE(534), - [aux_sym__expr1_repeat1] = STATE(535), - [aux_sym__application_repeat1] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(670), - [sym_literal] = ACTIONS(10), - [sym_set_n] = ACTIONS(10), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(672), - [sym_qualified_name] = ACTIONS(10), - [anon_sym__] = ACTIONS(10), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(14), - [anon_sym_LBRACE_LBRACE] = ACTIONS(16), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(10), - [anon_sym_Prop] = ACTIONS(10), - [anon_sym_Set] = ACTIONS(10), - [anon_sym_quote] = ACTIONS(10), - [anon_sym_quoteTerm] = ACTIONS(10), - [anon_sym_unquote] = ACTIONS(10), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LPAREN_PIPE] = ACTIONS(28), - [anon_sym_DOT_DOT_DOT] = ACTIONS(10), - }, - [140] = { - [sym_anonymous_name] = STATE(537), - [sym_name] = ACTIONS(674), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), - }, - [141] = { - [ts_builtin_sym_end] = ACTIONS(678), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - }, - [142] = { - [sym_where_clause] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(678), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(174), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(176), - }, - [143] = { - [sym__expr1] = STATE(12), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(16), - [sym__atomic_expr_curly] = STATE(17), - [sym__atomic_expr_no_curly] = STATE(17), - [sym_lhs] = STATE(18), - [sym__declaration] = STATE(19), - [sym_function_clause] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(143), - [aux_sym__expr1_repeat1] = STATE(22), - [aux_sym__application_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(680), - [sym_literal] = ACTIONS(682), - [sym_set_n] = ACTIONS(682), - [sym_name_at] = ACTIONS(685), - [sym_qualified_name] = ACTIONS(682), - [anon_sym__] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_LBRACE_LBRACE] = ACTIONS(691), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(694), - [anon_sym_forall] = ACTIONS(697), - [anon_sym_let] = ACTIONS(700), - [anon_sym_QMARK] = ACTIONS(682), - [anon_sym_Prop] = ACTIONS(682), - [anon_sym_Set] = ACTIONS(682), - [anon_sym_quote] = ACTIONS(682), - [anon_sym_quoteTerm] = ACTIONS(682), - [anon_sym_unquote] = ACTIONS(682), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_LPAREN_PIPE] = ACTIONS(706), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - }, - [144] = { - [ts_builtin_sym_end] = ACTIONS(709), - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), - [anon_sym_rewrite] = ACTIONS(709), - [anon_sym_with] = ACTIONS(709), - }, - [145] = { - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(546), - [sym__atomic_expr_curly] = STATE(547), - [sym__atomic_expr_no_curly] = STATE(547), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(548), - [sym_literal] = ACTIONS(711), - [sym_set_n] = ACTIONS(711), - [sym_name_at] = ACTIONS(714), - [sym_qualified_name] = ACTIONS(711), - [anon_sym__] = ACTIONS(711), - [anon_sym_DOT] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(717), - [anon_sym_LBRACE_LBRACE] = ACTIONS(720), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(648), - [anon_sym_forall] = ACTIONS(648), - [anon_sym_let] = ACTIONS(648), - [anon_sym_QMARK] = ACTIONS(711), - [anon_sym_Prop] = ACTIONS(711), - [anon_sym_Set] = ACTIONS(711), - [anon_sym_quote] = ACTIONS(711), - [anon_sym_quoteTerm] = ACTIONS(711), - [anon_sym_unquote] = ACTIONS(711), - [anon_sym_LPAREN] = ACTIONS(723), - [anon_sym_LPAREN_PIPE] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - }, - [146] = { - [ts_builtin_sym_end] = ACTIONS(729), - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_rewrite] = ACTIONS(729), - [anon_sym_with] = ACTIONS(729), - }, - [147] = { - [sym_atomic_expr] = STATE(555), - [sym__atomic_expr_curly] = STATE(556), - [sym__atomic_expr_no_curly] = STATE(556), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(731), - [sym_set_n] = ACTIONS(731), - [sym_name_at] = ACTIONS(734), - [sym_qualified_name] = ACTIONS(731), - [anon_sym__] = ACTIONS(731), - [anon_sym_DOT] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(737), - [anon_sym_LBRACE_LBRACE] = ACTIONS(740), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_BSLASH] = ACTIONS(743), - [anon_sym_forall] = ACTIONS(743), - [anon_sym_let] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_Prop] = ACTIONS(731), - [anon_sym_Set] = ACTIONS(731), - [anon_sym_quote] = ACTIONS(731), - [anon_sym_quoteTerm] = ACTIONS(731), - [anon_sym_unquote] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_LPAREN_PIPE] = ACTIONS(748), - [anon_sym_DOT_DOT_DOT] = ACTIONS(731), - }, - [148] = { - [sym_expr] = STATE(169), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(214), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [149] = { - [sym_expr] = STATE(184), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(240), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), - }, - [150] = { - [sym_expr] = STATE(212), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + }, + [354] = { + [sym__expr2] = STATE(229), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(782), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(240), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [151] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [355] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1020), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(753), + }, + [356] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(1020), + }, + [357] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(777), + }, + [358] = { + [ts_builtin_sym_end] = ACTIONS(30), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_rewrite] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), }, - [152] = { - [sym_expr] = STATE(169), + [359] = { + [sym_atomic_expr] = STATE(836), + [sym__atomic_expr_curly] = STATE(369), + [sym__atomic_expr_no_curly] = STATE(369), + [sym_literal] = ACTIONS(478), + [sym_set_n] = ACTIONS(478), + [sym_name_at] = ACTIONS(480), + [sym_qualified_name] = ACTIONS(478), + [anon_sym__] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1024), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_Prop] = ACTIONS(478), + [anon_sym_Set] = ACTIONS(478), + [anon_sym_quote] = ACTIONS(478), + [anon_sym_quoteTerm] = ACTIONS(478), + [anon_sym_unquote] = ACTIONS(478), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_LPAREN_PIPE] = ACTIONS(490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + }, + [360] = { + [sym_atomic_expr] = STATE(836), + [sym__atomic_expr_curly] = STATE(369), + [sym__atomic_expr_no_curly] = STATE(369), + [sym_literal] = ACTIONS(478), + [sym_set_n] = ACTIONS(478), + [sym_name_at] = ACTIONS(480), + [sym_qualified_name] = ACTIONS(478), + [anon_sym__] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1030), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_Prop] = ACTIONS(478), + [anon_sym_Set] = ACTIONS(478), + [anon_sym_quote] = ACTIONS(478), + [anon_sym_quoteTerm] = ACTIONS(478), + [anon_sym_unquote] = ACTIONS(478), + [anon_sym_LPAREN] = ACTIONS(1032), + [anon_sym_LPAREN_PIPE] = ACTIONS(490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + }, + [361] = { + [sym_expr] = STATE(841), [sym__expr1] = STATE(38), - [sym__application] = STATE(557), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -30245,7 +42673,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(1034), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -30261,10 +42689,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [153] = { - [sym_expr] = STATE(184), + [362] = { + [sym_expr] = STATE(842), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(185), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -30284,7 +42712,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(240), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1036), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -30299,10 +42727,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [154] = { - [sym_expr] = STATE(212), + [363] = { + [sym_expr] = STATE(843), [sym__expr1] = STATE(110), - [sym__application] = STATE(559), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -30333,58 +42761,416 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(240), + [anon_sym_RPAREN] = ACTIONS(1036), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [155] = { - [sym__application] = STATE(560), + [364] = { + [sym_expr] = STATE(844), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [156] = { - [sym__application] = STATE(561), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), + [365] = { + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_rewrite] = ACTIONS(1038), + [anon_sym_with] = ACTIONS(1038), + }, + [366] = { + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_rewrite] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), + }, + [367] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(162), + }, + [368] = { + [ts_builtin_sym_end] = ACTIONS(164), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_rewrite] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), + }, + [369] = { + [ts_builtin_sym_end] = ACTIONS(168), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_rewrite] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), + }, + [370] = { + [sym_expr] = STATE(846), + [sym__expr1] = STATE(366), + [sym__application] = STATE(13), + [sym__expr2] = STATE(14), + [sym__atomic_exprs1] = STATE(367), + [sym_atomic_expr] = STATE(368), + [sym__atomic_expr_curly] = STATE(369), + [sym__atomic_expr_no_curly] = STATE(369), + [sym_tele_arrow] = STATE(370), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(22), + [aux_sym__application_repeat1] = STATE(371), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(478), + [sym_set_n] = ACTIONS(478), + [sym_name_at] = ACTIONS(480), + [sym_qualified_name] = ACTIONS(478), + [anon_sym__] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(20), + [anon_sym_forall] = ACTIONS(22), + [anon_sym_let] = ACTIONS(24), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_Prop] = ACTIONS(478), + [anon_sym_Set] = ACTIONS(478), + [anon_sym_quote] = ACTIONS(478), + [anon_sym_quoteTerm] = ACTIONS(478), + [anon_sym_unquote] = ACTIONS(478), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_LPAREN_PIPE] = ACTIONS(490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + }, + [371] = { + [sym__expr2] = STATE(146), + [sym_atomic_expr] = STATE(368), + [sym__atomic_expr_curly] = STATE(369), + [sym__atomic_expr_no_curly] = STATE(369), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(478), + [sym_set_n] = ACTIONS(478), + [sym_name_at] = ACTIONS(480), + [sym_qualified_name] = ACTIONS(478), + [anon_sym__] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1024), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(20), + [anon_sym_forall] = ACTIONS(22), + [anon_sym_let] = ACTIONS(24), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_Prop] = ACTIONS(478), + [anon_sym_Set] = ACTIONS(478), + [anon_sym_quote] = ACTIONS(478), + [anon_sym_quoteTerm] = ACTIONS(478), + [anon_sym_unquote] = ACTIONS(478), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_LPAREN_PIPE] = ACTIONS(490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + }, + [372] = { + [sym_literal] = ACTIONS(1046), + [sym_set_n] = ACTIONS(1046), + [sym_name_at] = ACTIONS(1046), + [sym_qualified_name] = ACTIONS(1046), + [anon_sym__] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1046), + [anon_sym_forall] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1046), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_Prop] = ACTIONS(1046), + [anon_sym_Set] = ACTIONS(1046), + [anon_sym_quote] = ACTIONS(1046), + [anon_sym_quoteTerm] = ACTIONS(1046), + [anon_sym_unquote] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_LPAREN_PIPE] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + }, + [373] = { + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(373), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1057), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1062), + }, + [374] = { + [ts_builtin_sym_end] = ACTIONS(186), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_RPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_rewrite] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), + }, + [375] = { + [ts_builtin_sym_end] = ACTIONS(228), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_rewrite] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), + }, + [376] = { + [anon_sym_RBRACE] = ACTIONS(1065), + [sym_comment] = ACTIONS(86), + }, + [377] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1067), + [sym_comment] = ACTIONS(86), + }, + [378] = { + [anon_sym_LBRACE] = ACTIONS(1069), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1071), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(1073), + }, + [379] = { + [sym__application] = STATE(853), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(854), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(1075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), + }, + [380] = { + [sym__application] = STATE(855), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(450), + [sym_name_at] = ACTIONS(410), [sym_qualified_name] = ACTIONS(408), [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(450), + [anon_sym_DOT] = ACTIONS(410), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1075), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), [anon_sym_QMARK] = ACTIONS(408), [anon_sym_Prop] = ACTIONS(408), [anon_sym_Set] = ACTIONS(408), @@ -30395,25 +43181,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [157] = { - [sym__application] = STATE(562), + [381] = { + [sym_vopen] = STATE(856), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), + }, + [382] = { + [sym_binding_name] = STATE(857), + [sym__application] = STATE(858), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(450), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(450), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), [anon_sym_QMARK] = ACTIONS(408), [anon_sym_Prop] = ACTIONS(408), [anon_sym_Set] = ACTIONS(408), @@ -30421,204 +43214,619 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(408), [anon_sym_unquote] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1075), [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [158] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), + [383] = { + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1077), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [159] = { - [sym_atomic_expr] = STATE(566), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_LBRACE_LBRACE] = ACTIONS(753), + [384] = { + [sym_lambda_bindings] = STATE(852), + [sym_untyped_bindings] = STATE(384), + [sym_typed_bindings] = STATE(384), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1083), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_rewrite] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), + }, + [385] = { + [sym_expr] = STATE(868), + [sym__expr1] = STATE(869), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(870), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(873), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(874), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1089), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1091), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [386] = { + [sym__expr1] = STATE(93), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(98), + [sym__declaration] = STATE(99), + [sym_function_clause] = STATE(100), + [aux_sym_source_file_repeat1] = STATE(398), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [387] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(1067), + }, + [388] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(1067), + }, + [389] = { + [sym__expr1] = STATE(875), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(104), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [160] = { - [sym_atomic_expr] = STATE(566), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_LBRACE_LBRACE] = ACTIONS(759), + [390] = { + [sym__expr1] = STATE(876), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(104), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(761), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [161] = { - [sym_expr] = STATE(571), - [sym__expr1] = STATE(38), - [sym__application] = STATE(170), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(44), + [391] = { + [sym_with_expressions] = STATE(877), + [ts_builtin_sym_end] = ACTIONS(612), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_rewrite] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), + }, + [392] = { + [ts_builtin_sym_end] = ACTIONS(612), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_rewrite] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), + }, + [393] = { + [sym_expr] = STATE(878), + [sym__expr1] = STATE(869), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(870), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(873), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(874), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1089), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1091), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), }, - [162] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [394] = { + [sym_vopen] = STATE(879), + [sym_declarations] = STATE(880), + [sym__declarations0] = STATE(881), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [163] = { - [sym_expr] = STATE(572), - [sym__expr1] = STATE(60), - [sym__application] = STATE(185), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(765), + [395] = { + [sym_anonymous_name] = STATE(882), + [sym_name] = ACTIONS(1101), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [164] = { - [sym_lambda_bindings] = STATE(574), - [sym_untyped_bindings] = STATE(575), - [sym_typed_bindings] = STATE(575), + [396] = { + [ts_builtin_sym_end] = ACTIONS(642), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_rewrite] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), + }, + [397] = { + [sym_where_clause] = STATE(883), + [ts_builtin_sym_end] = ACTIONS(642), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_rewrite] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), + }, + [398] = { + [sym__expr1] = STATE(93), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(98), + [sym__declaration] = STATE(99), + [sym_function_clause] = STATE(100), + [aux_sym_source_file_repeat1] = STATE(398), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(644), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(1106), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1115), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(1118), + [anon_sym_let] = ACTIONS(1121), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_rewrite] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), + }, + [399] = { + [ts_builtin_sym_end] = ACTIONS(673), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_RBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_rewrite] = ACTIONS(673), + [anon_sym_with] = ACTIONS(673), + }, + [400] = { + [ts_builtin_sym_end] = ACTIONS(693), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_RPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), + [anon_sym_rewrite] = ACTIONS(693), + [anon_sym_with] = ACTIONS(693), + }, + [401] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(757), + }, + [402] = { + [sym_lambda_bindings] = STATE(586), + [sym_untyped_bindings] = STATE(402), + [sym_typed_bindings] = STATE(402), [anon_sym_DOT] = ACTIONS(92), [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(761), [anon_sym_LBRACE_LBRACE] = ACTIONS(254), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(767), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_RPAREN] = ACTIONS(763), }, - [165] = { - [sym_forall_bindings] = STATE(576), + [403] = { + [sym_expr] = STATE(592), + [sym__expr1] = STATE(885), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(886), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(887), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [404] = { + [sym_atomic_expr] = STATE(374), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(516), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [405] = { + [sym_lambda_bindings] = STATE(888), + [sym_untyped_bindings] = STATE(889), + [sym_typed_bindings] = STATE(889), + [anon_sym_DOT] = ACTIONS(504), + [anon_sym_DOT_DOT] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(510), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(514), + }, + [406] = { + [sym_forall_bindings] = STATE(890), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -30630,32 +43838,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [166] = { - [sym__expr1] = STATE(200), + [407] = { + [sym__expr1] = STATE(93), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(577), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(580), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), + [sym_lhs] = STATE(98), + [sym__declaration] = STATE(99), + [sym_function_clause] = STATE(100), + [aux_sym_source_file_repeat1] = STATE(891), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), [sym_literal] = ACTIONS(102), [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(260), + [sym_name_at] = ACTIONS(516), [sym_qualified_name] = ACTIONS(102), [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(260), + [anon_sym_DOT] = ACTIONS(516), [anon_sym_LBRACE] = ACTIONS(106), [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), [anon_sym_QMARK] = ACTIONS(102), [anon_sym_Prop] = ACTIONS(102), [anon_sym_Set] = ACTIONS(102), @@ -30666,553 +43874,462 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(118), [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [167] = { - [sym_expr] = STATE(581), - [sym__expr1] = STATE(110), - [sym__application] = STATE(213), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [408] = { + [sym_rewrite_equations] = STATE(894), + [sym_with_expressions] = STATE(603), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_in] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_RPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(1132), + [anon_sym_with] = ACTIONS(1134), }, - [168] = { - [sym_expr] = STATE(582), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [409] = { + [sym_where_clause] = STATE(607), + [sym_rhs] = STATE(608), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [169] = { - [anon_sym_RBRACE] = ACTIONS(769), - [sym_comment] = ACTIONS(86), - }, - [170] = { - [anon_sym_RBRACE] = ACTIONS(284), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_COLON] = ACTIONS(771), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(769), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_RPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(1136), + [anon_sym_module] = ACTIONS(773), }, - [171] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [410] = { + [sym__expr1] = STATE(408), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(409), + [sym__declaration] = STATE(202), + [sym_function_clause] = STATE(203), + [aux_sym_source_file_repeat1] = STATE(896), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(516), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_in] = ACTIONS(1138), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [172] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [411] = { + [sym__application] = STATE(399), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(516), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - }, - [173] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_LBRACE_LBRACE] = ACTIONS(753), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [412] = { + [sym__expr2] = STATE(400), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(516), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [174] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), + [413] = { + [sym_expr] = STATE(615), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [175] = { - [sym_atomic_expr] = STATE(588), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(232), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_LBRACE_LBRACE] = ACTIONS(775), + [414] = { + [sym_atomic_expr] = STATE(616), + [sym__atomic_expr_curly] = STATE(227), + [sym__atomic_expr_no_curly] = STATE(227), + [sym_literal] = ACTIONS(292), + [sym_set_n] = ACTIONS(292), + [sym_name_at] = ACTIONS(526), + [sym_qualified_name] = ACTIONS(292), + [anon_sym__] = ACTIONS(292), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_LBRACE_LBRACE] = ACTIONS(298), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_QMARK] = ACTIONS(292), + [anon_sym_Prop] = ACTIONS(292), + [anon_sym_Set] = ACTIONS(292), + [anon_sym_quote] = ACTIONS(292), + [anon_sym_quoteTerm] = ACTIONS(292), + [anon_sym_unquote] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(300), + [anon_sym_LPAREN_PIPE] = ACTIONS(302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(292), }, - [176] = { - [sym_atomic_expr] = STATE(588), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(232), - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_LBRACE_LBRACE] = ACTIONS(781), + [415] = { + [sym__expr2] = STATE(229), + [sym_atomic_expr] = STATE(226), + [sym__atomic_expr_curly] = STATE(227), + [sym__atomic_expr_no_curly] = STATE(227), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(292), + [sym_set_n] = ACTIONS(292), + [sym_name_at] = ACTIONS(526), + [sym_qualified_name] = ACTIONS(292), + [anon_sym__] = ACTIONS(292), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_LBRACE_LBRACE] = ACTIONS(298), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(292), + [anon_sym_Prop] = ACTIONS(292), + [anon_sym_Set] = ACTIONS(292), + [anon_sym_quote] = ACTIONS(292), + [anon_sym_quoteTerm] = ACTIONS(292), + [anon_sym_unquote] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(300), + [anon_sym_LPAREN_PIPE] = ACTIONS(302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(292), }, - [177] = { - [sym_expr] = STATE(593), + [416] = { + [sym_expr] = STATE(424), [sym__expr1] = STATE(38), - [sym__application] = STATE(170), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [178] = { - [sym_expr] = STATE(594), + [417] = { + [sym_expr] = STATE(425), [sym__expr1] = STATE(60), - [sym__application] = STATE(185), + [sym__application] = STATE(61), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(542), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), - }, - [179] = { - [sym_lambda_bindings] = STATE(596), - [sym_untyped_bindings] = STATE(597), - [sym_typed_bindings] = STATE(597), - [anon_sym_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LBRACE_LBRACE] = ACTIONS(338), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [180] = { - [sym_forall_bindings] = STATE(598), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [418] = { + [sym_expr] = STATE(449), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(542), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [181] = { - [sym__expr1] = STATE(263), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(599), - [sym__declaration] = STATE(600), - [sym_function_clause] = STATE(601), - [aux_sym_source_file_repeat1] = STATE(602), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(346), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [419] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_PIPE_RPAREN] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), }, - [182] = { - [sym_expr] = STATE(603), - [sym__expr1] = STATE(110), - [sym__application] = STATE(213), + [420] = { + [sym_expr] = STATE(424), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(112), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), + [sym_name_at] = ACTIONS(208), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(540), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(787), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [183] = { - [sym_expr] = STATE(604), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [184] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(791), - [sym_comment] = ACTIONS(86), - }, - [185] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(284), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_COLON] = ACTIONS(793), - }, - [186] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - }, - [187] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [188] = { - [sym__expr2] = STATE(289), + [421] = { + [sym_expr] = STATE(425), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), [sym__atomic_expr_curly] = STATE(187), [sym__atomic_expr_no_curly] = STATE(187), - [aux_sym__application_repeat1] = STATE(230), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(230), [sym_set_n] = ACTIONS(230), [sym_name_at] = ACTIONS(232), [sym_qualified_name] = ACTIONS(230), [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(232), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_LBRACE_LBRACE] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(542), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), [anon_sym_let] = ACTIONS(246), @@ -31222,172 +44339,205 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quote] = ACTIONS(230), [anon_sym_quoteTerm] = ACTIONS(230), [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(248), [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [189] = { - [sym__application] = STATE(608), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(609), - [aux_sym__application_repeat1] = STATE(311), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [422] = { + [sym_expr] = STATE(449), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(542), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [190] = { - [sym__application] = STATE(370), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(795), + [423] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_PIPE_RPAREN] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), }, - [191] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(622), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(625), - [sym_lambda_where_clauses] = STATE(626), - [aux_sym__application_repeat1] = STATE(627), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(799), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(805), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), - [sym_catchall_pragma] = ACTIONS(817), + [424] = { + [anon_sym_RBRACE] = ACTIONS(1140), + [sym_comment] = ACTIONS(86), }, - [192] = { - [sym_binding_name] = STATE(371), - [sym__application] = STATE(372), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(795), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [425] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1142), + [sym_comment] = ACTIONS(86), }, - [193] = { - [anon_sym_RBRACE] = ACTIONS(819), + [426] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(821), - [anon_sym_EQ] = ACTIONS(819), + [anon_sym_DASH_GT] = ACTIONS(1144), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_PIPE_RPAREN] = ACTIONS(757), }, - [194] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(194), - [sym_typed_bindings] = STATE(194), + [427] = { + [sym_lambda_bindings] = STATE(586), + [sym_untyped_bindings] = STATE(427), + [sym_typed_bindings] = STATE(427), [anon_sym_DOT] = ACTIONS(92), [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(825), + [anon_sym_LBRACE] = ACTIONS(761), [anon_sym_LBRACE_LBRACE] = ACTIONS(254), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_PIPE_RPAREN] = ACTIONS(763), }, - [195] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(630), + [428] = { + [sym_expr] = STATE(592), + [sym__expr1] = STATE(900), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(901), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(902), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [429] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_PIPE_RPAREN] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_rewrite] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), + }, + [430] = { + [sym_atomic_expr] = STATE(903), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_literal] = ACTIONS(544), + [sym_set_n] = ACTIONS(544), + [sym_name_at] = ACTIONS(546), + [sym_qualified_name] = ACTIONS(544), + [anon_sym__] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_LBRACE_LBRACE] = ACTIONS(550), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_Prop] = ACTIONS(544), + [anon_sym_Set] = ACTIONS(544), + [anon_sym_quote] = ACTIONS(544), + [anon_sym_quoteTerm] = ACTIONS(544), + [anon_sym_unquote] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LPAREN_PIPE] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), + }, + [431] = { + [sym_expr] = STATE(905), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(631), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(632), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), [aux_sym__application_repeat1] = STATE(47), @@ -31400,6 +44550,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(1146), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -31415,43 +44566,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [196] = { - [sym_atomic_expr] = STATE(388), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(260), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [432] = { + [sym_expr] = STATE(906), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1148), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [197] = { - [sym_lambda_bindings] = STATE(634), - [sym_untyped_bindings] = STATE(635), - [sym_typed_bindings] = STATE(635), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACE_LBRACE] = ACTIONS(530), + [433] = { + [sym_lambda_bindings] = STATE(912), + [sym_untyped_bindings] = STATE(913), + [sym_typed_bindings] = STATE(913), + [anon_sym_DOT] = ACTIONS(1150), + [anon_sym_DOT_DOT] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1154), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1156), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_where] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1160), }, - [198] = { - [sym_forall_bindings] = STATE(636), + [434] = { + [sym_forall_bindings] = STATE(914), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -31463,45 +44629,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [199] = { - [sym__expr1] = STATE(637), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [435] = { + [sym__expr1] = STATE(915), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(638), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(639), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(260), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_lhs] = STATE(916), + [sym__declaration] = STATE(917), + [sym_function_clause] = STATE(918), + [aux_sym_source_file_repeat1] = STATE(919), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(544), + [sym_set_n] = ACTIONS(544), + [sym_name_at] = ACTIONS(546), + [sym_qualified_name] = ACTIONS(544), + [anon_sym__] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_LBRACE_LBRACE] = ACTIONS(550), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_Prop] = ACTIONS(544), + [anon_sym_Set] = ACTIONS(544), + [anon_sym_quote] = ACTIONS(544), + [anon_sym_quoteTerm] = ACTIONS(544), + [anon_sym_unquote] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LPAREN_PIPE] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), + }, + [436] = { + [sym_expr] = STATE(920), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(1148), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [200] = { - [sym_rewrite_equations] = STATE(642), - [sym_with_expressions] = STATE(643), + [437] = { + [sym_expr] = STATE(921), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [438] = { + [sym_rewrite_equations] = STATE(924), + [sym_with_expressions] = STATE(925), [sym_literal] = ACTIONS(152), [sym_set_n] = ACTIONS(152), [sym_name_at] = ACTIONS(152), @@ -31509,7 +44750,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(152), [anon_sym_DOT] = ACTIONS(152), [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(152), [anon_sym_LBRACE_LBRACE] = ACTIONS(152), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(152), @@ -31526,15 +44766,142 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(152), [anon_sym_LPAREN] = ACTIONS(152), [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_PIPE_RPAREN] = ACTIONS(152), [anon_sym_DOT_DOT_DOT] = ACTIONS(152), [anon_sym_COLON] = ACTIONS(152), [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(829), - [anon_sym_with] = ACTIONS(831), + [anon_sym_rewrite] = ACTIONS(1162), + [anon_sym_with] = ACTIONS(1164), + }, + [439] = { + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_PIPE_RPAREN] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + [anon_sym_rewrite] = ACTIONS(158), + [anon_sym_with] = ACTIONS(158), + }, + [440] = { + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_PIPE_RPAREN] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + [anon_sym_rewrite] = ACTIONS(160), + [anon_sym_with] = ACTIONS(160), + }, + [441] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_PIPE_RPAREN] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_rewrite] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [201] = { - [sym_where_clause] = STATE(647), - [sym_rhs] = STATE(648), + [442] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_PIPE_RPAREN] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_rewrite] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), + }, + [443] = { + [sym_where_clause] = STATE(929), + [sym_rhs] = STATE(930), [sym_literal] = ACTIONS(170), [sym_set_n] = ACTIONS(170), [sym_name_at] = ACTIONS(170), @@ -31542,12 +44909,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(170), [anon_sym_DOT] = ACTIONS(170), [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE] = ACTIONS(170), [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(833), + [anon_sym_EQ] = ACTIONS(170), [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(835), + [anon_sym_where] = ACTIONS(1166), [anon_sym_forall] = ACTIONS(170), [anon_sym_let] = ACTIONS(170), [anon_sym_in] = ACTIONS(170), @@ -31559,20 +44925,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(170), [anon_sym_LPAREN] = ACTIONS(170), [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_PIPE_RPAREN] = ACTIONS(170), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_module] = ACTIONS(837), + [anon_sym_COLON] = ACTIONS(1168), + [anon_sym_module] = ACTIONS(1170), }, - [202] = { + [444] = { [sym_literal] = ACTIONS(178), [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), [sym_name_at] = ACTIONS(178), [sym_qualified_name] = ACTIONS(178), [anon_sym__] = ACTIONS(178), [anon_sym_DOT] = ACTIONS(178), [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_RBRACE] = ACTIONS(178), [anon_sym_LBRACE_LBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(178), @@ -31587,20 +44952,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(178), [anon_sym_unquote] = ACTIONS(178), [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_RPAREN] = ACTIONS(178), [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_PIPE_RPAREN] = ACTIONS(178), [anon_sym_DOT_DOT_DOT] = ACTIONS(178), }, - [203] = { + [445] = { [sym_literal] = ACTIONS(180), [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), [sym_name_at] = ACTIONS(180), [sym_qualified_name] = ACTIONS(180), [anon_sym__] = ACTIONS(180), [anon_sym_DOT] = ACTIONS(180), [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_RBRACE] = ACTIONS(180), [anon_sym_LBRACE_LBRACE] = ACTIONS(180), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(180), @@ -31615,294 +44978,205 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(180), [anon_sym_unquote] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_RPAREN] = ACTIONS(180), [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_PIPE_RPAREN] = ACTIONS(180), [anon_sym_DOT_DOT_DOT] = ACTIONS(180), }, - [204] = { - [sym__expr1] = STATE(200), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [446] = { + [sym__expr1] = STATE(438), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(201), - [sym__declaration] = STATE(202), - [sym_function_clause] = STATE(203), - [aux_sym_source_file_repeat1] = STATE(649), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(260), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), - [anon_sym_in] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_lhs] = STATE(443), + [sym__declaration] = STATE(444), + [sym_function_clause] = STATE(445), + [aux_sym_source_file_repeat1] = STATE(931), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(544), + [sym_set_n] = ACTIONS(544), + [sym_name_at] = ACTIONS(546), + [sym_qualified_name] = ACTIONS(544), + [anon_sym__] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_LBRACE_LBRACE] = ACTIONS(550), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_in] = ACTIONS(1172), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_Prop] = ACTIONS(544), + [anon_sym_Set] = ACTIONS(544), + [anon_sym_quote] = ACTIONS(544), + [anon_sym_quoteTerm] = ACTIONS(544), + [anon_sym_unquote] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LPAREN_PIPE] = ACTIONS(560), + [anon_sym_PIPE_RPAREN] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), }, - [205] = { - [sym__application] = STATE(413), - [sym__expr2] = STATE(95), + [447] = { + [sym__application] = STATE(932), + [sym__expr2] = STATE(440), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(260), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(544), + [sym_set_n] = ACTIONS(544), + [sym_name_at] = ACTIONS(546), + [sym_qualified_name] = ACTIONS(544), + [anon_sym__] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_LBRACE_LBRACE] = ACTIONS(550), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_Prop] = ACTIONS(544), + [anon_sym_Set] = ACTIONS(544), + [anon_sym_quote] = ACTIONS(544), + [anon_sym_quoteTerm] = ACTIONS(544), + [anon_sym_unquote] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LPAREN_PIPE] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), }, - [206] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), + [448] = { + [sym__expr2] = STATE(933), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(260), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_literal] = ACTIONS(544), + [sym_set_n] = ACTIONS(544), + [sym_name_at] = ACTIONS(546), + [sym_qualified_name] = ACTIONS(544), + [anon_sym__] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_LBRACE_LBRACE] = ACTIONS(550), [sym_comment] = ACTIONS(18), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [207] = { - [sym_atomic_expr] = STATE(566), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_LBRACE_LBRACE] = ACTIONS(753), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [208] = { - [sym_atomic_expr] = STATE(566), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_LBRACE_LBRACE] = ACTIONS(759), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(761), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_Prop] = ACTIONS(544), + [anon_sym_Set] = ACTIONS(544), + [anon_sym_quote] = ACTIONS(544), + [anon_sym_quoteTerm] = ACTIONS(544), + [anon_sym_unquote] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LPAREN_PIPE] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), }, - [209] = { - [sym_lambda_bindings] = STATE(651), - [sym_untyped_bindings] = STATE(652), - [sym_typed_bindings] = STATE(652), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [449] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(841), - [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_RPAREN] = ACTIONS(1142), }, - [210] = { - [sym_forall_bindings] = STATE(653), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [450] = { [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [anon_sym_PIPE_RPAREN] = ACTIONS(1142), }, - [211] = { - [sym__expr1] = STATE(423), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(654), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(655), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(548), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [451] = { + [sym_expr] = STATE(615), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [212] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(791), - }, - [213] = { - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_RPAREN] = ACTIONS(284), - [anon_sym_COLON] = ACTIONS(843), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [214] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_LBRACE_LBRACE] = ACTIONS(753), + [452] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [215] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(791), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_PIPE_RPAREN] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), }, - [216] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_rewrite] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), + [453] = { + [sym_atomic_expr] = STATE(934), + [sym__atomic_expr_curly] = STATE(459), + [sym__atomic_expr_no_curly] = STATE(459), + [sym_literal] = ACTIONS(564), + [sym_set_n] = ACTIONS(564), + [sym_name_at] = ACTIONS(566), + [sym_qualified_name] = ACTIONS(564), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(568), + [anon_sym_LBRACE_LBRACE] = ACTIONS(570), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_Prop] = ACTIONS(564), + [anon_sym_Set] = ACTIONS(564), + [anon_sym_quote] = ACTIONS(564), + [anon_sym_quoteTerm] = ACTIONS(564), + [anon_sym_unquote] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_LPAREN_PIPE] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(564), }, - [217] = { - [sym_expr] = STATE(657), + [454] = { + [sym_expr] = STATE(936), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -31923,6 +45197,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(1174), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -31938,30 +45213,215 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [218] = { - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_RBRACE] = ACTIONS(847), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_RPAREN] = ACTIONS(847), - [anon_sym_PIPE_RPAREN] = ACTIONS(847), - [anon_sym_COLON] = ACTIONS(847), + [455] = { + [sym_expr] = STATE(937), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1176), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [219] = { + [456] = { + [sym_expr] = STATE(938), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(1176), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [457] = { + [sym_expr] = STATE(939), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [458] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_PIPE_RPAREN] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + }, + [459] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_PIPE_RPAREN] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + }, + [460] = { + [sym__expr2] = STATE(229), + [sym_atomic_expr] = STATE(458), + [sym__atomic_expr_curly] = STATE(459), + [sym__atomic_expr_no_curly] = STATE(459), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(564), + [sym_set_n] = ACTIONS(564), + [sym_name_at] = ACTIONS(566), + [sym_qualified_name] = ACTIONS(564), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(568), + [anon_sym_LBRACE_LBRACE] = ACTIONS(570), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_Prop] = ACTIONS(564), + [anon_sym_Set] = ACTIONS(564), + [anon_sym_quote] = ACTIONS(564), + [anon_sym_quoteTerm] = ACTIONS(564), + [anon_sym_unquote] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_LPAREN_PIPE] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(564), + }, + [461] = { + [ts_builtin_sym_end] = ACTIONS(30), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(30), [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), @@ -31971,35 +45431,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(30), [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - }, - [220] = { - [sym_atomic_expr] = STATE(658), - [sym__atomic_expr_curly] = STATE(227), - [sym__atomic_expr_no_curly] = STATE(227), - [sym_literal] = ACTIONS(292), - [sym_set_n] = ACTIONS(292), - [sym_name_at] = ACTIONS(294), - [sym_qualified_name] = ACTIONS(292), - [anon_sym__] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(294), - [anon_sym_LBRACE] = ACTIONS(296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(298), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_Prop] = ACTIONS(292), - [anon_sym_Set] = ACTIONS(292), - [anon_sym_quote] = ACTIONS(292), - [anon_sym_quoteTerm] = ACTIONS(292), - [anon_sym_unquote] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LPAREN_PIPE] = ACTIONS(302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), }, - [221] = { - [sym_expr] = STATE(660), + [462] = { + [sym_atomic_expr] = STATE(940), + [sym__atomic_expr_curly] = STATE(474), + [sym__atomic_expr_no_curly] = STATE(474), + [sym_literal] = ACTIONS(576), + [sym_set_n] = ACTIONS(576), + [sym_name_at] = ACTIONS(578), + [sym_qualified_name] = ACTIONS(576), + [anon_sym__] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_LBRACE_LBRACE] = ACTIONS(582), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_Prop] = ACTIONS(576), + [anon_sym_Set] = ACTIONS(576), + [anon_sym_quote] = ACTIONS(576), + [anon_sym_quoteTerm] = ACTIONS(576), + [anon_sym_unquote] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_LPAREN_PIPE] = ACTIONS(592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + }, + [463] = { + [sym_expr] = STATE(942), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -32020,7 +45482,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(1178), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -32036,8 +45498,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [222] = { - [sym_expr] = STATE(661), + [464] = { + [sym_expr] = STATE(943), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -32059,7 +45521,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(851), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1180), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -32074,8 +45536,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [223] = { - [sym_expr] = STATE(662), + [465] = { + [sym_lambda_bindings] = STATE(949), + [sym_untyped_bindings] = STATE(950), + [sym_typed_bindings] = STATE(950), + [anon_sym_DOT] = ACTIONS(1182), + [anon_sym_DOT_DOT] = ACTIONS(1184), + [anon_sym_LBRACE] = ACTIONS(1186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1188), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + }, + [466] = { + [sym_forall_bindings] = STATE(951), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [467] = { + [sym__expr1] = STATE(952), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(953), + [sym__declaration] = STATE(954), + [sym_function_clause] = STATE(955), + [aux_sym_source_file_repeat1] = STATE(956), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(104), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [468] = { + [sym_expr] = STATE(957), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -32108,12 +45631,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(851), + [anon_sym_RPAREN] = ACTIONS(1180), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [224] = { - [sym_expr] = STATE(663), + [469] = { + [sym_expr] = STATE(958), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -32149,30 +45672,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [225] = { - [anon_sym_SEMI] = ACTIONS(853), - [anon_sym_RBRACE] = ACTIONS(853), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_RPAREN] = ACTIONS(853), - [anon_sym_PIPE_RPAREN] = ACTIONS(853), - [anon_sym_COLON] = ACTIONS(853), + [470] = { + [ts_builtin_sym_end] = ACTIONS(1194), + [sym_literal] = ACTIONS(1194), + [sym_set_n] = ACTIONS(1194), + [sym_name_at] = ACTIONS(1194), + [sym_qualified_name] = ACTIONS(1194), + [anon_sym__] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1194), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1194), + [anon_sym_where] = ACTIONS(1194), + [anon_sym_forall] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(1194), + [anon_sym_Prop] = ACTIONS(1194), + [anon_sym_Set] = ACTIONS(1194), + [anon_sym_quote] = ACTIONS(1194), + [anon_sym_quoteTerm] = ACTIONS(1194), + [anon_sym_unquote] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LPAREN_PIPE] = ACTIONS(1194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), }, - [226] = { + [471] = { + [ts_builtin_sym_end] = ACTIONS(158), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + [anon_sym_with] = ACTIONS(158), + }, + [472] = { + [ts_builtin_sym_end] = ACTIONS(160), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + [anon_sym_with] = ACTIONS(160), + }, + [473] = { + [ts_builtin_sym_end] = ACTIONS(164), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), [anon_sym_QMARK] = ACTIONS(166), @@ -32182,25 +45783,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(166), [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [227] = { + [474] = { + [ts_builtin_sym_end] = ACTIONS(168), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(168), [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), @@ -32210,201 +45813,126 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(168), [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [228] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(226), - [sym__atomic_expr_curly] = STATE(227), - [sym__atomic_expr_no_curly] = STATE(227), + [475] = { + [sym__application] = STATE(959), + [sym__expr2] = STATE(472), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(473), + [sym__atomic_expr_curly] = STATE(474), + [sym__atomic_expr_no_curly] = STATE(474), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(476), + [sym_literal] = ACTIONS(576), + [sym_set_n] = ACTIONS(576), + [sym_name_at] = ACTIONS(578), + [sym_qualified_name] = ACTIONS(576), + [anon_sym__] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_LBRACE_LBRACE] = ACTIONS(582), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(584), + [anon_sym_forall] = ACTIONS(586), + [anon_sym_let] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_Prop] = ACTIONS(576), + [anon_sym_Set] = ACTIONS(576), + [anon_sym_quote] = ACTIONS(576), + [anon_sym_quoteTerm] = ACTIONS(576), + [anon_sym_unquote] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_LPAREN_PIPE] = ACTIONS(592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + }, + [476] = { + [sym__expr2] = STATE(960), + [sym_atomic_expr] = STATE(473), + [sym__atomic_expr_curly] = STATE(474), + [sym__atomic_expr_no_curly] = STATE(474), [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(292), - [sym_set_n] = ACTIONS(292), - [sym_name_at] = ACTIONS(294), - [sym_qualified_name] = ACTIONS(292), - [anon_sym__] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(294), - [anon_sym_LBRACE] = ACTIONS(296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(298), + [sym_literal] = ACTIONS(576), + [sym_set_n] = ACTIONS(576), + [sym_name_at] = ACTIONS(578), + [sym_qualified_name] = ACTIONS(576), + [anon_sym__] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_LBRACE_LBRACE] = ACTIONS(582), [sym_comment] = ACTIONS(18), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_Prop] = ACTIONS(292), - [anon_sym_Set] = ACTIONS(292), - [anon_sym_quote] = ACTIONS(292), - [anon_sym_quoteTerm] = ACTIONS(292), - [anon_sym_unquote] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LPAREN_PIPE] = ACTIONS(302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), - }, - [229] = { - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_PIPE_RPAREN] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(855), - }, - [230] = { - [sym_atomic_expr] = STATE(670), - [sym__atomic_expr_curly] = STATE(671), - [sym__atomic_expr_no_curly] = STATE(671), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(857), - [sym_set_n] = ACTIONS(857), - [sym_name_at] = ACTIONS(860), - [sym_qualified_name] = ACTIONS(857), - [anon_sym__] = ACTIONS(857), - [anon_sym_DOT] = ACTIONS(860), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_LBRACE_LBRACE] = ACTIONS(866), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_BSLASH] = ACTIONS(743), - [anon_sym_forall] = ACTIONS(743), - [anon_sym_let] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_Prop] = ACTIONS(857), - [anon_sym_Set] = ACTIONS(857), - [anon_sym_quote] = ACTIONS(857), - [anon_sym_quoteTerm] = ACTIONS(857), - [anon_sym_unquote] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_LPAREN_PIPE] = ACTIONS(872), - [anon_sym_DOT_DOT_DOT] = ACTIONS(857), - }, - [231] = { - [sym__application] = STATE(672), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [232] = { - [sym__application] = STATE(673), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [233] = { - [sym_literal] = ACTIONS(875), - [sym_set_n] = ACTIONS(875), - [sym_name_at] = ACTIONS(875), - [sym_qualified_name] = ACTIONS(875), - [anon_sym__] = ACTIONS(875), - [anon_sym_DOT] = ACTIONS(875), - [anon_sym_DOT_DOT] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(875), - [anon_sym_LBRACE_LBRACE] = ACTIONS(875), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(875), - [anon_sym_forall] = ACTIONS(875), - [anon_sym_let] = ACTIONS(875), - [anon_sym_QMARK] = ACTIONS(875), - [anon_sym_Prop] = ACTIONS(875), - [anon_sym_Set] = ACTIONS(875), - [anon_sym_quote] = ACTIONS(875), - [anon_sym_quoteTerm] = ACTIONS(875), - [anon_sym_unquote] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(875), - [anon_sym_LPAREN_PIPE] = ACTIONS(875), - [anon_sym_DOT_DOT_DOT] = ACTIONS(875), + [anon_sym_BSLASH] = ACTIONS(584), + [anon_sym_forall] = ACTIONS(586), + [anon_sym_let] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_Prop] = ACTIONS(576), + [anon_sym_Set] = ACTIONS(576), + [anon_sym_quote] = ACTIONS(576), + [anon_sym_quoteTerm] = ACTIONS(576), + [anon_sym_unquote] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_LPAREN_PIPE] = ACTIONS(592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), }, - [234] = { - [sym__application] = STATE(372), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [477] = { + [ts_builtin_sym_end] = ACTIONS(30), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), }, - [235] = { - [sym_typed_bindings] = STATE(45), - [aux_sym_tele_arrow_repeat1] = STATE(235), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_DOT_DOT] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_LBRACE_LBRACE] = ACTIONS(886), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(891), + [478] = { + [sym_atomic_expr] = STATE(961), + [sym__atomic_expr_curly] = STATE(490), + [sym__atomic_expr_no_curly] = STATE(490), + [sym_literal] = ACTIONS(594), + [sym_set_n] = ACTIONS(594), + [sym_name_at] = ACTIONS(596), + [sym_qualified_name] = ACTIONS(594), + [anon_sym__] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_LBRACE_LBRACE] = ACTIONS(600), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_Prop] = ACTIONS(594), + [anon_sym_Set] = ACTIONS(594), + [anon_sym_quote] = ACTIONS(594), + [anon_sym_quoteTerm] = ACTIONS(594), + [anon_sym_unquote] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_LPAREN_PIPE] = ACTIONS(610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), }, - [236] = { - [sym_expr] = STATE(244), + [479] = { + [sym_expr] = STATE(963), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -32425,7 +45953,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(328), + [anon_sym_RBRACE] = ACTIONS(1196), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -32441,8 +45969,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [237] = { - [sym_expr] = STATE(245), + [480] = { + [sym_expr] = STATE(964), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -32464,7 +45992,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(330), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1198), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -32479,8 +46007,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [238] = { - [sym_expr] = STATE(274), + [481] = { + [sym_lambda_bindings] = STATE(970), + [sym_untyped_bindings] = STATE(971), + [sym_typed_bindings] = STATE(971), + [anon_sym_DOT] = ACTIONS(1200), + [anon_sym_DOT_DOT] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1206), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1210), + }, + [482] = { + [sym_forall_bindings] = STATE(972), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [483] = { + [sym__expr1] = STATE(973), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(974), + [sym__declaration] = STATE(975), + [sym_function_clause] = STATE(976), + [aux_sym_source_file_repeat1] = STATE(977), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(104), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [484] = { + [sym_expr] = STATE(978), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -32513,42 +46102,356 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_RPAREN] = ACTIONS(1198), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [239] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), + [485] = { + [sym_expr] = STATE(979), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [486] = { + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + }, + [487] = { + [ts_builtin_sym_end] = ACTIONS(158), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + }, + [488] = { + [ts_builtin_sym_end] = ACTIONS(160), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + }, + [489] = { + [ts_builtin_sym_end] = ACTIONS(164), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + }, + [490] = { + [ts_builtin_sym_end] = ACTIONS(168), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + }, + [491] = { + [sym__application] = STATE(980), + [sym__expr2] = STATE(488), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(489), + [sym__atomic_expr_curly] = STATE(490), + [sym__atomic_expr_no_curly] = STATE(490), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(492), + [sym_literal] = ACTIONS(594), + [sym_set_n] = ACTIONS(594), + [sym_name_at] = ACTIONS(596), + [sym_qualified_name] = ACTIONS(594), + [anon_sym__] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_LBRACE_LBRACE] = ACTIONS(600), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(602), + [anon_sym_forall] = ACTIONS(604), + [anon_sym_let] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_Prop] = ACTIONS(594), + [anon_sym_Set] = ACTIONS(594), + [anon_sym_quote] = ACTIONS(594), + [anon_sym_quoteTerm] = ACTIONS(594), + [anon_sym_unquote] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_LPAREN_PIPE] = ACTIONS(610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + }, + [492] = { + [sym__expr2] = STATE(981), + [sym_atomic_expr] = STATE(489), + [sym__atomic_expr_curly] = STATE(490), + [sym__atomic_expr_no_curly] = STATE(490), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(594), + [sym_set_n] = ACTIONS(594), + [sym_name_at] = ACTIONS(596), + [sym_qualified_name] = ACTIONS(594), + [anon_sym__] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_LBRACE_LBRACE] = ACTIONS(600), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(602), + [anon_sym_forall] = ACTIONS(604), + [anon_sym_let] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_Prop] = ACTIONS(594), + [anon_sym_Set] = ACTIONS(594), + [anon_sym_quote] = ACTIONS(594), + [anon_sym_quoteTerm] = ACTIONS(594), + [anon_sym_unquote] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_LPAREN_PIPE] = ACTIONS(610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + }, + [493] = { + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), + }, + [494] = { + [ts_builtin_sym_end] = ACTIONS(30), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), }, - [240] = { - [sym_expr] = STATE(244), + [495] = { + [sym_atomic_expr] = STATE(985), + [sym__atomic_expr_curly] = STATE(510), + [sym__atomic_expr_no_curly] = STATE(510), + [sym_literal] = ACTIONS(616), + [sym_set_n] = ACTIONS(616), + [sym_name_at] = ACTIONS(618), + [sym_qualified_name] = ACTIONS(616), + [anon_sym__] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1218), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_Prop] = ACTIONS(616), + [anon_sym_Set] = ACTIONS(616), + [anon_sym_quote] = ACTIONS(616), + [anon_sym_quoteTerm] = ACTIONS(616), + [anon_sym_unquote] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_LPAREN_PIPE] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + }, + [496] = { + [sym_atomic_expr] = STATE(985), + [sym__atomic_expr_curly] = STATE(510), + [sym__atomic_expr_no_curly] = STATE(510), + [sym_literal] = ACTIONS(616), + [sym_set_n] = ACTIONS(616), + [sym_name_at] = ACTIONS(618), + [sym_qualified_name] = ACTIONS(616), + [anon_sym__] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1224), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_Prop] = ACTIONS(616), + [anon_sym_Set] = ACTIONS(616), + [anon_sym_quote] = ACTIONS(616), + [anon_sym_quoteTerm] = ACTIONS(616), + [anon_sym_unquote] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LPAREN_PIPE] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + }, + [497] = { + [sym_expr] = STATE(990), [sym__expr1] = STATE(38), - [sym__application] = STATE(557), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -32567,7 +46470,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(328), + [anon_sym_RBRACE] = ACTIONS(1228), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -32583,10 +46486,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [241] = { - [sym_expr] = STATE(245), + [498] = { + [sym_expr] = STATE(991), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(185), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -32606,7 +46509,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(330), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1230), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -32621,10 +46524,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [242] = { - [sym_expr] = STATE(274), + [499] = { + [sym_lambda_bindings] = STATE(997), + [sym_untyped_bindings] = STATE(998), + [sym_typed_bindings] = STATE(998), + [anon_sym_DOT] = ACTIONS(1232), + [anon_sym_DOT_DOT] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1238), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1242), + }, + [500] = { + [sym_forall_bindings] = STATE(999), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [501] = { + [sym__expr1] = STATE(973), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(1000), + [sym__declaration] = STATE(1001), + [sym_function_clause] = STATE(1002), + [aux_sym_source_file_repeat1] = STATE(1003), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(104), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [502] = { + [sym_expr] = STATE(1004), [sym__expr1] = STATE(110), - [sym__application] = STATE(559), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -32655,260 +46619,468 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_RPAREN] = ACTIONS(1230), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [243] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), + [503] = { + [sym_expr] = STATE(1005), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [244] = { - [anon_sym_RBRACE] = ACTIONS(894), - [sym_comment] = ACTIONS(86), + [504] = { + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), }, - [245] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(896), - [sym_comment] = ACTIONS(86), + [505] = { + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1246), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), }, - [246] = { - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_LBRACE_LBRACE] = ACTIONS(900), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(902), + [506] = { + [ts_builtin_sym_end] = ACTIONS(158), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), }, - [247] = { - [sym__application] = STATE(680), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(681), - [aux_sym__application_repeat1] = STATE(311), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(904), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [507] = { + [ts_builtin_sym_end] = ACTIONS(160), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), }, - [248] = { - [sym__application] = STATE(682), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(904), + [508] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1248), + [anon_sym_PIPE] = ACTIONS(162), + }, + [509] = { + [ts_builtin_sym_end] = ACTIONS(164), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_module] = ACTIONS(164), }, - [249] = { - [sym__application] = STATE(694), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(695), - [sym__atomic_expr_curly] = STATE(696), - [sym__atomic_expr_no_curly] = STATE(696), - [sym_non_absurd_lambda_clause] = STATE(697), - [sym_absurd_lambda_clause] = STATE(697), - [sym_lambda_clause] = STATE(698), - [sym_lambda_where_clauses] = STATE(699), - [aux_sym__application_repeat1] = STATE(700), - [sym_literal] = ACTIONS(906), - [sym_set_n] = ACTIONS(906), - [sym_name_at] = ACTIONS(908), - [sym_qualified_name] = ACTIONS(906), - [anon_sym__] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_LBRACE_LBRACE] = ACTIONS(912), + [510] = { + [ts_builtin_sym_end] = ACTIONS(168), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(914), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_forall] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_QMARK] = ACTIONS(906), - [anon_sym_Prop] = ACTIONS(906), - [anon_sym_Set] = ACTIONS(906), - [anon_sym_quote] = ACTIONS(906), - [anon_sym_quoteTerm] = ACTIONS(906), - [anon_sym_unquote] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_LPAREN_PIPE] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(906), - [sym_catchall_pragma] = ACTIONS(926), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), }, - [250] = { - [sym_binding_name] = STATE(701), - [sym__application] = STATE(702), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [511] = { + [sym_expr] = STATE(1007), + [sym__expr1] = STATE(505), + [sym__application] = STATE(506), + [sym__expr2] = STATE(507), + [sym__atomic_exprs1] = STATE(508), + [sym_atomic_expr] = STATE(509), + [sym__atomic_expr_curly] = STATE(510), + [sym__atomic_expr_no_curly] = STATE(510), + [sym_tele_arrow] = STATE(511), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(512), + [aux_sym__application_repeat1] = STATE(513), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(616), + [sym_set_n] = ACTIONS(616), + [sym_name_at] = ACTIONS(618), + [sym_qualified_name] = ACTIONS(616), + [anon_sym__] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_LBRACE_LBRACE] = ACTIONS(624), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_forall] = ACTIONS(628), + [anon_sym_let] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_Prop] = ACTIONS(616), + [anon_sym_Set] = ACTIONS(616), + [anon_sym_quote] = ACTIONS(616), + [anon_sym_quoteTerm] = ACTIONS(616), + [anon_sym_unquote] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_LPAREN_PIPE] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + }, + [512] = { + [sym__application] = STATE(1014), + [sym__expr2] = STATE(507), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1015), + [sym__atomic_expr_curly] = STATE(1016), + [sym__atomic_expr_no_curly] = STATE(1016), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(1017), + [sym_literal] = ACTIONS(1250), + [sym_set_n] = ACTIONS(1250), + [sym_name_at] = ACTIONS(1252), + [sym_qualified_name] = ACTIONS(1250), + [anon_sym__] = ACTIONS(1250), + [anon_sym_DOT] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1256), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_forall] = ACTIONS(628), + [anon_sym_let] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(1250), + [anon_sym_Prop] = ACTIONS(1250), + [anon_sym_Set] = ACTIONS(1250), + [anon_sym_quote] = ACTIONS(1250), + [anon_sym_quoteTerm] = ACTIONS(1250), + [anon_sym_unquote] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_LPAREN_PIPE] = ACTIONS(1260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1250), + }, + [513] = { + [sym__expr2] = STATE(1018), + [sym_atomic_expr] = STATE(509), + [sym__atomic_expr_curly] = STATE(510), + [sym__atomic_expr_no_curly] = STATE(510), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(616), + [sym_set_n] = ACTIONS(616), + [sym_name_at] = ACTIONS(618), + [sym_qualified_name] = ACTIONS(616), + [anon_sym__] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1218), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(904), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_forall] = ACTIONS(628), + [anon_sym_let] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_Prop] = ACTIONS(616), + [anon_sym_Set] = ACTIONS(616), + [anon_sym_quote] = ACTIONS(616), + [anon_sym_quoteTerm] = ACTIONS(616), + [anon_sym_unquote] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_LPAREN_PIPE] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), }, - [251] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(819), + [514] = { + [sym__layout_close_brace] = ACTIONS(1262), + [sym_literal] = ACTIONS(978), + [sym_set_n] = ACTIONS(978), + [sym_name_at] = ACTIONS(978), + [sym_qualified_name] = ACTIONS(978), + [anon_sym__] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_LBRACE_LBRACE] = ACTIONS(978), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(978), + [anon_sym_forall] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_QMARK] = ACTIONS(978), + [anon_sym_Prop] = ACTIONS(978), + [anon_sym_Set] = ACTIONS(978), + [anon_sym_quote] = ACTIONS(978), + [anon_sym_quoteTerm] = ACTIONS(978), + [anon_sym_unquote] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_LPAREN_PIPE] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(978), + }, + [515] = { + [sym_vclose] = STATE(1029), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(1038), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(1264), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [516] = { + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + }, + [517] = { + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + }, + [518] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(819), + [anon_sym_where] = ACTIONS(1288), }, - [252] = { - [sym_lambda_bindings] = STATE(679), - [sym_untyped_bindings] = STATE(252), - [sym_typed_bindings] = STATE(252), - [anon_sym_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_LBRACE_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE_RBRACE] = ACTIONS(825), + [519] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_where] = ACTIONS(1290), }, - [253] = { - [sym_expr] = STATE(699), - [sym__expr1] = STATE(705), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(706), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(707), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [520] = { + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), }, - [254] = { + [521] = { [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(30), [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), [anon_sym_Prop] = ACTIONS(30), [anon_sym_Set] = ACTIONS(30), @@ -32918,36 +47090,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_rewrite] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), }, - [255] = { - [sym_atomic_expr] = STATE(708), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(346), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [522] = { + [sym_atomic_expr] = STATE(1042), + [sym__atomic_expr_curly] = STATE(528), + [sym__atomic_expr_no_curly] = STATE(528), + [sym_literal] = ACTIONS(1294), + [sym_set_n] = ACTIONS(1294), + [sym_name_at] = ACTIONS(1296), + [sym_qualified_name] = ACTIONS(1294), + [anon_sym__] = ACTIONS(1294), + [anon_sym_DOT] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1300), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1294), + [anon_sym_Prop] = ACTIONS(1294), + [anon_sym_Set] = ACTIONS(1294), + [anon_sym_quote] = ACTIONS(1294), + [anon_sym_quoteTerm] = ACTIONS(1294), + [anon_sym_unquote] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_LPAREN_PIPE] = ACTIONS(1304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1294), }, - [256] = { - [sym_expr] = STATE(710), + [523] = { + [sym_expr] = STATE(1044), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -32968,7 +47136,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(932), + [anon_sym_RBRACE] = ACTIONS(1306), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -32984,8 +47152,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [257] = { - [sym_expr] = STATE(711), + [524] = { + [sym_expr] = STATE(1045), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -33007,7 +47175,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(934), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1308), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -33022,69 +47190,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [258] = { - [sym_lambda_bindings] = STATE(717), - [sym_untyped_bindings] = STATE(718), - [sym_typed_bindings] = STATE(718), - [anon_sym_DOT] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_LBRACE_LBRACE] = ACTIONS(942), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(946), - }, - [259] = { - [sym_forall_bindings] = STATE(719), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [260] = { - [sym__expr1] = STATE(720), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(721), - [sym__declaration] = STATE(722), - [sym_function_clause] = STATE(723), - [aux_sym_source_file_repeat1] = STATE(724), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(346), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [261] = { - [sym_expr] = STATE(725), + [525] = { + [sym_expr] = STATE(1046), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -33117,12 +47224,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(934), + [anon_sym_RPAREN] = ACTIONS(1308), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [262] = { - [sym_expr] = STATE(726), + [526] = { + [sym_expr] = STATE(1047), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -33158,122 +47265,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [263] = { - [sym_rewrite_equations] = STATE(729), - [sym_with_expressions] = STATE(730), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE_RBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(948), - [anon_sym_with] = ACTIONS(950), - }, - [264] = { - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [anon_sym_RBRACE_RBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_in] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), - [anon_sym_rewrite] = ACTIONS(158), - [anon_sym_with] = ACTIONS(158), - }, - [265] = { - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), - [anon_sym_RBRACE_RBRACE] = ACTIONS(160), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_in] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), - [anon_sym_rewrite] = ACTIONS(160), - [anon_sym_with] = ACTIONS(160), - }, - [266] = { + [527] = { [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -33283,30 +47285,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_rewrite] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), }, - [267] = { + [528] = { [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(168), [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -33316,292 +47306,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_rewrite] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), - }, - [268] = { - [sym_where_clause] = STATE(734), - [sym_rhs] = STATE(735), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE_RBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(952), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(954), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(952), - [anon_sym_module] = ACTIONS(956), - }, - [269] = { - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), - [anon_sym_RBRACE_RBRACE] = ACTIONS(178), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_in] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - }, - [270] = { - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), - [anon_sym_RBRACE_RBRACE] = ACTIONS(180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(180), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_in] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), - }, - [271] = { - [sym__expr1] = STATE(263), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(268), - [sym__declaration] = STATE(269), - [sym_function_clause] = STATE(270), - [aux_sym_source_file_repeat1] = STATE(736), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(346), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_in] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [272] = { - [sym__application] = STATE(737), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(346), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), }, - [273] = { - [sym__expr2] = STATE(738), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(346), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [529] = { + [sym_atomic_expr] = STATE(527), + [sym__atomic_expr_curly] = STATE(528), + [sym__atomic_expr_no_curly] = STATE(528), + [aux_sym__application_repeat1] = STATE(1048), + [sym_literal] = ACTIONS(1294), + [sym_set_n] = ACTIONS(1294), + [sym_name_at] = ACTIONS(1296), + [sym_qualified_name] = ACTIONS(1294), + [anon_sym__] = ACTIONS(1294), + [anon_sym_DOT] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1300), [sym_comment] = ACTIONS(18), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [274] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(896), - }, - [275] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(896), - }, - [276] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_rewrite] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), - }, - [277] = { - [sym_expr] = STATE(739), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), - }, - [278] = { - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_RBRACE_RBRACE] = ACTIONS(847), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_COLON] = ACTIONS(847), + [anon_sym_QMARK] = ACTIONS(1294), + [anon_sym_Prop] = ACTIONS(1294), + [anon_sym_Set] = ACTIONS(1294), + [anon_sym_quote] = ACTIONS(1294), + [anon_sym_quoteTerm] = ACTIONS(1294), + [anon_sym_unquote] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_LPAREN_PIPE] = ACTIONS(1304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1294), }, - [279] = { + [530] = { [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(30), [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), @@ -33616,31 +47356,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), }, - [280] = { - [sym_atomic_expr] = STATE(740), - [sym__atomic_expr_curly] = STATE(287), - [sym__atomic_expr_no_curly] = STATE(287), - [sym_literal] = ACTIONS(366), - [sym_set_n] = ACTIONS(366), - [sym_name_at] = ACTIONS(368), - [sym_qualified_name] = ACTIONS(366), - [anon_sym__] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(370), - [anon_sym_LBRACE_LBRACE] = ACTIONS(372), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(366), - [anon_sym_Prop] = ACTIONS(366), - [anon_sym_Set] = ACTIONS(366), - [anon_sym_quote] = ACTIONS(366), - [anon_sym_quoteTerm] = ACTIONS(366), - [anon_sym_unquote] = ACTIONS(366), - [anon_sym_LPAREN] = ACTIONS(374), - [anon_sym_LPAREN_PIPE] = ACTIONS(376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(366), + [531] = { + [sym_atomic_expr] = STATE(1049), + [sym__atomic_expr_curly] = STATE(537), + [sym__atomic_expr_no_curly] = STATE(537), + [sym_literal] = ACTIONS(1310), + [sym_set_n] = ACTIONS(1310), + [sym_name_at] = ACTIONS(1312), + [sym_qualified_name] = ACTIONS(1310), + [anon_sym__] = ACTIONS(1310), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1316), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_Prop] = ACTIONS(1310), + [anon_sym_Set] = ACTIONS(1310), + [anon_sym_quote] = ACTIONS(1310), + [anon_sym_quoteTerm] = ACTIONS(1310), + [anon_sym_unquote] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_LPAREN_PIPE] = ACTIONS(1320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1310), }, - [281] = { - [sym_expr] = STATE(742), + [532] = { + [sym_expr] = STATE(1051), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -33661,7 +47401,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(1322), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -33677,8 +47417,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [282] = { - [sym_expr] = STATE(743), + [533] = { + [sym_expr] = STATE(1052), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -33700,7 +47440,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(964), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1324), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -33715,8 +47455,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [283] = { - [sym_expr] = STATE(744), + [534] = { + [sym_expr] = STATE(1053), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -33749,12 +47489,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(1324), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [284] = { - [sym_expr] = STATE(745), + [535] = { + [sym_expr] = STATE(1054), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -33790,26 +47530,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [285] = { - [anon_sym_SEMI] = ACTIONS(853), - [anon_sym_RBRACE_RBRACE] = ACTIONS(853), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_COLON] = ACTIONS(853), - }, - [286] = { + [536] = { [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), [anon_sym_forall] = ACTIONS(166), @@ -33824,19 +47554,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), }, - [287] = { + [537] = { [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(168), [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), @@ -33851,183 +47578,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), }, - [288] = { - [sym__expr2] = STATE(289), - [sym_atomic_expr] = STATE(286), - [sym__atomic_expr_curly] = STATE(287), - [sym__atomic_expr_no_curly] = STATE(287), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(366), - [sym_set_n] = ACTIONS(366), - [sym_name_at] = ACTIONS(368), - [sym_qualified_name] = ACTIONS(366), - [anon_sym__] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(370), - [anon_sym_LBRACE_LBRACE] = ACTIONS(372), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(366), - [anon_sym_Prop] = ACTIONS(366), - [anon_sym_Set] = ACTIONS(366), - [anon_sym_quote] = ACTIONS(366), - [anon_sym_quoteTerm] = ACTIONS(366), - [anon_sym_unquote] = ACTIONS(366), - [anon_sym_LPAREN] = ACTIONS(374), - [anon_sym_LPAREN_PIPE] = ACTIONS(376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(366), - }, - [289] = { - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_RBRACE_RBRACE] = ACTIONS(855), + [538] = { + [anon_sym_RBRACE] = ACTIONS(284), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_COLON] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_COLON] = ACTIONS(1326), }, - [290] = { - [sym__application] = STATE(746), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [539] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(284), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_COLON] = ACTIONS(1328), }, - [291] = { - [sym__application] = STATE(747), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [540] = { + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_COLON] = ACTIONS(1330), }, - [292] = { - [sym_binding_name] = STATE(748), - [sym__application] = STATE(749), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [541] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1326), }, - [293] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), + [542] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1328), }, - [294] = { - [sym_atomic_expr] = STATE(750), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [543] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1330), }, - [295] = { - [sym_expr] = STATE(752), + [544] = { + [sym_expr] = STATE(552), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -34048,7 +47630,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -34064,40 +47646,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [296] = { - [ts_builtin_sym_end] = ACTIONS(968), - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), - [anon_sym_rewrite] = ACTIONS(968), - [anon_sym_with] = ACTIONS(968), - }, - [297] = { - [sym_expr] = STATE(753), + [545] = { + [sym_expr] = STATE(553), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -34119,7 +47669,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(970), + [anon_sym_RBRACE_RBRACE] = ACTIONS(729), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -34134,106 +47684,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [298] = { - [sym_expr] = STATE(756), - [sym__expr1] = STATE(757), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(758), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(759), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(760), - [aux_sym__application_repeat1] = STATE(761), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [299] = { - [sym_lambda_bindings] = STATE(763), - [sym_untyped_bindings] = STATE(764), - [sym_typed_bindings] = STATE(764), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(258), - }, - [300] = { - [sym_forall_bindings] = STATE(765), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [301] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(771), - [sym__declaration] = STATE(772), - [sym_function_clause] = STATE(773), - [aux_sym_source_file_repeat1] = STATE(774), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [302] = { - [sym_expr] = STATE(777), + [546] = { + [sym_expr] = STATE(561), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -34266,232 +47718,452 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_RPAREN] = ACTIONS(729), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [303] = { - [sym_expr] = STATE(778), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), + [547] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_RPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + }, + [548] = { + [sym_expr] = STATE(552), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [304] = { - [sym__application] = STATE(789), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(790), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [aux_sym__application_repeat1] = STATE(792), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(988), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(994), - [anon_sym_BSLASH] = ACTIONS(996), - [anon_sym_forall] = ACTIONS(998), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [305] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1008), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1010), + [549] = { + [sym_expr] = STATE(553), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(729), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [306] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [550] = { + [sym_expr] = STATE(561), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [307] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [551] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), }, - [308] = { - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), + [552] = { + [anon_sym_RBRACE] = ACTIONS(1332), [sym_comment] = ACTIONS(86), }, - [309] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), + [553] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1334), [sym_comment] = ACTIONS(86), }, - [310] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1016), + [554] = { + [anon_sym_RBRACE] = ACTIONS(757), [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(757), }, - [311] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [555] = { + [sym_lambda_bindings] = STATE(586), + [sym_untyped_bindings] = STATE(555), + [sym_typed_bindings] = STATE(555), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_COLON] = ACTIONS(763), + }, + [556] = { + [sym_expr] = STATE(592), + [sym__expr1] = STATE(1061), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(1062), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(1063), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1064), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(994), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [312] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), + [557] = { + [sym_where_clause] = STATE(1068), + [sym_rhs] = STATE(1069), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(1338), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_RPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(1340), + }, + [558] = { + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_RPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + }, + [559] = { + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_RPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), + }, + [560] = { + [sym__expr1] = STATE(200), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(557), + [sym__declaration] = STATE(558), + [sym_function_clause] = STATE(559), + [aux_sym_source_file_repeat1] = STATE(1070), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(260), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_in] = ACTIONS(1342), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_COLON] = ACTIONS(440), }, - [313] = { - [sym_atomic_expr] = STATE(799), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [561] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(1334), + }, + [562] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(1334), + }, + [563] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + }, + [564] = { + [sym_expr] = STATE(1071), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [314] = { - [sym_expr] = STATE(801), + [565] = { + [sym_expr] = STATE(573), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -34512,7 +48184,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -34528,8 +48200,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [315] = { - [sym_expr] = STATE(802), + [566] = { + [sym_expr] = STATE(574), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -34551,7 +48223,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1020), + [anon_sym_RBRACE_RBRACE] = ACTIONS(749), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -34566,69 +48238,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [316] = { - [sym_lambda_bindings] = STATE(804), - [sym_untyped_bindings] = STATE(805), - [sym_typed_bindings] = STATE(805), - [anon_sym_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LBRACE_LBRACE] = ACTIONS(338), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(342), - }, - [317] = { - [sym_forall_bindings] = STATE(806), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [318] = { - [sym__expr1] = STATE(263), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(807), - [sym__declaration] = STATE(808), - [sym_function_clause] = STATE(809), - [aux_sym_source_file_repeat1] = STATE(810), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(346), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [319] = { - [sym_expr] = STATE(811), + [567] = { + [sym_expr] = STATE(582), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -34661,225 +48272,410 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(749), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [320] = { - [sym_expr] = STATE(812), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), + [568] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE_RBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + }, + [569] = { + [sym_expr] = STATE(573), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [321] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(1008), + [570] = { + [sym_expr] = STATE(574), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(749), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [571] = { + [sym_expr] = STATE(582), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [572] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE_RBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + }, + [573] = { + [anon_sym_RBRACE] = ACTIONS(1344), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1024), }, - [322] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), + [574] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1346), + [sym_comment] = ACTIONS(86), + }, + [575] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(757), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(757), + }, + [576] = { + [sym_lambda_bindings] = STATE(637), + [sym_untyped_bindings] = STATE(576), + [sym_typed_bindings] = STATE(576), + [anon_sym_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_LBRACE_LBRACE] = ACTIONS(338), + [anon_sym_RBRACE_RBRACE] = ACTIONS(763), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_COLON] = ACTIONS(763), + }, + [577] = { + [sym_expr] = STATE(646), + [sym__expr1] = STATE(1075), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(1076), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(1077), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1078), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [323] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), + [578] = { + [sym_where_clause] = STATE(1082), + [sym_rhs] = STATE(1083), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE_RBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(1350), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(1352), }, - [324] = { - [sym__expr2] = STATE(289), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(814), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [579] = { + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE_RBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + }, + [580] = { + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE_RBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(30), - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [581] = { + [sym__expr1] = STATE(263), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(578), + [sym__declaration] = STATE(579), + [sym_function_clause] = STATE(580), + [aux_sym_source_file_repeat1] = STATE(1084), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(344), + [sym_set_n] = ACTIONS(344), + [sym_name_at] = ACTIONS(346), + [sym_qualified_name] = ACTIONS(344), + [anon_sym__] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [anon_sym_RBRACE_RBRACE] = ACTIONS(440), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_rewrite] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_in] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_Prop] = ACTIONS(344), + [anon_sym_Set] = ACTIONS(344), + [anon_sym_quote] = ACTIONS(344), + [anon_sym_quoteTerm] = ACTIONS(344), + [anon_sym_unquote] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LPAREN_PIPE] = ACTIONS(360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [anon_sym_COLON] = ACTIONS(440), }, - [326] = { - [sym_atomic_expr] = STATE(815), - [sym__atomic_expr_curly] = STATE(338), - [sym__atomic_expr_no_curly] = STATE(338), - [sym_literal] = ACTIONS(426), - [sym_set_n] = ACTIONS(426), - [sym_name_at] = ACTIONS(428), - [sym_qualified_name] = ACTIONS(426), - [anon_sym__] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_LBRACE_LBRACE] = ACTIONS(432), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(426), - [anon_sym_Prop] = ACTIONS(426), - [anon_sym_Set] = ACTIONS(426), - [anon_sym_quote] = ACTIONS(426), - [anon_sym_quoteTerm] = ACTIONS(426), - [anon_sym_unquote] = ACTIONS(426), - [anon_sym_LPAREN] = ACTIONS(442), - [anon_sym_LPAREN_PIPE] = ACTIONS(444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(426), + [582] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(1346), }, - [327] = { - [sym_expr] = STATE(817), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [583] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(1346), }, - [328] = { - [sym_expr] = STATE(818), + [584] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + }, + [585] = { + [sym_expr] = STATE(1085), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -34901,7 +48697,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1028), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -34916,791 +48711,159 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [329] = { - [sym_expr] = STATE(821), - [sym__expr1] = STATE(822), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(823), - [sym_atomic_expr] = STATE(382), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [sym_tele_arrow] = STATE(824), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(535), - [aux_sym__application_repeat1] = STATE(825), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(1030), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(1032), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(506), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), + [586] = { + [anon_sym_RBRACE] = ACTIONS(1356), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_PIPE_RPAREN] = ACTIONS(1356), + [anon_sym_COLON] = ACTIONS(1356), }, - [330] = { - [sym_lambda_bindings] = STATE(826), - [sym_untyped_bindings] = STATE(827), - [sym_typed_bindings] = STATE(827), - [anon_sym_DOT] = ACTIONS(78), - [anon_sym_DOT_DOT] = ACTIONS(80), - [anon_sym_LBRACE] = ACTIONS(82), - [anon_sym_LBRACE_LBRACE] = ACTIONS(84), + [587] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(1020), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(88), - [anon_sym_LPAREN] = ACTIONS(90), + [anon_sym_COLON] = ACTIONS(733), }, - [331] = { - [sym_forall_bindings] = STATE(828), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [588] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(1358), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), }, - [332] = { - [sym__expr1] = STATE(833), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(834), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(835), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [589] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(1087), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), }, - [333] = { - [sym_expr] = STATE(838), - [sym__expr1] = STATE(110), + [590] = { + [sym_expr] = STATE(1086), + [sym__expr1] = STATE(593), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), + [sym__atomic_exprs1] = STATE(594), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), + [sym_tele_arrow] = STATE(595), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), + [sym_name_at] = ACTIONS(34), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(1028), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [334] = { - [sym_expr] = STATE(839), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [335] = { - [sym__application] = STATE(841), - [sym__expr2] = STATE(14), - [sym_atomic_expr] = STATE(337), - [sym__atomic_expr_curly] = STATE(338), - [sym__atomic_expr_no_curly] = STATE(338), - [aux_sym__application_repeat1] = STATE(842), - [sym_literal] = ACTIONS(426), - [sym_set_n] = ACTIONS(426), - [sym_name_at] = ACTIONS(428), - [sym_qualified_name] = ACTIONS(426), - [anon_sym__] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_LBRACE_LBRACE] = ACTIONS(432), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1042), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(426), - [anon_sym_Prop] = ACTIONS(426), - [anon_sym_Set] = ACTIONS(426), - [anon_sym_quote] = ACTIONS(426), - [anon_sym_quoteTerm] = ACTIONS(426), - [anon_sym_unquote] = ACTIONS(426), - [anon_sym_LPAREN] = ACTIONS(442), - [anon_sym_LPAREN_PIPE] = ACTIONS(444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(426), - }, - [336] = { - [ts_builtin_sym_end] = ACTIONS(1044), - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_rewrite] = ACTIONS(1044), - [anon_sym_with] = ACTIONS(1044), - }, - [337] = { - [ts_builtin_sym_end] = ACTIONS(164), - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_rewrite] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), - }, - [338] = { - [ts_builtin_sym_end] = ACTIONS(168), - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_rewrite] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), - }, - [339] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_rewrite] = ACTIONS(1046), - [anon_sym_with] = ACTIONS(1046), - }, - [340] = { - [sym_semi] = STATE(843), - [aux_sym_lambda_where_clauses_repeat1] = STATE(844), - [ts_builtin_sym_end] = ACTIONS(1048), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_rewrite] = ACTIONS(1048), - [anon_sym_with] = ACTIONS(1048), - }, - [341] = { - [ts_builtin_sym_end] = ACTIONS(1052), - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_COLON] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_rewrite] = ACTIONS(1052), - [anon_sym_with] = ACTIONS(1052), - }, - [342] = { - [sym__expr2] = STATE(146), - [sym_atomic_expr] = STATE(337), - [sym__atomic_expr_curly] = STATE(338), - [sym__atomic_expr_no_curly] = STATE(338), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(426), - [sym_set_n] = ACTIONS(426), - [sym_name_at] = ACTIONS(428), - [sym_qualified_name] = ACTIONS(426), - [anon_sym__] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_LBRACE_LBRACE] = ACTIONS(432), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1042), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(426), - [anon_sym_Prop] = ACTIONS(426), - [anon_sym_Set] = ACTIONS(426), - [anon_sym_quote] = ACTIONS(426), - [anon_sym_quoteTerm] = ACTIONS(426), - [anon_sym_unquote] = ACTIONS(426), - [anon_sym_LPAREN] = ACTIONS(442), - [anon_sym_LPAREN_PIPE] = ACTIONS(444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(426), - }, - [343] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(1054), - }, - [344] = { - [sym_atomic_expr] = STATE(799), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [345] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(1056), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - }, - [346] = { - [sym_lambda_bindings] = STATE(846), - [sym_untyped_bindings] = STATE(847), - [sym_typed_bindings] = STATE(847), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(258), - }, - [347] = { - [sym_forall_bindings] = STATE(848), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [348] = { - [sym__expr1] = STATE(853), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(854), - [sym__declaration] = STATE(772), - [sym_function_clause] = STATE(773), - [aux_sym_source_file_repeat1] = STATE(855), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1060), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [349] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(1008), - }, - [350] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1068), - }, - [351] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(814), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [352] = { - [sym_expr] = STATE(797), - [sym__expr1] = STATE(380), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(381), - [sym_atomic_expr] = STATE(382), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [sym_tele_arrow] = STATE(384), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(22), - [aux_sym__application_repeat1] = STATE(385), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(500), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(502), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(506), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(20), - [anon_sym_forall] = ACTIONS(22), - [anon_sym_let] = ACTIONS(24), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), - }, - [353] = { - [sym__application] = STATE(859), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), - }, - [354] = { - [sym__application] = STATE(860), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), - }, - [355] = { - [sym__application] = STATE(861), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [356] = { - [sym_binding_name] = STATE(862), - [sym__application] = STATE(562), + [591] = { + [sym__application] = STATE(351), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [357] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), + [592] = { + [anon_sym_RBRACE] = ACTIONS(1360), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_PIPE_RPAREN] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), }, - [358] = { - [sym_atomic_expr] = STATE(863), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [593] = { + [anon_sym_RBRACE] = ACTIONS(280), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1362), }, - [359] = { - [sym_expr] = STATE(865), - [sym__expr1] = STATE(38), + [594] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(162), + }, + [595] = { + [sym_expr] = STATE(218), + [sym__expr1] = STATE(593), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), + [sym__atomic_exprs1] = STATE(594), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), + [sym_tele_arrow] = STATE(595), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), [aux_sym__application_repeat1] = STATE(47), @@ -35713,7 +48876,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(1070), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -35729,95 +48891,514 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [360] = { - [sym_expr] = STATE(866), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), + [596] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1364), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [597] = { + [sym_lambda_bindings] = STATE(852), + [sym_untyped_bindings] = STATE(597), + [sym_typed_bindings] = STATE(597), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1083), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_rewrite] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), + }, + [598] = { + [sym_expr] = STATE(868), + [sym__expr1] = STATE(1092), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(1093), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(1094), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(1095), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1366), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1368), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), }, - [361] = { - [sym_lambda_bindings] = STATE(867), - [sym_untyped_bindings] = STATE(868), - [sym_typed_bindings] = STATE(868), + [599] = { + [sym__expr1] = STATE(93), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(98), + [sym__declaration] = STATE(99), + [sym_function_clause] = STATE(100), + [aux_sym_source_file_repeat1] = STATE(1099), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [600] = { + [sym__expr1] = STATE(1109), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [aux_sym__expr1_repeat1] = STATE(1114), + [aux_sym__application_repeat1] = STATE(1115), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(1372), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_forall] = ACTIONS(1380), + [anon_sym_let] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + }, + [601] = { + [sym__expr1] = STATE(1125), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1128), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), + [aux_sym__expr1_repeat1] = STATE(1130), + [aux_sym__application_repeat1] = STATE(1131), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(1390), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_forall] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + }, + [602] = { + [sym_with_expressions] = STATE(1132), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(767), + }, + [603] = { + [ts_builtin_sym_end] = ACTIONS(612), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + }, + [604] = { + [sym_expr] = STATE(1143), + [sym__expr1] = STATE(1144), + [sym__application] = STATE(1145), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(1147), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_tele_arrow] = STATE(1150), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1151), + [aux_sym__application_repeat1] = STATE(1152), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1408), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_forall] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), + }, + [605] = { + [sym_vopen] = STATE(1153), + [sym_declarations] = STATE(1154), + [sym__declarations0] = STATE(1155), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [606] = { + [sym_anonymous_name] = STATE(1156), + [sym_name] = ACTIONS(1426), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), + }, + [607] = { + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + }, + [608] = { + [sym_where_clause] = STATE(1157), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(769), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(773), + }, + [609] = { + [sym__expr1] = STATE(200), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(201), + [sym__declaration] = STATE(202), + [sym_function_clause] = STATE(203), + [aux_sym_source_file_repeat1] = STATE(609), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(1428), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1431), + [anon_sym_forall] = ACTIONS(1434), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + }, + [610] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(757), + }, + [611] = { + [sym_lambda_bindings] = STATE(586), + [sym_untyped_bindings] = STATE(611), + [sym_typed_bindings] = STATE(611), [anon_sym_DOT] = ACTIONS(92), [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(761), [anon_sym_LBRACE_LBRACE] = ACTIONS(254), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(976), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_COLON] = ACTIONS(763), }, - [362] = { - [sym_forall_bindings] = STATE(869), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [612] = { + [sym_expr] = STATE(592), + [sym__expr1] = STATE(1159), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(1160), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(1161), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1162), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [363] = { - [sym__expr1] = STATE(200), + [613] = { + [sym__expr1] = STATE(408), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(870), - [sym__declaration] = STATE(772), - [sym_function_clause] = STATE(773), - [aux_sym_source_file_repeat1] = STATE(871), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), + [sym_lhs] = STATE(557), + [sym__declaration] = STATE(558), + [sym_function_clause] = STATE(559), + [aux_sym_source_file_repeat1] = STATE(1164), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), [sym_literal] = ACTIONS(102), [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(260), + [sym_name_at] = ACTIONS(516), [sym_qualified_name] = ACTIONS(102), [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(260), + [anon_sym_DOT] = ACTIONS(516), [anon_sym_LBRACE] = ACTIONS(106), [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_in] = ACTIONS(1442), [anon_sym_QMARK] = ACTIONS(102), [anon_sym_Prop] = ACTIONS(102), [anon_sym_Set] = ACTIONS(102), @@ -35825,11 +49406,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(102), [anon_sym_unquote] = ACTIONS(102), [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_RPAREN] = ACTIONS(440), [anon_sym_LPAREN_PIPE] = ACTIONS(118), [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_COLON] = ACTIONS(440), }, - [364] = { - [sym_expr] = STATE(872), + [614] = { + [sym_expr] = STATE(1165), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -35862,148 +49445,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(1072), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [365] = { - [sym_expr] = STATE(873), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [366] = { - [anon_sym_RBRACE] = ACTIONS(1074), + [615] = { + [anon_sym_RBRACE] = ACTIONS(1444), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(771), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_PIPE_RPAREN] = ACTIONS(1444), + [anon_sym_COLON] = ACTIONS(1444), }, - [367] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [616] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_RPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), }, - [368] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [617] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), }, - [369] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(814), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [618] = { + [anon_sym_RBRACE] = ACTIONS(1446), + [sym_comment] = ACTIONS(86), }, - [370] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(1074), + [619] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1448), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(793), }, - [371] = { + [620] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(1074), + [anon_sym_RPAREN] = ACTIONS(1448), }, - [372] = { + [621] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(843), + [anon_sym_PIPE_RPAREN] = ACTIONS(1448), }, - [373] = { - [ts_builtin_sym_end] = ACTIONS(30), + [622] = { [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), @@ -36012,10 +49537,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), @@ -36027,173 +49550,146 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_rewrite] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), }, - [374] = { - [sym_atomic_expr] = STATE(878), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(500), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_LBRACE] = ACTIONS(1076), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1078), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(1080), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), - }, - [375] = { - [sym_atomic_expr] = STATE(878), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(500), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1084), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), + [623] = { + [sym_atomic_expr] = STATE(1168), + [sym__atomic_expr_curly] = STATE(629), + [sym__atomic_expr_no_curly] = STATE(629), + [sym_literal] = ACTIONS(1450), + [sym_set_n] = ACTIONS(1450), + [sym_name_at] = ACTIONS(1452), + [sym_qualified_name] = ACTIONS(1450), + [anon_sym__] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1456), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1450), + [anon_sym_Prop] = ACTIONS(1450), + [anon_sym_Set] = ACTIONS(1450), + [anon_sym_quote] = ACTIONS(1450), + [anon_sym_quoteTerm] = ACTIONS(1450), + [anon_sym_unquote] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_LPAREN_PIPE] = ACTIONS(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1450), }, - [376] = { - [sym_expr] = STATE(883), + [624] = { + [sym_expr] = STATE(1170), [sym__expr1] = STATE(38), - [sym__application] = STATE(170), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(1088), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [377] = { - [sym_expr] = STATE(884), + [625] = { + [sym_expr] = STATE(1171), [sym__expr1] = STATE(60), - [sym__application] = STATE(185), + [sym__application] = STATE(61), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1464), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [378] = { - [sym_expr] = STATE(885), + [626] = { + [sym_expr] = STATE(1172), [sym__expr1] = STATE(110), - [sym__application] = STATE(213), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(1090), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(1464), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [379] = { - [sym_expr] = STATE(886), + [627] = { + [sym_expr] = STATE(1173), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -36229,46 +49725,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [380] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1094), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_rewrite] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), - }, - [381] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1096), - [anon_sym_PIPE] = ACTIONS(162), - }, - [382] = { - [ts_builtin_sym_end] = ACTIONS(164), + [628] = { [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), @@ -36277,10 +49736,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), [anon_sym_QMARK] = ACTIONS(166), @@ -36292,16 +49749,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_rewrite] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), }, - [383] = { - [ts_builtin_sym_end] = ACTIONS(168), + [629] = { [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), @@ -36310,10 +49761,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), @@ -36325,240 +49774,105 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_rewrite] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), - }, - [384] = { - [sym_expr] = STATE(888), - [sym__expr1] = STATE(380), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(381), - [sym_atomic_expr] = STATE(382), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [sym_tele_arrow] = STATE(384), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(22), - [aux_sym__application_repeat1] = STATE(385), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(500), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(502), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(506), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(20), - [anon_sym_forall] = ACTIONS(22), - [anon_sym_let] = ACTIONS(24), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), - }, - [385] = { - [sym__expr2] = STATE(146), - [sym_atomic_expr] = STATE(382), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(500), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_LBRACE] = ACTIONS(1076), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1078), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(20), - [anon_sym_forall] = ACTIONS(22), - [anon_sym_let] = ACTIONS(24), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(1080), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), - }, - [386] = { - [sym_literal] = ACTIONS(1098), - [sym_set_n] = ACTIONS(1098), - [sym_name_at] = ACTIONS(1098), - [sym_qualified_name] = ACTIONS(1098), - [anon_sym__] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(1098), - [anon_sym_DOT_DOT] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1098), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1098), - [anon_sym_forall] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_QMARK] = ACTIONS(1098), - [anon_sym_Prop] = ACTIONS(1098), - [anon_sym_Set] = ACTIONS(1098), - [anon_sym_quote] = ACTIONS(1098), - [anon_sym_quoteTerm] = ACTIONS(1098), - [anon_sym_unquote] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_LPAREN_PIPE] = ACTIONS(1098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1098), }, - [387] = { - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(387), - [anon_sym_DOT] = ACTIONS(1100), - [anon_sym_DOT_DOT] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1109), + [630] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1114), - }, - [388] = { - [ts_builtin_sym_end] = ACTIONS(186), - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_rewrite] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), - }, - [389] = { - [ts_builtin_sym_end] = ACTIONS(228), - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_rewrite] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(733), }, - [390] = { - [anon_sym_RBRACE] = ACTIONS(1117), + [631] = { [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(753), }, - [391] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(1119), - [sym_comment] = ACTIONS(86), + [632] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE_RBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), }, - [392] = { - [anon_sym_LBRACE] = ACTIONS(1121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1123), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(1125), + [633] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE_RBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), }, - [393] = { - [sym__application] = STATE(895), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(896), - [aux_sym__application_repeat1] = STATE(311), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(1127), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [634] = { + [sym__application] = STATE(1174), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [394] = { - [sym__application] = STATE(897), + [635] = { + [sym__application] = STATE(1175), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), [sym_name_at] = ACTIONS(410), @@ -36567,7 +49881,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(410), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1127), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(416), [anon_sym_forall] = ACTIONS(418), @@ -36582,62 +49895,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [395] = { - [sym__application] = STATE(906), - [sym__expr2] = STATE(95), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [sym_non_absurd_lambda_clause] = STATE(909), - [sym_absurd_lambda_clause] = STATE(909), - [sym_lambda_clause] = STATE(910), - [sym_lambda_where_clauses] = STATE(911), - [aux_sym__application_repeat1] = STATE(912), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(1131), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [sym_catchall_pragma] = ACTIONS(1143), - }, - [396] = { - [sym_binding_name] = STATE(913), - [sym__application] = STATE(914), + [636] = { + [sym_binding_name] = STATE(1176), + [sym__application] = STATE(1177), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), [anon_sym_QMARK] = ACTIONS(408), [anon_sym_Prop] = ACTIONS(408), [anon_sym_Set] = ACTIONS(408), @@ -36645,743 +49923,486 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(408), [anon_sym_unquote] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(1127), [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [397] = { - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1145), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [637] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1356), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_COLON] = ACTIONS(1356), }, - [398] = { - [sym_lambda_bindings] = STATE(894), - [sym_untyped_bindings] = STATE(398), - [sym_typed_bindings] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_DOT_DOT] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(1153), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_rewrite] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), + [638] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(1466), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1468), }, - [399] = { - [sym_expr] = STATE(911), - [sym__expr1] = STATE(924), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(925), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(928), + [639] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(1470), + [sym_comment] = ACTIONS(86), + }, + [640] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1466), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1472), + }, + [641] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(1182), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [642] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(1466), + }, + [643] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1474), + }, + [644] = { + [sym_expr] = STATE(1180), + [sym__expr1] = STATE(647), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(648), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(649), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(929), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1157), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1159), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [400] = { - [sym__expr1] = STATE(93), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(98), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(412), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(460), + [645] = { + [sym__application] = STATE(1184), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), }, - [401] = { + [646] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1360), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), }, - [402] = { + [647] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(280), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(1119), - }, - [403] = { - [sym__expr1] = STATE(930), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(104), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [404] = { - [sym__expr1] = STATE(931), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(104), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [405] = { - [sym_with_expressions] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(646), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_rewrite] = ACTIONS(646), - [anon_sym_with] = ACTIONS(538), + [anon_sym_EQ] = ACTIONS(1476), }, - [406] = { - [ts_builtin_sym_end] = ACTIONS(646), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_rewrite] = ACTIONS(646), - [anon_sym_with] = ACTIONS(646), + [648] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(162), }, - [407] = { - [sym_expr] = STATE(933), - [sym__expr1] = STATE(924), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(925), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(928), + [649] = { + [sym_expr] = STATE(278), + [sym__expr1] = STATE(647), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(648), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(649), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(929), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1157), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1159), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [408] = { - [sym__expr1] = STATE(833), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(834), - [sym__declaration] = STATE(934), - [sym_function_clause] = STATE(100), - [sym__declarations1] = STATE(935), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(670), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), - [anon_sym_rewrite] = ACTIONS(670), - [anon_sym_with] = ACTIONS(670), - }, - [409] = { - [sym_anonymous_name] = STATE(936), - [sym_name] = ACTIONS(1169), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), - }, - [410] = { - [ts_builtin_sym_end] = ACTIONS(678), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(678), - [anon_sym_rewrite] = ACTIONS(678), - [anon_sym_with] = ACTIONS(678), - }, - [411] = { - [sym_where_clause] = STATE(937), - [ts_builtin_sym_end] = ACTIONS(678), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(542), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(544), - [anon_sym_rewrite] = ACTIONS(678), - [anon_sym_with] = ACTIONS(678), - }, - [412] = { - [sym__expr1] = STATE(93), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(98), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(412), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(680), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(1174), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1183), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1189), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_rewrite] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [413] = { - [ts_builtin_sym_end] = ACTIONS(709), - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_in] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), - [anon_sym_rewrite] = ACTIONS(709), - [anon_sym_with] = ACTIONS(709), + [650] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE_RBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_rewrite] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [414] = { - [ts_builtin_sym_end] = ACTIONS(729), - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_rewrite] = ACTIONS(729), - [anon_sym_with] = ACTIONS(729), + [651] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE_RBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_rewrite] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [415] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(622), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(944), - [sym_lambda_where_clauses] = STATE(626), - [aux_sym__application_repeat1] = STATE(945), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(1198), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1200), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_forall] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1206), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), - [sym_catchall_pragma] = ACTIONS(1208), + [652] = { + [anon_sym_RBRACE] = ACTIONS(1478), + [sym_comment] = ACTIONS(86), }, - [416] = { + [653] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1480), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1210), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(819), }, - [417] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(417), - [sym_typed_bindings] = STATE(417), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [654] = { + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1484), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(1486), }, - [418] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(947), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(948), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(949), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [655] = { + [sym__application] = STATE(1192), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(1193), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [419] = { - [sym_atomic_expr] = STATE(388), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(548), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [656] = { + [sym__application] = STATE(1194), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1488), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [420] = { - [sym_lambda_bindings] = STATE(951), - [sym_untyped_bindings] = STATE(952), - [sym_typed_bindings] = STATE(952), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACE_LBRACE] = ACTIONS(530), + [657] = { + [sym_vopen] = STATE(1195), + [sym__layout_open_brace] = ACTIONS(426), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1212), - [anon_sym_LPAREN] = ACTIONS(534), }, - [421] = { - [sym_forall_bindings] = STATE(953), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [658] = { + [sym_binding_name] = STATE(1196), + [sym__application] = STATE(1197), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [422] = { - [sym__expr1] = STATE(954), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(955), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(956), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(548), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [659] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE_RBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [660] = { + [sym_lambda_bindings] = STATE(1191), + [sym_untyped_bindings] = STATE(660), + [sym_typed_bindings] = STATE(660), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE_RBRACE] = ACTIONS(444), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_rewrite] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), + }, + [661] = { + [sym_expr] = STATE(1207), + [sym__expr1] = STATE(1208), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(1209), + [sym_atomic_expr] = STATE(1210), + [sym__atomic_expr_curly] = STATE(1211), + [sym__atomic_expr_no_curly] = STATE(1211), + [sym_tele_arrow] = STATE(1212), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(1213), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1500), + [sym_set_n] = ACTIONS(1500), + [sym_name_at] = ACTIONS(1502), + [sym_qualified_name] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1508), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_Prop] = ACTIONS(1500), + [anon_sym_Set] = ACTIONS(1500), + [anon_sym_quote] = ACTIONS(1500), + [anon_sym_quoteTerm] = ACTIONS(1500), + [anon_sym_unquote] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LPAREN_PIPE] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1500), }, - [423] = { - [sym_rewrite_equations] = STATE(959), - [sym_with_expressions] = STATE(643), + [662] = { + [sym_rewrite_equations] = STATE(1216), + [sym_with_expressions] = STATE(1217), [sym_literal] = ACTIONS(152), [sym_set_n] = ACTIONS(152), [sym_name_at] = ACTIONS(152), @@ -37390,6 +50411,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(152), [anon_sym_LBRACE] = ACTIONS(152), [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [anon_sym_RBRACE_RBRACE] = ACTIONS(152), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(152), [anon_sym_BSLASH] = ACTIONS(152), @@ -37404,17 +50426,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(152), [anon_sym_unquote] = ACTIONS(152), [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_RPAREN] = ACTIONS(152), [anon_sym_LPAREN_PIPE] = ACTIONS(152), [anon_sym_DOT_DOT_DOT] = ACTIONS(152), [anon_sym_COLON] = ACTIONS(152), [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(1214), - [anon_sym_with] = ACTIONS(1216), + [anon_sym_rewrite] = ACTIONS(152), + [anon_sym_with] = ACTIONS(152), }, - [424] = { - [sym_where_clause] = STATE(647), - [sym_rhs] = STATE(963), + [663] = { + [sym_where_clause] = STATE(1221), + [sym_rhs] = STATE(1222), [sym_literal] = ACTIONS(170), [sym_set_n] = ACTIONS(170), [sym_name_at] = ACTIONS(170), @@ -37423,10 +50444,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(170), [anon_sym_LBRACE] = ACTIONS(170), [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE_RBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1218), + [anon_sym_EQ] = ACTIONS(170), [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1220), + [anon_sym_where] = ACTIONS(170), [anon_sym_forall] = ACTIONS(170), [anon_sym_let] = ACTIONS(170), [anon_sym_in] = ACTIONS(170), @@ -37437,326 +50459,474 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(170), [anon_sym_unquote] = ACTIONS(170), [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), [anon_sym_LPAREN_PIPE] = ACTIONS(170), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(170), + [anon_sym_rewrite] = ACTIONS(170), + [anon_sym_with] = ACTIONS(170), }, - [425] = { - [sym__expr1] = STATE(423), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(424), - [sym__declaration] = STATE(202), - [sym_function_clause] = STATE(203), - [aux_sym_source_file_repeat1] = STATE(964), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(548), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [664] = { + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE_RBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_in] = ACTIONS(1224), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), + [anon_sym_rewrite] = ACTIONS(178), + [anon_sym_with] = ACTIONS(178), }, - [426] = { - [sym__application] = STATE(413), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(548), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [665] = { + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE_RBRACE] = ACTIONS(180), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), + [anon_sym_rewrite] = ACTIONS(180), + [anon_sym_with] = ACTIONS(180), }, - [427] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(548), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [666] = { + [sym__expr1] = STATE(662), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(663), + [sym__declaration] = STATE(664), + [sym_function_clause] = STATE(665), + [aux_sym_source_file_repeat1] = STATE(1223), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE_RBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [428] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [667] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(1480), }, - [429] = { - [sym_atomic_expr] = STATE(658), - [sym__atomic_expr_curly] = STATE(227), - [sym__atomic_expr_no_curly] = STATE(227), - [sym_literal] = ACTIONS(292), - [sym_set_n] = ACTIONS(292), - [sym_name_at] = ACTIONS(558), - [sym_qualified_name] = ACTIONS(292), - [anon_sym__] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(298), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_Prop] = ACTIONS(292), - [anon_sym_Set] = ACTIONS(292), - [anon_sym_quote] = ACTIONS(292), - [anon_sym_quoteTerm] = ACTIONS(292), - [anon_sym_unquote] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LPAREN_PIPE] = ACTIONS(302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), + [668] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(1480), }, - [430] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(226), - [sym__atomic_expr_curly] = STATE(227), - [sym__atomic_expr_no_curly] = STATE(227), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(292), - [sym_set_n] = ACTIONS(292), - [sym_name_at] = ACTIONS(558), - [sym_qualified_name] = ACTIONS(292), - [anon_sym__] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(298), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_Prop] = ACTIONS(292), - [anon_sym_Set] = ACTIONS(292), - [anon_sym_quote] = ACTIONS(292), - [anon_sym_quoteTerm] = ACTIONS(292), - [anon_sym_unquote] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LPAREN_PIPE] = ACTIONS(302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), + [669] = { + [sym__expr1] = STATE(1233), + [sym__application] = STATE(1234), + [sym__expr2] = STATE(1235), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1236), + [sym__atomic_expr_curly] = STATE(1237), + [sym__atomic_expr_no_curly] = STATE(1237), + [aux_sym__expr1_repeat1] = STATE(1238), + [aux_sym__application_repeat1] = STATE(1239), + [sym_literal] = ACTIONS(1514), + [sym_set_n] = ACTIONS(1514), + [sym_name_at] = ACTIONS(1516), + [sym_qualified_name] = ACTIONS(1514), + [anon_sym__] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1520), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_forall] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(1514), + [anon_sym_Prop] = ACTIONS(1514), + [anon_sym_Set] = ACTIONS(1514), + [anon_sym_quote] = ACTIONS(1514), + [anon_sym_quoteTerm] = ACTIONS(1514), + [anon_sym_unquote] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LPAREN_PIPE] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1514), + }, + [670] = { + [sym__expr1] = STATE(1249), + [sym__application] = STATE(1250), + [sym__expr2] = STATE(1251), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1252), + [sym__atomic_expr_curly] = STATE(1253), + [sym__atomic_expr_no_curly] = STATE(1253), + [aux_sym__expr1_repeat1] = STATE(1254), + [aux_sym__application_repeat1] = STATE(1255), + [sym_literal] = ACTIONS(1532), + [sym_set_n] = ACTIONS(1532), + [sym_name_at] = ACTIONS(1534), + [sym_qualified_name] = ACTIONS(1532), + [anon_sym__] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1538), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_forall] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_Prop] = ACTIONS(1532), + [anon_sym_Set] = ACTIONS(1532), + [anon_sym_quote] = ACTIONS(1532), + [anon_sym_quoteTerm] = ACTIONS(1532), + [anon_sym_unquote] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_LPAREN_PIPE] = ACTIONS(1548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1532), }, - [431] = { - [sym_expr] = STATE(439), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(572), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [671] = { + [sym_with_expressions] = STATE(1256), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE_RBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(862), }, - [432] = { - [sym_expr] = STATE(440), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(574), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [672] = { + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE_RBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), }, - [433] = { - [sym_expr] = STATE(465), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), + [673] = { + [sym_expr] = STATE(1267), + [sym__expr1] = STATE(1268), + [sym__application] = STATE(1269), + [sym__expr2] = STATE(1270), + [sym__atomic_exprs1] = STATE(1271), + [sym_atomic_expr] = STATE(1272), + [sym__atomic_expr_curly] = STATE(1273), + [sym__atomic_expr_no_curly] = STATE(1273), + [sym_tele_arrow] = STATE(1274), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), + [aux_sym__expr1_repeat1] = STATE(1275), + [aux_sym__application_repeat1] = STATE(1276), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_literal] = ACTIONS(1550), + [sym_set_n] = ACTIONS(1550), + [sym_name_at] = ACTIONS(1552), + [sym_qualified_name] = ACTIONS(1550), + [anon_sym__] = ACTIONS(1550), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1558), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_forall] = ACTIONS(1562), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1550), + [anon_sym_Prop] = ACTIONS(1550), + [anon_sym_Set] = ACTIONS(1550), + [anon_sym_quote] = ACTIONS(1550), + [anon_sym_quoteTerm] = ACTIONS(1550), + [anon_sym_unquote] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_LPAREN_PIPE] = ACTIONS(1568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1550), + }, + [674] = { + [sym_vopen] = STATE(1277), + [sym_declarations] = STATE(1278), + [sym__declarations0] = STATE(1279), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [675] = { + [sym_anonymous_name] = STATE(1280), + [sym_name] = ACTIONS(1570), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(574), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [434] = { + [676] = { + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE_RBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + }, + [677] = { + [sym_where_clause] = STATE(1281), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE_RBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(864), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(868), + }, + [678] = { + [sym__expr1] = STATE(263), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(268), + [sym__declaration] = STATE(269), + [sym_function_clause] = STATE(270), + [aux_sym_source_file_repeat1] = STATE(678), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(1572), + [sym_set_n] = ACTIONS(1572), + [sym_name_at] = ACTIONS(1575), + [sym_qualified_name] = ACTIONS(1572), + [anon_sym__] = ACTIONS(1572), + [anon_sym_DOT] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE_RBRACE] = ACTIONS(644), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1584), + [anon_sym_forall] = ACTIONS(1587), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_Prop] = ACTIONS(1572), + [anon_sym_Set] = ACTIONS(1572), + [anon_sym_quote] = ACTIONS(1572), + [anon_sym_quoteTerm] = ACTIONS(1572), + [anon_sym_unquote] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LPAREN_PIPE] = ACTIONS(1596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1572), + }, + [679] = { + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [anon_sym_RBRACE_RBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_rewrite] = ACTIONS(673), + [anon_sym_with] = ACTIONS(673), + }, + [680] = { + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE_RBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), + [anon_sym_rewrite] = ACTIONS(693), + [anon_sym_with] = ACTIONS(693), + }, + [681] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1444), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_COLON] = ACTIONS(1444), + }, + [682] = { [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), [sym_name_at] = ACTIONS(186), [sym_qualified_name] = ACTIONS(186), [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE_RBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), [anon_sym_EQ] = ACTIONS(186), [anon_sym_PIPE] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), @@ -37770,135 +50940,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_PIPE_RPAREN] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), }, - [435] = { - [sym_expr] = STATE(439), - [sym__expr1] = STATE(38), - [sym__application] = STATE(557), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(572), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [436] = { - [sym_expr] = STATE(440), - [sym__expr1] = STATE(60), - [sym__application] = STATE(558), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(574), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), - }, - [437] = { - [sym_expr] = STATE(465), - [sym__expr1] = STATE(110), - [sym__application] = STATE(559), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(574), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [438] = { + [683] = { [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), [sym_name_at] = ACTIONS(228), [sym_qualified_name] = ACTIONS(228), [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE_RBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), [anon_sym_EQ] = ACTIONS(228), [anon_sym_PIPE] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), @@ -37912,110 +50966,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_PIPE_RPAREN] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), }, - [439] = { - [anon_sym_RBRACE] = ACTIONS(1226), + [684] = { + [anon_sym_RBRACE] = ACTIONS(1599), [sym_comment] = ACTIONS(86), }, - [440] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(1228), + [685] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1601), [sym_comment] = ACTIONS(86), }, - [441] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(978), - [sym__atomic_expr_curly] = STATE(979), - [sym__atomic_expr_no_curly] = STATE(979), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(980), - [sym_lambda_where_clauses] = STATE(626), - [aux_sym__application_repeat1] = STATE(981), - [sym_literal] = ACTIONS(1230), - [sym_set_n] = ACTIONS(1230), - [sym_name_at] = ACTIONS(1232), - [sym_qualified_name] = ACTIONS(1230), - [anon_sym__] = ACTIONS(1230), - [anon_sym_DOT] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1236), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1238), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_forall] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(1230), - [anon_sym_Prop] = ACTIONS(1230), - [anon_sym_Set] = ACTIONS(1230), - [anon_sym_quote] = ACTIONS(1230), - [anon_sym_quoteTerm] = ACTIONS(1230), - [anon_sym_unquote] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1246), - [anon_sym_LPAREN_PIPE] = ACTIONS(1248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1230), - [sym_catchall_pragma] = ACTIONS(1250), + [686] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(1601), }, - [442] = { + [687] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_PIPE_RPAREN] = ACTIONS(819), + [anon_sym_PIPE_RPAREN] = ACTIONS(1601), }, - [443] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(443), - [sym_typed_bindings] = STATE(443), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [688] = { + [anon_sym_RBRACE] = ACTIONS(1603), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_PIPE_RPAREN] = ACTIONS(825), + [anon_sym_COLON] = ACTIONS(1605), }, - [444] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(983), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(984), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(985), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [689] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1603), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1607), + }, + [690] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(1603), + }, + [691] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1609), + }, + [692] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), }, - [445] = { + [693] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + }, + [694] = { + [anon_sym_RBRACE] = ACTIONS(1615), + [sym_comment] = ACTIONS(86), + }, + [695] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1617), + [sym_comment] = ACTIONS(86), + }, + [696] = { + [sym__layout_semicolon] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -38024,15 +51076,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), [anon_sym_Prop] = ACTIONS(30), [anon_sym_Set] = ACTIONS(30), @@ -38041,126 +51093,144 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_PIPE_RPAREN] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_rewrite] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), }, - [446] = { - [sym_atomic_expr] = STATE(986), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(580), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [697] = { + [sym_atomic_expr] = STATE(1293), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(888), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(888), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1621), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), }, - [447] = { - [sym_expr] = STATE(988), + [698] = { + [sym_atomic_expr] = STATE(1293), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(888), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(888), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1627), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [699] = { + [sym_expr] = STATE(1298), [sym__expr1] = STATE(38), - [sym__application] = STATE(39), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [448] = { - [sym_expr] = STATE(989), + [700] = { + [sym_expr] = STATE(1299), [sym__expr1] = STATE(60), - [sym__application] = STATE(61), + [sym__application] = STATE(185), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), + [aux_sym__application_repeat1] = STATE(188), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1633), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [449] = { - [sym_lambda_bindings] = STATE(995), - [sym_untyped_bindings] = STATE(996), - [sym_typed_bindings] = STATE(996), - [anon_sym_DOT] = ACTIONS(1258), - [anon_sym_DOT_DOT] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1264), + [701] = { + [sym_lambda_bindings] = STATE(1305), + [sym_untyped_bindings] = STATE(1306), + [sym_typed_bindings] = STATE(1306), + [anon_sym_DOT] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1641), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_where] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1645), }, - [450] = { - [sym_forall_bindings] = STATE(997), + [702] = { + [sym_forall_bindings] = STATE(1307), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -38172,82 +51242,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [451] = { - [sym__expr1] = STATE(998), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), + [703] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(999), - [sym__declaration] = STATE(1000), - [sym_function_clause] = STATE(1001), - [aux_sym_source_file_repeat1] = STATE(1002), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(580), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(1308), + [sym__declaration] = STATE(1309), + [sym_function_clause] = STATE(1310), + [aux_sym_source_file_repeat1] = STATE(1311), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), }, - [452] = { - [sym_expr] = STATE(1003), + [704] = { + [sym_expr] = STATE(1312), [sym__expr1] = STATE(110), - [sym__application] = STATE(39), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(1256), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [453] = { - [sym_expr] = STATE(1004), + [705] = { + [sym_expr] = STATE(1313), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -38283,104 +51353,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [454] = { - [sym_rewrite_equations] = STATE(1007), - [sym_with_expressions] = STATE(1008), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_PIPE_RPAREN] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(1270), - [anon_sym_with] = ACTIONS(1272), + [706] = { + [sym__layout_semicolon] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1647), + [sym_comment] = ACTIONS(86), }, - [455] = { - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_in] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_PIPE_RPAREN] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), - [anon_sym_rewrite] = ACTIONS(158), - [anon_sym_with] = ACTIONS(158), + [707] = { + [sym__layout_semicolon] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(280), + [anon_sym_RBRACE] = ACTIONS(280), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1649), }, - [456] = { - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_in] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_PIPE_RPAREN] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), - [anon_sym_rewrite] = ACTIONS(160), - [anon_sym_with] = ACTIONS(160), + [708] = { + [sym__layout_semicolon] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(284), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(284), }, - [457] = { + [709] = { + [sym__layout_semicolon] = ACTIONS(286), + [anon_sym_SEMI] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(286), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(286), + }, + [710] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(162), + }, + [711] = { + [sym__layout_semicolon] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -38389,15 +51395,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -38406,14 +51412,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_PIPE_RPAREN] = ACTIONS(164), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_rewrite] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), }, - [458] = { + [712] = { + [sym__layout_semicolon] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -38422,15 +51424,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -38439,243 +51441,277 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_PIPE_RPAREN] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_rewrite] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), - }, - [459] = { - [sym_where_clause] = STATE(1012), - [sym_rhs] = STATE(1013), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1274), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1276), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_PIPE_RPAREN] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1274), - [anon_sym_module] = ACTIONS(1278), - }, - [460] = { - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_in] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_PIPE_RPAREN] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - }, - [461] = { - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(180), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_in] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_PIPE_RPAREN] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), }, - [462] = { - [sym__expr1] = STATE(454), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(459), - [sym__declaration] = STATE(460), - [sym_function_clause] = STATE(461), - [aux_sym_source_file_repeat1] = STATE(1014), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(580), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [713] = { + [sym_expr] = STATE(1315), + [sym__expr1] = STATE(707), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(710), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(713), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(714), + [aux_sym__application_repeat1] = STATE(715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(888), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(896), + [anon_sym_forall] = ACTIONS(898), + [anon_sym_let] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), }, - [463] = { - [sym__application] = STATE(1015), - [sym__expr2] = STATE(456), + [714] = { + [sym__application] = STATE(1322), + [sym__expr2] = STATE(709), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), + [sym_atomic_expr] = STATE(1323), + [sym__atomic_expr_curly] = STATE(1324), + [sym__atomic_expr_no_curly] = STATE(1324), [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(580), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [aux_sym__application_repeat1] = STATE(1325), + [sym_literal] = ACTIONS(1651), + [sym_set_n] = ACTIONS(1651), + [sym_name_at] = ACTIONS(1653), + [sym_qualified_name] = ACTIONS(1651), + [anon_sym__] = ACTIONS(1651), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1657), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(896), + [anon_sym_forall] = ACTIONS(898), + [anon_sym_let] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_Prop] = ACTIONS(1651), + [anon_sym_Set] = ACTIONS(1651), + [anon_sym_quote] = ACTIONS(1651), + [anon_sym_quoteTerm] = ACTIONS(1651), + [anon_sym_unquote] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LPAREN_PIPE] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1651), }, - [464] = { - [sym__expr2] = STATE(1016), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(580), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), + [715] = { + [sym__expr2] = STATE(1326), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(888), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(888), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1621), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_BSLASH] = ACTIONS(896), + [anon_sym_forall] = ACTIONS(898), + [anon_sym_let] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), }, - [465] = { + [716] = { + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1665), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(1228), + [anon_sym_LPAREN] = ACTIONS(1667), }, - [466] = { + [717] = { + [sym__application] = STATE(1331), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(1332), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), + }, + [718] = { + [sym__application] = STATE(1333), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1669), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [719] = { + [sym_vopen] = STATE(1334), + [sym__layout_open_brace] = ACTIONS(426), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(1228), }, - [467] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), + [720] = { + [sym_binding_name] = STATE(1335), + [sym__application] = STATE(1336), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [468] = { + [721] = { + [sym__layout_semicolon] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_RBRACE] = ACTIONS(757), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1671), + [anon_sym_COLON] = ACTIONS(757), + }, + [722] = { + [sym_lambda_bindings] = STATE(1330), + [sym_untyped_bindings] = STATE(722), + [sym_typed_bindings] = STATE(722), + [sym__layout_semicolon] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(906), + [anon_sym_DOT_DOT] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_LBRACE_LBRACE] = ACTIONS(912), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_COLON] = ACTIONS(763), + }, + [723] = { + [sym_expr] = STATE(1349), + [sym__expr1] = STATE(1350), + [sym__application] = STATE(1351), + [sym__expr2] = STATE(1352), + [sym__atomic_exprs1] = STATE(1353), + [sym_atomic_expr] = STATE(1354), + [sym__atomic_expr_curly] = STATE(1355), + [sym__atomic_expr_no_curly] = STATE(1355), + [sym_tele_arrow] = STATE(1356), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1357), + [aux_sym__application_repeat1] = STATE(1358), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1675), + [sym_set_n] = ACTIONS(1675), + [sym_name_at] = ACTIONS(1677), + [sym_qualified_name] = ACTIONS(1675), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1683), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1685), + [anon_sym_forall] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_QMARK] = ACTIONS(1675), + [anon_sym_Prop] = ACTIONS(1675), + [anon_sym_Set] = ACTIONS(1675), + [anon_sym_quote] = ACTIONS(1675), + [anon_sym_quoteTerm] = ACTIONS(1675), + [anon_sym_unquote] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_LPAREN_PIPE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), + }, + [724] = { + [sym__layout_semicolon] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -38684,13 +51720,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(30), [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), [anon_sym_Prop] = ACTIONS(30), [anon_sym_Set] = ACTIONS(30), @@ -38699,34 +51738,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_PIPE_RPAREN] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_rewrite] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), }, - [469] = { - [sym_atomic_expr] = STATE(1017), - [sym__atomic_expr_curly] = STATE(475), - [sym__atomic_expr_no_curly] = STATE(475), - [sym_literal] = ACTIONS(598), - [sym_set_n] = ACTIONS(598), - [sym_name_at] = ACTIONS(600), - [sym_qualified_name] = ACTIONS(598), - [anon_sym__] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_LBRACE_LBRACE] = ACTIONS(604), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_Prop] = ACTIONS(598), - [anon_sym_Set] = ACTIONS(598), - [anon_sym_quote] = ACTIONS(598), - [anon_sym_quoteTerm] = ACTIONS(598), - [anon_sym_unquote] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LPAREN_PIPE] = ACTIONS(608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), + [725] = { + [sym_atomic_expr] = STATE(1359), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), }, - [470] = { - [sym_expr] = STATE(1019), + [726] = { + [sym_expr] = STATE(1361), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -38747,7 +51789,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1695), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -38763,8 +51805,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [471] = { - [sym_expr] = STATE(1020), + [727] = { + [sym_expr] = STATE(1362), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -38786,7 +51828,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1284), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1697), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -38801,8 +51843,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [472] = { - [sym_expr] = STATE(1021), + [728] = { + [sym_lambda_bindings] = STATE(1368), + [sym_untyped_bindings] = STATE(1369), + [sym_typed_bindings] = STATE(1369), + [anon_sym_DOT] = ACTIONS(1699), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1705), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1709), + }, + [729] = { + [sym_forall_bindings] = STATE(1370), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [730] = { + [sym__expr1] = STATE(1371), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(1372), + [sym__declaration] = STATE(1373), + [sym_function_clause] = STATE(1374), + [aux_sym_source_file_repeat1] = STATE(1375), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [731] = { + [sym_expr] = STATE(1376), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -38835,12 +51938,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(1284), + [anon_sym_RPAREN] = ACTIONS(1697), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [473] = { - [sym_expr] = STATE(1022), + [732] = { + [sym_expr] = STATE(1377), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -38876,7 +51979,109 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [474] = { + [733] = { + [sym_rewrite_equations] = STATE(1380), + [sym_with_expressions] = STATE(1381), + [sym__layout_semicolon] = ACTIONS(1711), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [anon_sym_SEMI] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_RBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_in] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(1713), + [anon_sym_with] = ACTIONS(1715), + }, + [734] = { + [sym__layout_semicolon] = ACTIONS(284), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + [anon_sym_rewrite] = ACTIONS(158), + [anon_sym_with] = ACTIONS(158), + }, + [735] = { + [sym__layout_semicolon] = ACTIONS(286), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [anon_sym_SEMI] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + [anon_sym_rewrite] = ACTIONS(160), + [anon_sym_with] = ACTIONS(160), + }, + [736] = { + [sym__layout_semicolon] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -38885,13 +52090,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -38900,10 +52108,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_PIPE_RPAREN] = ACTIONS(164), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_rewrite] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [475] = { + [737] = { + [sym__layout_semicolon] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -38912,13 +52124,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(168), [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -38927,40 +52142,212 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_PIPE_RPAREN] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_rewrite] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [476] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(474), - [sym__atomic_expr_curly] = STATE(475), - [sym__atomic_expr_no_curly] = STATE(475), + [738] = { + [sym_where_clause] = STATE(1385), + [sym_rhs] = STATE(1386), + [sym__layout_semicolon] = ACTIONS(1717), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1719), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(1721), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(1723), + }, + [739] = { + [sym__layout_semicolon] = ACTIONS(1725), + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [anon_sym_SEMI] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + }, + [740] = { + [sym__layout_semicolon] = ACTIONS(1727), + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [anon_sym_SEMI] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), + }, + [741] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(738), + [sym__declaration] = STATE(739), + [sym_function_clause] = STATE(740), + [aux_sym_source_file_repeat1] = STATE(1387), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_in] = ACTIONS(1729), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + [anon_sym_COLON] = ACTIONS(440), + }, + [742] = { + [sym__application] = STATE(1388), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(743), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [743] = { + [sym__expr2] = STATE(1389), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(598), - [sym_set_n] = ACTIONS(598), - [sym_name_at] = ACTIONS(600), - [sym_qualified_name] = ACTIONS(598), - [anon_sym__] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_LBRACE_LBRACE] = ACTIONS(604), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), [sym_comment] = ACTIONS(18), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_Prop] = ACTIONS(598), - [anon_sym_Set] = ACTIONS(598), - [anon_sym_quote] = ACTIONS(598), - [anon_sym_quoteTerm] = ACTIONS(598), - [anon_sym_unquote] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LPAREN_PIPE] = ACTIONS(608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), }, - [477] = { - [ts_builtin_sym_end] = ACTIONS(30), + [744] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(1617), + }, + [745] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(1617), + }, + [746] = { + [sym__layout_semicolon] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -38969,12 +52356,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), @@ -38986,35 +52372,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), }, - [478] = { - [sym_atomic_expr] = STATE(1023), - [sym__atomic_expr_curly] = STATE(490), - [sym__atomic_expr_no_curly] = STATE(490), - [sym_literal] = ACTIONS(610), - [sym_set_n] = ACTIONS(610), - [sym_name_at] = ACTIONS(612), - [sym_qualified_name] = ACTIONS(610), - [anon_sym__] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_LBRACE_LBRACE] = ACTIONS(616), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_Prop] = ACTIONS(610), - [anon_sym_Set] = ACTIONS(610), - [anon_sym_quote] = ACTIONS(610), - [anon_sym_quoteTerm] = ACTIONS(610), - [anon_sym_unquote] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_LPAREN_PIPE] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(610), + [747] = { + [sym_atomic_expr] = STATE(1390), + [sym__atomic_expr_curly] = STATE(759), + [sym__atomic_expr_no_curly] = STATE(759), + [sym_literal] = ACTIONS(936), + [sym_set_n] = ACTIONS(936), + [sym_name_at] = ACTIONS(938), + [sym_qualified_name] = ACTIONS(936), + [anon_sym__] = ACTIONS(936), + [anon_sym_DOT] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_LBRACE_LBRACE] = ACTIONS(942), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(936), + [anon_sym_Prop] = ACTIONS(936), + [anon_sym_Set] = ACTIONS(936), + [anon_sym_quote] = ACTIONS(936), + [anon_sym_quoteTerm] = ACTIONS(936), + [anon_sym_unquote] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_LPAREN_PIPE] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(936), }, - [479] = { - [sym_expr] = STATE(1025), + [748] = { + [sym_expr] = STATE(1392), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -39035,7 +52418,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1731), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -39051,8 +52434,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [480] = { - [sym_expr] = STATE(1026), + [749] = { + [sym_expr] = STATE(1393), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -39074,7 +52457,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1288), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1733), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -39089,20 +52472,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [481] = { - [sym_lambda_bindings] = STATE(1032), - [sym_untyped_bindings] = STATE(1033), - [sym_typed_bindings] = STATE(1033), - [anon_sym_DOT] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1296), + [750] = { + [sym_expr] = STATE(1394), + [sym__expr1] = STATE(707), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(710), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(713), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(714), + [aux_sym__application_repeat1] = STATE(715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(888), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(896), + [anon_sym_forall] = ACTIONS(898), + [anon_sym_let] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [751] = { + [sym_lambda_bindings] = STATE(1400), + [sym_untyped_bindings] = STATE(1401), + [sym_typed_bindings] = STATE(1401), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1739), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1741), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_where] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(1745), }, - [482] = { - [sym_forall_bindings] = STATE(1034), + [752] = { + [sym_forall_bindings] = STATE(1402), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -39114,44 +52534,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [483] = { - [sym__expr1] = STATE(1035), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [753] = { + [sym__expr1] = STATE(1407), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1036), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(1039), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(104), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(1408), + [sym__declaration] = STATE(1409), + [sym_function_clause] = STATE(1410), + [aux_sym_source_file_repeat1] = STATE(1411), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(1747), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), }, - [484] = { - [sym_expr] = STATE(1040), + [754] = { + [sym_expr] = STATE(1414), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -39184,12 +52604,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(1288), + [anon_sym_RPAREN] = ACTIONS(1733), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [485] = { - [sym_expr] = STATE(1041), + [755] = { + [sym_expr] = STATE(1415), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -39225,98 +52645,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [486] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_literal] = ACTIONS(1302), - [sym_set_n] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [sym_name_at] = ACTIONS(1302), - [sym_qualified_name] = ACTIONS(1302), - [anon_sym__] = ACTIONS(1302), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1302), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_BSLASH] = ACTIONS(1302), - [anon_sym_where] = ACTIONS(1302), - [anon_sym_forall] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1302), - [anon_sym_Prop] = ACTIONS(1302), - [anon_sym_Set] = ACTIONS(1302), - [anon_sym_quote] = ACTIONS(1302), - [anon_sym_quoteTerm] = ACTIONS(1302), - [anon_sym_unquote] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LPAREN_PIPE] = ACTIONS(1302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_COLON] = ACTIONS(1302), - [anon_sym_module] = ACTIONS(1302), - [anon_sym_with] = ACTIONS(1302), - }, - [487] = { - [ts_builtin_sym_end] = ACTIONS(158), - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), - [anon_sym_with] = ACTIONS(158), + [756] = { + [sym__layout_semicolon] = ACTIONS(1755), + [anon_sym_SEMI] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1755), + [sym_comment] = ACTIONS(86), }, - [488] = { - [ts_builtin_sym_end] = ACTIONS(160), - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), - [anon_sym_with] = ACTIONS(160), + [757] = { + [sym__layout_semicolon] = ACTIONS(286), + [anon_sym_SEMI] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(286), + [sym_comment] = ACTIONS(86), }, - [489] = { - [ts_builtin_sym_end] = ACTIONS(164), + [758] = { + [sym__layout_semicolon] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -39325,12 +52667,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), [anon_sym_QMARK] = ACTIONS(166), @@ -39342,12 +52683,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), }, - [490] = { - [ts_builtin_sym_end] = ACTIONS(168), + [759] = { + [sym__layout_semicolon] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -39356,12 +52694,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), @@ -39373,72 +52710,541 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), }, - [491] = { - [sym__application] = STATE(1042), - [sym__expr2] = STATE(488), + [760] = { + [sym__expr2] = STATE(1417), + [sym_atomic_expr] = STATE(758), + [sym__atomic_expr_curly] = STATE(759), + [sym__atomic_expr_no_curly] = STATE(759), + [aux_sym__application_repeat1] = STATE(767), + [sym_literal] = ACTIONS(936), + [sym_set_n] = ACTIONS(936), + [sym_name_at] = ACTIONS(938), + [sym_qualified_name] = ACTIONS(936), + [anon_sym__] = ACTIONS(936), + [anon_sym_DOT] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_LBRACE_LBRACE] = ACTIONS(942), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1757), + [anon_sym_BSLASH] = ACTIONS(946), + [anon_sym_forall] = ACTIONS(948), + [anon_sym_let] = ACTIONS(950), + [anon_sym_QMARK] = ACTIONS(936), + [anon_sym_Prop] = ACTIONS(936), + [anon_sym_Set] = ACTIONS(936), + [anon_sym_quote] = ACTIONS(936), + [anon_sym_quoteTerm] = ACTIONS(936), + [anon_sym_unquote] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_LPAREN_PIPE] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(936), + }, + [761] = { + [ts_builtin_sym_end] = ACTIONS(1759), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_rewrite] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), + }, + [762] = { + [sym_expr] = STATE(1418), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [763] = { + [sym_literal] = ACTIONS(1761), + [sym_set_n] = ACTIONS(1761), + [sym_name_at] = ACTIONS(1761), + [sym_qualified_name] = ACTIONS(1761), + [anon_sym__] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1761), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1761), + [anon_sym_BSLASH] = ACTIONS(1761), + [anon_sym_forall] = ACTIONS(1761), + [anon_sym_let] = ACTIONS(1761), + [anon_sym_QMARK] = ACTIONS(1761), + [anon_sym_Prop] = ACTIONS(1761), + [anon_sym_Set] = ACTIONS(1761), + [anon_sym_quote] = ACTIONS(1761), + [anon_sym_quoteTerm] = ACTIONS(1761), + [anon_sym_unquote] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym_LPAREN_PIPE] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1761), + [sym_catchall_pragma] = ACTIONS(1761), + }, + [764] = { + [sym__application] = STATE(1424), + [sym__expr2] = STATE(757), + [sym_atomic_expr] = STATE(758), + [sym__atomic_expr_curly] = STATE(759), + [sym__atomic_expr_no_curly] = STATE(759), + [sym_non_absurd_lambda_clause] = STATE(1425), + [sym_absurd_lambda_clause] = STATE(1425), + [sym_lambda_clause] = STATE(1426), + [aux_sym__application_repeat1] = STATE(1427), + [sym_literal] = ACTIONS(936), + [sym_set_n] = ACTIONS(936), + [sym_name_at] = ACTIONS(1763), + [sym_qualified_name] = ACTIONS(936), + [anon_sym__] = ACTIONS(936), + [anon_sym_DOT] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_LBRACE_LBRACE] = ACTIONS(942), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(1765), + [anon_sym_forall] = ACTIONS(1767), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_QMARK] = ACTIONS(936), + [anon_sym_Prop] = ACTIONS(936), + [anon_sym_Set] = ACTIONS(936), + [anon_sym_quote] = ACTIONS(936), + [anon_sym_quoteTerm] = ACTIONS(936), + [anon_sym_unquote] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_LPAREN_PIPE] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(936), + [sym_catchall_pragma] = ACTIONS(1771), + }, + [765] = { + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_rewrite] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), + }, + [766] = { + [sym__layout_semicolon] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(789), + }, + [767] = { + [sym_atomic_expr] = STATE(1434), + [sym__atomic_expr_curly] = STATE(1435), + [sym__atomic_expr_no_curly] = STATE(1435), + [aux_sym__application_repeat1] = STATE(767), + [sym_literal] = ACTIONS(1775), + [sym_set_n] = ACTIONS(1775), + [sym_name_at] = ACTIONS(1778), + [sym_qualified_name] = ACTIONS(1775), + [anon_sym__] = ACTIONS(1775), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1784), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(707), + [anon_sym_BSLASH] = ACTIONS(707), + [anon_sym_forall] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(1775), + [anon_sym_Prop] = ACTIONS(1775), + [anon_sym_Set] = ACTIONS(1775), + [anon_sym_quote] = ACTIONS(1775), + [anon_sym_quoteTerm] = ACTIONS(1775), + [anon_sym_unquote] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_LPAREN_PIPE] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1775), + }, + [768] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE_RBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + }, + [769] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE_RBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + }, + [770] = { + [anon_sym_RBRACE] = ACTIONS(1793), + [sym_comment] = ACTIONS(86), + }, + [771] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1795), + [sym_comment] = ACTIONS(86), + }, + [772] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(757), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1797), + [anon_sym_COLON] = ACTIONS(757), + }, + [773] = { + [sym_lambda_bindings] = STATE(637), + [sym_untyped_bindings] = STATE(773), + [sym_typed_bindings] = STATE(773), + [anon_sym_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_LBRACE_LBRACE] = ACTIONS(338), + [anon_sym_RBRACE_RBRACE] = ACTIONS(763), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_COLON] = ACTIONS(763), + }, + [774] = { + [sym_expr] = STATE(646), + [sym__expr1] = STATE(1439), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(1440), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(1441), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1078), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [775] = { + [sym_where_clause] = STATE(1445), + [sym_rhs] = STATE(1446), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE_RBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1799), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(1801), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(1803), + }, + [776] = { + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE_RBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + }, + [777] = { + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE_RBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), + }, + [778] = { + [sym__expr1] = STATE(263), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(489), - [sym__atomic_expr_curly] = STATE(490), - [sym__atomic_expr_no_curly] = STATE(490), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(492), - [sym_literal] = ACTIONS(610), - [sym_set_n] = ACTIONS(610), - [sym_name_at] = ACTIONS(612), - [sym_qualified_name] = ACTIONS(610), - [anon_sym__] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_LBRACE_LBRACE] = ACTIONS(616), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(618), - [anon_sym_forall] = ACTIONS(620), - [anon_sym_let] = ACTIONS(622), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_Prop] = ACTIONS(610), - [anon_sym_Set] = ACTIONS(610), - [anon_sym_quote] = ACTIONS(610), - [anon_sym_quoteTerm] = ACTIONS(610), - [anon_sym_unquote] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_LPAREN_PIPE] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(610), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(775), + [sym__declaration] = STATE(776), + [sym_function_clause] = STATE(777), + [aux_sym_source_file_repeat1] = STATE(1447), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(344), + [sym_set_n] = ACTIONS(344), + [sym_name_at] = ACTIONS(346), + [sym_qualified_name] = ACTIONS(344), + [anon_sym__] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [anon_sym_RBRACE_RBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_in] = ACTIONS(1805), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_Prop] = ACTIONS(344), + [anon_sym_Set] = ACTIONS(344), + [anon_sym_quote] = ACTIONS(344), + [anon_sym_quoteTerm] = ACTIONS(344), + [anon_sym_unquote] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LPAREN_PIPE] = ACTIONS(360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [anon_sym_COLON] = ACTIONS(440), }, - [492] = { - [sym__expr2] = STATE(1043), - [sym_atomic_expr] = STATE(489), - [sym__atomic_expr_curly] = STATE(490), - [sym__atomic_expr_no_curly] = STATE(490), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(610), - [sym_set_n] = ACTIONS(610), - [sym_name_at] = ACTIONS(612), - [sym_qualified_name] = ACTIONS(610), - [anon_sym__] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_LBRACE_LBRACE] = ACTIONS(616), + [779] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(1795), + }, + [780] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(1795), + }, + [781] = { + [sym_expr] = STATE(1448), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(618), - [anon_sym_forall] = ACTIONS(620), - [anon_sym_let] = ACTIONS(622), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_Prop] = ACTIONS(610), - [anon_sym_Set] = ACTIONS(610), - [anon_sym_quote] = ACTIONS(610), - [anon_sym_quoteTerm] = ACTIONS(610), - [anon_sym_unquote] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_LPAREN_PIPE] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(610), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [493] = { - [ts_builtin_sym_end] = ACTIONS(30), + [782] = { + [sym_atomic_expr] = STATE(1455), + [sym__atomic_expr_curly] = STATE(1456), + [sym__atomic_expr_no_curly] = STATE(1456), + [aux_sym__application_repeat1] = STATE(782), + [sym_literal] = ACTIONS(1807), + [sym_set_n] = ACTIONS(1807), + [sym_name_at] = ACTIONS(1810), + [sym_qualified_name] = ACTIONS(1807), + [anon_sym__] = ACTIONS(1807), + [anon_sym_DOT] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1816), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(707), + [anon_sym_forall] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(1807), + [anon_sym_Prop] = ACTIONS(1807), + [anon_sym_Set] = ACTIONS(1807), + [anon_sym_quote] = ACTIONS(1807), + [anon_sym_quoteTerm] = ACTIONS(1807), + [anon_sym_unquote] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_LPAREN_PIPE] = ACTIONS(1822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1807), + }, + [783] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -39449,10 +53255,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), @@ -39464,34 +53268,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), }, - [494] = { - [sym_atomic_expr] = STATE(1044), - [sym__atomic_expr_curly] = STATE(506), - [sym__atomic_expr_no_curly] = STATE(506), - [sym_literal] = ACTIONS(628), - [sym_set_n] = ACTIONS(628), - [sym_name_at] = ACTIONS(630), - [sym_qualified_name] = ACTIONS(628), - [anon_sym__] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(630), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LBRACE_LBRACE] = ACTIONS(634), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_Prop] = ACTIONS(628), - [anon_sym_Set] = ACTIONS(628), - [anon_sym_quote] = ACTIONS(628), - [anon_sym_quoteTerm] = ACTIONS(628), - [anon_sym_unquote] = ACTIONS(628), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LPAREN_PIPE] = ACTIONS(644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), + [784] = { + [sym_atomic_expr] = STATE(1457), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), }, - [495] = { - [sym_expr] = STATE(1046), + [785] = { + [sym_expr] = STATE(1459), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -39512,7 +53314,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1825), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -39528,8 +53330,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [496] = { - [sym_expr] = STATE(1047), + [786] = { + [sym_expr] = STATE(1460), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -39551,7 +53353,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1306), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1827), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -39566,20 +53368,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [497] = { - [sym_lambda_bindings] = STATE(1053), - [sym_untyped_bindings] = STATE(1054), - [sym_typed_bindings] = STATE(1054), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1314), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), + [787] = { + [sym_expr] = STATE(1471), + [sym__expr1] = STATE(1472), + [sym__application] = STATE(1473), + [sym__expr2] = STATE(1474), + [sym__atomic_exprs1] = STATE(1475), + [sym_atomic_expr] = STATE(1476), + [sym__atomic_expr_curly] = STATE(1477), + [sym__atomic_expr_no_curly] = STATE(1477), + [sym_tele_arrow] = STATE(1478), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1479), + [aux_sym__application_repeat1] = STATE(1480), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1829), + [sym_set_n] = ACTIONS(1829), + [sym_name_at] = ACTIONS(1831), + [sym_qualified_name] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1837), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1839), + [anon_sym_forall] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(1829), + [anon_sym_Prop] = ACTIONS(1829), + [anon_sym_Set] = ACTIONS(1829), + [anon_sym_quote] = ACTIONS(1829), + [anon_sym_quoteTerm] = ACTIONS(1829), + [anon_sym_unquote] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_LPAREN_PIPE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), }, - [498] = { - [sym_forall_bindings] = STATE(1055), + [788] = { + [sym_lambda_bindings] = STATE(1486), + [sym_untyped_bindings] = STATE(1487), + [sym_typed_bindings] = STATE(1487), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1855), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1859), + }, + [789] = { + [sym_forall_bindings] = STATE(1488), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -39591,44 +53430,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [499] = { - [sym__expr1] = STATE(1056), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [790] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1057), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(1060), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(104), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(1503), + [sym__declaration] = STATE(1504), + [sym_function_clause] = STATE(1505), + [aux_sym_source_file_repeat1] = STATE(1506), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), }, - [500] = { - [sym_expr] = STATE(1061), + [791] = { + [sym_expr] = STATE(1509), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -39661,12 +53500,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(1306), + [anon_sym_RPAREN] = ACTIONS(1827), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [501] = { - [sym_expr] = STATE(1062), + [792] = { + [sym_expr] = STATE(1510), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -39702,95 +53541,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [502] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_literal] = ACTIONS(1320), - [sym_set_n] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_name_at] = ACTIONS(1320), - [sym_qualified_name] = ACTIONS(1320), - [anon_sym__] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1320), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_BSLASH] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_forall] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_Prop] = ACTIONS(1320), - [anon_sym_Set] = ACTIONS(1320), - [anon_sym_quote] = ACTIONS(1320), - [anon_sym_quoteTerm] = ACTIONS(1320), - [anon_sym_unquote] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_LPAREN_PIPE] = ACTIONS(1320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1320), - [anon_sym_COLON] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), + [793] = { + [sym__application] = STATE(1512), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [aux_sym__application_repeat1] = STATE(1513), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1879), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), }, - [503] = { - [ts_builtin_sym_end] = ACTIONS(158), - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), + [794] = { + [sym__layout_semicolon] = ACTIONS(956), + [sym__layout_close_brace] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [sym_comment] = ACTIONS(86), }, - [504] = { - [ts_builtin_sym_end] = ACTIONS(160), - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), + [795] = { + [sym__layout_semicolon] = ACTIONS(286), + [sym__layout_close_brace] = ACTIONS(286), + [anon_sym_SEMI] = ACTIONS(286), + [sym_comment] = ACTIONS(86), }, - [505] = { - [ts_builtin_sym_end] = ACTIONS(164), + [796] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -39801,10 +53596,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(166), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), [anon_sym_QMARK] = ACTIONS(166), @@ -39816,11 +53609,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), }, - [506] = { - [ts_builtin_sym_end] = ACTIONS(168), + [797] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -39831,10 +53623,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), @@ -39846,202 +53636,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), }, - [507] = { - [sym__application] = STATE(1063), - [sym__expr2] = STATE(504), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(505), - [sym__atomic_expr_curly] = STATE(506), - [sym__atomic_expr_no_curly] = STATE(506), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(508), - [sym_literal] = ACTIONS(628), - [sym_set_n] = ACTIONS(628), - [sym_name_at] = ACTIONS(630), - [sym_qualified_name] = ACTIONS(628), - [anon_sym__] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(630), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LBRACE_LBRACE] = ACTIONS(634), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(636), - [anon_sym_forall] = ACTIONS(638), - [anon_sym_let] = ACTIONS(640), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_Prop] = ACTIONS(628), - [anon_sym_Set] = ACTIONS(628), - [anon_sym_quote] = ACTIONS(628), - [anon_sym_quoteTerm] = ACTIONS(628), - [anon_sym_unquote] = ACTIONS(628), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LPAREN_PIPE] = ACTIONS(644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), + [798] = { + [sym__layout_semicolon] = ACTIONS(1881), + [sym__layout_close_brace] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [sym_comment] = ACTIONS(86), }, - [508] = { - [sym__expr2] = STATE(1064), - [sym_atomic_expr] = STATE(505), - [sym__atomic_expr_curly] = STATE(506), - [sym__atomic_expr_no_curly] = STATE(506), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(628), - [sym_set_n] = ACTIONS(628), - [sym_name_at] = ACTIONS(630), - [sym_qualified_name] = ACTIONS(628), - [anon_sym__] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(630), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LBRACE_LBRACE] = ACTIONS(634), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(636), - [anon_sym_forall] = ACTIONS(638), - [anon_sym_let] = ACTIONS(640), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_Prop] = ACTIONS(628), - [anon_sym_Set] = ACTIONS(628), - [anon_sym_quote] = ACTIONS(628), - [anon_sym_quoteTerm] = ACTIONS(628), - [anon_sym_unquote] = ACTIONS(628), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LPAREN_PIPE] = ACTIONS(644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), + [799] = { + [sym_semi] = STATE(1514), + [aux_sym_lambda_where_clauses_repeat1] = STATE(1515), + [sym__layout_semicolon] = ACTIONS(968), + [sym__layout_close_brace] = ACTIONS(1883), + [anon_sym_SEMI] = ACTIONS(968), + [sym_comment] = ACTIONS(86), }, - [509] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_literal] = ACTIONS(1322), - [sym_set_n] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [sym_name_at] = ACTIONS(1322), - [sym_qualified_name] = ACTIONS(1322), - [anon_sym__] = ACTIONS(1322), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1322), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_BSLASH] = ACTIONS(1322), - [anon_sym_where] = ACTIONS(1322), - [anon_sym_forall] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_Prop] = ACTIONS(1322), - [anon_sym_Set] = ACTIONS(1322), - [anon_sym_quote] = ACTIONS(1322), - [anon_sym_quoteTerm] = ACTIONS(1322), - [anon_sym_unquote] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_LPAREN_PIPE] = ACTIONS(1322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_module] = ACTIONS(1322), + [800] = { + [sym_vclose] = STATE(1517), + [sym__layout_close_brace] = ACTIONS(1885), + [sym_comment] = ACTIONS(86), }, - [510] = { - [ts_builtin_sym_end] = ACTIONS(30), - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), + [801] = { + [sym__expr2] = STATE(1518), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [aux_sym__application_repeat1] = STATE(767), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1879), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), }, - [511] = { - [sym_atomic_expr] = STATE(1068), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(652), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1326), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), + [802] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1887), + [anon_sym_COLON] = ACTIONS(757), }, - [512] = { - [sym_atomic_expr] = STATE(1068), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(652), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1332), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), + [803] = { + [sym_lambda_bindings] = STATE(586), + [sym_untyped_bindings] = STATE(803), + [sym_typed_bindings] = STATE(803), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_COLON] = ACTIONS(763), }, - [513] = { - [sym_expr] = STATE(1073), - [sym__expr1] = STATE(38), - [sym__application] = STATE(170), + [804] = { + [sym_expr] = STATE(592), + [sym__expr1] = STATE(1525), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), + [sym__atomic_exprs1] = STATE(1526), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(44), + [sym_tele_arrow] = STATE(1527), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), + [aux_sym__expr1_repeat1] = STATE(1528), + [aux_sym__application_repeat1] = STATE(1529), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), + [sym_name_at] = ACTIONS(1889), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(1891), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(1336), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), + [anon_sym_BSLASH] = ACTIONS(1893), + [anon_sym_forall] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1897), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -40052,58 +53740,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [514] = { - [sym_expr] = STATE(1074), - [sym__expr1] = STATE(60), - [sym__application] = STATE(185), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1338), + [805] = { + [sym_atomic_expr] = STATE(374), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(1006), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [515] = { - [sym_lambda_bindings] = STATE(1080), - [sym_untyped_bindings] = STATE(1081), - [sym_typed_bindings] = STATE(1081), - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1346), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1350), + [806] = { + [sym_lambda_bindings] = STATE(1530), + [sym_untyped_bindings] = STATE(1531), + [sym_typed_bindings] = STATE(1531), + [anon_sym_DOT] = ACTIONS(504), + [anon_sym_DOT_DOT] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(510), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(514), }, - [516] = { - [sym_forall_bindings] = STATE(1082), + [807] = { + [sym_forall_bindings] = STATE(1532), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -40115,32 +53788,192 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [517] = { - [sym__expr1] = STATE(1056), + [808] = { + [sym__expr1] = STATE(93), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(98), + [sym__declaration] = STATE(99), + [sym_function_clause] = STATE(100), + [aux_sym_source_file_repeat1] = STATE(1533), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(1006), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [809] = { + [sym_rewrite_equations] = STATE(1536), + [sym_with_expressions] = STATE(603), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_in] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(1899), + [anon_sym_with] = ACTIONS(1901), + }, + [810] = { + [sym_where_clause] = STATE(1445), + [sym_rhs] = STATE(1446), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1903), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(1801), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(1803), + }, + [811] = { + [sym__expr1] = STATE(809), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1083), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(1086), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), + [sym_lhs] = STATE(810), + [sym__declaration] = STATE(776), + [sym_function_clause] = STATE(777), + [aux_sym_source_file_repeat1] = STATE(1538), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(1006), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_in] = ACTIONS(1905), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_COLON] = ACTIONS(440), + }, + [812] = { + [sym__application] = STATE(399), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(1006), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [813] = { + [sym__expr2] = STATE(400), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [aux_sym__application_repeat1] = STATE(147), [sym_literal] = ACTIONS(102), [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(104), + [sym_name_at] = ACTIONS(1006), [sym_qualified_name] = ACTIONS(102), [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(104), + [anon_sym_DOT] = ACTIONS(1006), [anon_sym_LBRACE] = ACTIONS(106), [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), [anon_sym_QMARK] = ACTIONS(102), [anon_sym_Prop] = ACTIONS(102), [anon_sym_Set] = ACTIONS(102), @@ -40151,33 +53984,167 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(118), [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [518] = { - [sym_expr] = STATE(1087), + [814] = { + [sym_expr] = STATE(1539), [sym__expr1] = STATE(110), - [sym__application] = STATE(213), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [815] = { + [anon_sym_RBRACE] = ACTIONS(958), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(960), + }, + [816] = { + [anon_sym_RBRACE] = ACTIONS(1907), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1326), + }, + [817] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1907), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1328), + }, + [818] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(1907), + }, + [819] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + }, + [820] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + }, + [821] = { + [anon_sym_RBRACE] = ACTIONS(1909), + [sym_comment] = ACTIONS(86), + }, + [822] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1911), + [sym_comment] = ACTIONS(86), + }, + [823] = { + [anon_sym_RBRACE] = ACTIONS(757), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1913), + [anon_sym_COLON] = ACTIONS(757), + }, + [824] = { + [sym_lambda_bindings] = STATE(586), + [sym_untyped_bindings] = STATE(824), + [sym_typed_bindings] = STATE(824), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_COLON] = ACTIONS(763), + }, + [825] = { + [sym_expr] = STATE(592), + [sym__expr1] = STATE(1544), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(1545), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(112), + [sym_tele_arrow] = STATE(1546), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), + [aux_sym__expr1_repeat1] = STATE(1064), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), + [sym_name_at] = ACTIONS(208), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -40185,395 +54152,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(1338), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [519] = { - [sym_expr] = STATE(1088), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [520] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - }, - [521] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1354), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [522] = { - [ts_builtin_sym_end] = ACTIONS(158), - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), - }, - [523] = { - [ts_builtin_sym_end] = ACTIONS(160), - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), - }, - [524] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(162), - }, - [525] = { - [ts_builtin_sym_end] = ACTIONS(164), - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_module] = ACTIONS(164), - }, - [526] = { - [ts_builtin_sym_end] = ACTIONS(168), - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - }, - [527] = { - [sym_expr] = STATE(1090), - [sym__expr1] = STATE(521), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(524), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(527), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(528), - [aux_sym__application_repeat1] = STATE(529), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(652), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(660), - [anon_sym_forall] = ACTIONS(662), - [anon_sym_let] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), - }, - [528] = { - [sym__application] = STATE(1097), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1098), - [sym__atomic_expr_curly] = STATE(1099), - [sym__atomic_expr_no_curly] = STATE(1099), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(1100), - [sym_literal] = ACTIONS(1358), - [sym_set_n] = ACTIONS(1358), - [sym_name_at] = ACTIONS(1360), - [sym_qualified_name] = ACTIONS(1358), - [anon_sym__] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1364), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(660), - [anon_sym_forall] = ACTIONS(662), - [anon_sym_let] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_Prop] = ACTIONS(1358), - [anon_sym_Set] = ACTIONS(1358), - [anon_sym_quote] = ACTIONS(1358), - [anon_sym_quoteTerm] = ACTIONS(1358), - [anon_sym_unquote] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LPAREN_PIPE] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1358), - }, - [529] = { - [sym__expr2] = STATE(1101), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(652), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1326), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(660), - [anon_sym_forall] = ACTIONS(662), - [anon_sym_let] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), - }, - [530] = { - [sym_atomic_expr] = STATE(24), - [sym__atomic_expr_curly] = STATE(17), - [sym__atomic_expr_no_curly] = STATE(17), - [sym_literal] = ACTIONS(10), - [sym_set_n] = ACTIONS(10), - [sym_name_at] = ACTIONS(672), - [sym_qualified_name] = ACTIONS(10), - [anon_sym__] = ACTIONS(10), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(14), - [anon_sym_LBRACE_LBRACE] = ACTIONS(16), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(10), - [anon_sym_Prop] = ACTIONS(10), - [anon_sym_Set] = ACTIONS(10), - [anon_sym_quote] = ACTIONS(10), - [anon_sym_quoteTerm] = ACTIONS(10), - [anon_sym_unquote] = ACTIONS(10), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LPAREN_PIPE] = ACTIONS(28), - [anon_sym_DOT_DOT_DOT] = ACTIONS(10), - }, - [531] = { - [sym_rewrite_equations] = STATE(1104), - [sym_with_expressions] = STATE(136), - [ts_builtin_sym_end] = ACTIONS(152), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(1370), - [anon_sym_with] = ACTIONS(1372), - }, - [532] = { - [sym_where_clause] = STATE(141), - [sym_rhs] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(170), + [826] = { + [sym_where_clause] = STATE(1550), + [sym_rhs] = STATE(1551), [sym_literal] = ACTIONS(170), [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), [sym_name_at] = ACTIONS(170), [sym_qualified_name] = ACTIONS(170), [anon_sym__] = ACTIONS(170), [anon_sym_DOT] = ACTIONS(170), [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(170), [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1374), + [anon_sym_EQ] = ACTIONS(1915), [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(174), + [anon_sym_where] = ACTIONS(1917), [anon_sym_forall] = ACTIONS(170), [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), [anon_sym_QMARK] = ACTIONS(170), [anon_sym_Prop] = ACTIONS(170), [anon_sym_Set] = ACTIONS(170), @@ -40583,200 +54183,124 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(170), [anon_sym_LPAREN_PIPE] = ACTIONS(170), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1374), - [anon_sym_module] = ACTIONS(176), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(1919), }, - [533] = { - [sym_semi] = STATE(1107), - [aux_sym__declarations1_repeat1] = STATE(1108), - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [827] = { + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - }, - [534] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), }, - [535] = { - [sym__application] = STATE(144), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(16), - [sym__atomic_expr_curly] = STATE(17), - [sym__atomic_expr_no_curly] = STATE(17), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(536), - [sym_literal] = ACTIONS(10), - [sym_set_n] = ACTIONS(10), - [sym_name_at] = ACTIONS(672), - [sym_qualified_name] = ACTIONS(10), - [anon_sym__] = ACTIONS(10), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(14), - [anon_sym_LBRACE_LBRACE] = ACTIONS(16), + [828] = { + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(10), - [anon_sym_Prop] = ACTIONS(10), - [anon_sym_Set] = ACTIONS(10), - [anon_sym_quote] = ACTIONS(10), - [anon_sym_quoteTerm] = ACTIONS(10), - [anon_sym_unquote] = ACTIONS(10), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LPAREN_PIPE] = ACTIONS(28), - [anon_sym_DOT_DOT_DOT] = ACTIONS(10), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), }, - [536] = { - [sym__expr2] = STATE(146), - [sym_atomic_expr] = STATE(16), - [sym__atomic_expr_curly] = STATE(17), - [sym__atomic_expr_no_curly] = STATE(17), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(10), - [sym_set_n] = ACTIONS(10), - [sym_name_at] = ACTIONS(672), - [sym_qualified_name] = ACTIONS(10), - [anon_sym__] = ACTIONS(10), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(14), - [anon_sym_LBRACE_LBRACE] = ACTIONS(16), + [829] = { + [sym__expr1] = STATE(200), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(826), + [sym__declaration] = STATE(827), + [sym_function_clause] = STATE(828), + [aux_sym_source_file_repeat1] = STATE(1552), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(260), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(10), - [anon_sym_Prop] = ACTIONS(10), - [anon_sym_Set] = ACTIONS(10), - [anon_sym_quote] = ACTIONS(10), - [anon_sym_quoteTerm] = ACTIONS(10), - [anon_sym_unquote] = ACTIONS(10), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LPAREN_PIPE] = ACTIONS(28), - [anon_sym_DOT_DOT_DOT] = ACTIONS(10), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_in] = ACTIONS(1921), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_COLON] = ACTIONS(440), }, - [537] = { + [830] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1382), + [anon_sym_RPAREN] = ACTIONS(1911), }, - [538] = { + [831] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1384), - }, - [539] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - }, - [540] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_PIPE_RPAREN] = ACTIONS(1911), }, - [541] = { - [sym_atomic_expr] = STATE(1110), - [sym__atomic_expr_curly] = STATE(547), - [sym__atomic_expr_no_curly] = STATE(547), - [sym_literal] = ACTIONS(1388), - [sym_set_n] = ACTIONS(1388), - [sym_name_at] = ACTIONS(1390), - [sym_qualified_name] = ACTIONS(1388), - [anon_sym__] = ACTIONS(1388), - [anon_sym_DOT] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_Prop] = ACTIONS(1388), - [anon_sym_Set] = ACTIONS(1388), - [anon_sym_quote] = ACTIONS(1388), - [anon_sym_quoteTerm] = ACTIONS(1388), - [anon_sym_unquote] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_LPAREN_PIPE] = ACTIONS(1398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [832] = { + [anon_sym_DOT] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1925), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1925), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_RPAREN] = ACTIONS(1925), + [anon_sym_PIPE_RPAREN] = ACTIONS(1925), + [anon_sym_COLON] = ACTIONS(1925), }, - [542] = { - [sym_expr] = STATE(1112), + [833] = { + [sym_expr] = STATE(841), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -40797,7 +54321,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1034), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -40813,8 +54337,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [543] = { - [sym_expr] = STATE(1113), + [834] = { + [sym_expr] = STATE(842), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -40836,7 +54360,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1402), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1036), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -40851,8 +54375,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [544] = { - [sym_expr] = STATE(1114), + [835] = { + [sym_expr] = STATE(843), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -40885,12 +54409,788 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1036), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [545] = { - [sym_expr] = STATE(1115), + [836] = { + [ts_builtin_sym_end] = ACTIONS(186), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_rewrite] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), + }, + [837] = { + [sym_expr] = STATE(841), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [838] = { + [sym_expr] = STATE(842), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1036), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [839] = { + [sym_expr] = STATE(843), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [840] = { + [ts_builtin_sym_end] = ACTIONS(228), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_rewrite] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), + }, + [841] = { + [anon_sym_RBRACE] = ACTIONS(1927), + [sym_comment] = ACTIONS(86), + }, + [842] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1929), + [sym_comment] = ACTIONS(86), + }, + [843] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(1929), + }, + [844] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(1929), + }, + [845] = { + [sym_expr] = STATE(1555), + [sym__expr1] = STATE(366), + [sym__application] = STATE(13), + [sym__expr2] = STATE(14), + [sym__atomic_exprs1] = STATE(367), + [sym_atomic_expr] = STATE(368), + [sym__atomic_expr_curly] = STATE(369), + [sym__atomic_expr_no_curly] = STATE(369), + [sym_tele_arrow] = STATE(370), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(22), + [aux_sym__application_repeat1] = STATE(371), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(478), + [sym_set_n] = ACTIONS(478), + [sym_name_at] = ACTIONS(480), + [sym_qualified_name] = ACTIONS(478), + [anon_sym__] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(20), + [anon_sym_forall] = ACTIONS(22), + [anon_sym_let] = ACTIONS(24), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_Prop] = ACTIONS(478), + [anon_sym_Set] = ACTIONS(478), + [anon_sym_quote] = ACTIONS(478), + [anon_sym_quoteTerm] = ACTIONS(478), + [anon_sym_unquote] = ACTIONS(478), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_LPAREN_PIPE] = ACTIONS(490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + }, + [846] = { + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_rewrite] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), + }, + [847] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_rewrite] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [848] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_rewrite] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [849] = { + [sym__application] = STATE(1556), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [850] = { + [sym__application] = STATE(1557), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [851] = { + [sym_binding_name] = STATE(1558), + [sym__application] = STATE(1559), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [852] = { + [ts_builtin_sym_end] = ACTIONS(882), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + [anon_sym_rewrite] = ACTIONS(882), + [anon_sym_with] = ACTIONS(882), + }, + [853] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(1933), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1935), + }, + [854] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(1937), + [sym_comment] = ACTIONS(86), + }, + [855] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(1933), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1939), + }, + [856] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(1564), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [857] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(1933), + }, + [858] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1941), + }, + [859] = { + [sym_expr] = STATE(1562), + [sym__expr1] = STATE(869), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(870), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(873), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(874), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1089), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1091), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [860] = { + [sym__application] = STATE(1566), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(1075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [861] = { + [ts_builtin_sym_end] = ACTIONS(30), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_RPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_rewrite] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), + }, + [862] = { + [sym_atomic_expr] = STATE(1570), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1089), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1945), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [863] = { + [sym_atomic_expr] = STATE(1570), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1089), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1951), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [864] = { + [sym_expr] = STATE(1575), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [865] = { + [sym_expr] = STATE(1576), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1957), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [866] = { + [sym_expr] = STATE(1577), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(1957), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [867] = { + [sym_expr] = STATE(1578), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -40926,7 +55226,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [546] = { + [868] = { + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_rewrite] = ACTIONS(1038), + [anon_sym_with] = ACTIONS(1038), + }, + [869] = { + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1959), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_rewrite] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), + }, + [870] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1961), + [anon_sym_PIPE] = ACTIONS(162), + }, + [871] = { + [ts_builtin_sym_end] = ACTIONS(164), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [sym_name_at] = ACTIONS(166), @@ -40934,9 +55304,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -40944,10 +55322,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(166), [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(164), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_rewrite] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [547] = { + [872] = { + [ts_builtin_sym_end] = ACTIONS(168), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [sym_name_at] = ACTIONS(168), @@ -40955,9 +55339,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -40965,109 +55357,381 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(168), [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_rewrite] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [548] = { - [sym_atomic_expr] = STATE(546), - [sym__atomic_expr_curly] = STATE(547), - [sym__atomic_expr_no_curly] = STATE(547), - [aux_sym__application_repeat1] = STATE(1116), - [sym_literal] = ACTIONS(1388), - [sym_set_n] = ACTIONS(1388), - [sym_name_at] = ACTIONS(1390), - [sym_qualified_name] = ACTIONS(1388), - [anon_sym__] = ACTIONS(1388), - [anon_sym_DOT] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), + [873] = { + [sym_expr] = STATE(1580), + [sym__expr1] = STATE(869), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(870), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(873), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(874), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1089), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1091), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_Prop] = ACTIONS(1388), - [anon_sym_Set] = ACTIONS(1388), - [anon_sym_quote] = ACTIONS(1388), - [anon_sym_quoteTerm] = ACTIONS(1388), - [anon_sym_unquote] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_LPAREN_PIPE] = ACTIONS(1398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), }, - [549] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [874] = { + [sym__expr2] = STATE(400), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1089), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1945), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), }, - [550] = { - [sym_atomic_expr] = STATE(1117), - [sym__atomic_expr_curly] = STATE(556), - [sym__atomic_expr_no_curly] = STATE(556), - [sym_literal] = ACTIONS(1404), - [sym_set_n] = ACTIONS(1404), - [sym_name_at] = ACTIONS(1406), - [sym_qualified_name] = ACTIONS(1404), - [anon_sym__] = ACTIONS(1404), - [anon_sym_DOT] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1410), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_Prop] = ACTIONS(1404), - [anon_sym_Set] = ACTIONS(1404), - [anon_sym_quote] = ACTIONS(1404), - [anon_sym_quoteTerm] = ACTIONS(1404), - [anon_sym_unquote] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_LPAREN_PIPE] = ACTIONS(1414), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [875] = { + [ts_builtin_sym_end] = ACTIONS(1194), + [sym_literal] = ACTIONS(1194), + [sym_set_n] = ACTIONS(1194), + [sym_name_at] = ACTIONS(1194), + [sym_qualified_name] = ACTIONS(1194), + [anon_sym__] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1194), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1194), + [anon_sym_where] = ACTIONS(1194), + [anon_sym_forall] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_in] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(1194), + [anon_sym_Prop] = ACTIONS(1194), + [anon_sym_Set] = ACTIONS(1194), + [anon_sym_quote] = ACTIONS(1194), + [anon_sym_quoteTerm] = ACTIONS(1194), + [anon_sym_unquote] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_RPAREN] = ACTIONS(1194), + [anon_sym_LPAREN_PIPE] = ACTIONS(1194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_rewrite] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), }, - [551] = { - [sym_expr] = STATE(1119), - [sym__expr1] = STATE(38), + [876] = { + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_rewrite] = ACTIONS(1212), + [anon_sym_with] = ACTIONS(1212), + }, + [877] = { + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_rewrite] = ACTIONS(1214), + [anon_sym_with] = ACTIONS(1214), + }, + [878] = { + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_RPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + [anon_sym_rewrite] = ACTIONS(1244), + [anon_sym_with] = ACTIONS(1244), + }, + [879] = { + [sym_vclose] = STATE(1582), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(1583), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(1963), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [880] = { + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_RPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), + [anon_sym_rewrite] = ACTIONS(1284), + [anon_sym_with] = ACTIONS(1284), + }, + [881] = { + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_rewrite] = ACTIONS(1286), + [anon_sym_with] = ACTIONS(1286), + }, + [882] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(1965), + }, + [883] = { + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), + [anon_sym_rewrite] = ACTIONS(1292), + [anon_sym_with] = ACTIONS(1292), + }, + [884] = { + [sym_expr] = STATE(1086), + [sym__expr1] = STATE(885), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), + [sym__atomic_exprs1] = STATE(886), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), + [sym_tele_arrow] = STATE(887), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), + [sym_name_at] = ACTIONS(120), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(1416), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -41078,54 +55742,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [552] = { - [sym_expr] = STATE(1120), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1418), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [885] = { + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1967), + [anon_sym_RPAREN] = ACTIONS(280), }, - [553] = { - [sym_expr] = STATE(1121), - [sym__expr1] = STATE(110), + [886] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(162), + }, + [887] = { + [sym_expr] = STATE(218), + [sym__expr1] = STATE(885), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), + [sym__atomic_exprs1] = STATE(886), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), + [sym_tele_arrow] = STATE(887), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), [aux_sym__application_repeat1] = STATE(114), @@ -41150,20 +55786,440 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(1418), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [554] = { - [sym_expr] = STATE(1122), - [sym__expr1] = STATE(126), + [888] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1969), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [889] = { + [sym_lambda_bindings] = STATE(852), + [sym_untyped_bindings] = STATE(889), + [sym_typed_bindings] = STATE(889), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1083), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_RPAREN] = ACTIONS(444), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_rewrite] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), + }, + [890] = { + [sym_expr] = STATE(868), + [sym__expr1] = STATE(1589), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(1590), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(1591), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(1592), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1971), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [891] = { + [sym__expr1] = STATE(93), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(98), + [sym__declaration] = STATE(99), + [sym_function_clause] = STATE(100), + [aux_sym_source_file_repeat1] = STATE(1596), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [892] = { + [sym__expr1] = STATE(1109), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [aux_sym__expr1_repeat1] = STATE(1601), + [aux_sym__application_repeat1] = STATE(1602), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(1975), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1977), + [anon_sym_forall] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + }, + [893] = { + [sym__expr1] = STATE(1125), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1128), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), + [aux_sym__expr1_repeat1] = STATE(1607), + [aux_sym__application_repeat1] = STATE(1608), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(1983), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1985), + [anon_sym_forall] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + }, + [894] = { + [sym_with_expressions] = STATE(1132), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(1134), + }, + [895] = { + [sym_expr] = STATE(1143), + [sym__expr1] = STATE(1614), + [sym__application] = STATE(1145), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(1615), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_tele_arrow] = STATE(1616), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1617), + [aux_sym__application_repeat1] = STATE(1618), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1991), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1993), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1995), + [anon_sym_forall] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), + }, + [896] = { + [sym__expr1] = STATE(408), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(409), + [sym__declaration] = STATE(202), + [sym_function_clause] = STATE(203), + [aux_sym_source_file_repeat1] = STATE(896), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(2001), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2004), + [anon_sym_forall] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + }, + [897] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_PIPE_RPAREN] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + }, + [898] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_PIPE_RPAREN] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + }, + [899] = { + [sym_expr] = STATE(1086), + [sym__expr1] = STATE(900), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), + [sym__atomic_exprs1] = STATE(901), [sym_atomic_expr] = STATE(128), [sym__atomic_expr_curly] = STATE(129), [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), + [sym_tele_arrow] = STATE(902), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [900] = { + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2013), + [anon_sym_PIPE_RPAREN] = ACTIONS(280), + }, + [901] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(2013), + [anon_sym_PIPE] = ACTIONS(162), + }, + [902] = { + [sym_expr] = STATE(218), + [sym__expr1] = STATE(900), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(901), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(902), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(131), [aux_sym__application_repeat1] = STATE(132), @@ -41191,211 +56247,811 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [555] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [903] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_PIPE_RPAREN] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_rewrite] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), + }, + [904] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_PIPE_RPAREN] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_rewrite] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), + }, + [905] = { + [anon_sym_RBRACE] = ACTIONS(2015), + [sym_comment] = ACTIONS(86), + }, + [906] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2017), + [sym_comment] = ACTIONS(86), + }, + [907] = { + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2021), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(2023), + }, + [908] = { + [sym__application] = STATE(1626), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(1627), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(2025), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), + }, + [909] = { + [sym__application] = STATE(1628), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2025), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [910] = { + [sym_vopen] = STATE(1629), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), + }, + [911] = { + [sym_binding_name] = STATE(1630), + [sym__application] = STATE(1631), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(2025), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [912] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2027), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_PIPE_RPAREN] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [913] = { + [sym_lambda_bindings] = STATE(1625), + [sym_untyped_bindings] = STATE(913), + [sym_typed_bindings] = STATE(913), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_DOT_DOT] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2033), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_PIPE_RPAREN] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_rewrite] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), + }, + [914] = { + [sym_expr] = STATE(1641), + [sym__expr1] = STATE(1642), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(1643), + [sym_atomic_expr] = STATE(1644), + [sym__atomic_expr_curly] = STATE(1645), + [sym__atomic_expr_no_curly] = STATE(1645), + [sym_tele_arrow] = STATE(1646), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(1647), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2037), + [sym_set_n] = ACTIONS(2037), + [sym_name_at] = ACTIONS(2039), + [sym_qualified_name] = ACTIONS(2037), + [anon_sym__] = ACTIONS(2037), + [anon_sym_DOT] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2043), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2045), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(2037), + [anon_sym_Prop] = ACTIONS(2037), + [anon_sym_Set] = ACTIONS(2037), + [anon_sym_quote] = ACTIONS(2037), + [anon_sym_quoteTerm] = ACTIONS(2037), + [anon_sym_unquote] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_LPAREN_PIPE] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2037), + }, + [915] = { + [sym_rewrite_equations] = STATE(1650), + [sym_with_expressions] = STATE(1651), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_in] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_PIPE_RPAREN] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(152), + [anon_sym_with] = ACTIONS(152), + }, + [916] = { + [sym_where_clause] = STATE(1655), + [sym_rhs] = STATE(1656), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(170), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_PIPE_RPAREN] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(170), + [anon_sym_rewrite] = ACTIONS(170), + [anon_sym_with] = ACTIONS(170), + }, + [917] = { + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_PIPE_RPAREN] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), + [anon_sym_rewrite] = ACTIONS(178), + [anon_sym_with] = ACTIONS(178), }, - [556] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [918] = { + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_PIPE_RPAREN] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), + [anon_sym_rewrite] = ACTIONS(180), + [anon_sym_with] = ACTIONS(180), }, - [557] = { - [anon_sym_RBRACE] = ACTIONS(284), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_COLON] = ACTIONS(1420), + [919] = { + [sym__expr1] = STATE(915), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_lhs] = STATE(916), + [sym__declaration] = STATE(917), + [sym_function_clause] = STATE(918), + [aux_sym_source_file_repeat1] = STATE(1657), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_PIPE_RPAREN] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [558] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(284), + [920] = { [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_COLON] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(2017), }, - [559] = { + [921] = { [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_RPAREN] = ACTIONS(284), - [anon_sym_COLON] = ACTIONS(1424), + [anon_sym_PIPE_RPAREN] = ACTIONS(2017), }, - [560] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1420), + [922] = { + [sym__expr1] = STATE(1667), + [sym__application] = STATE(1668), + [sym__expr2] = STATE(1669), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1670), + [sym__atomic_expr_curly] = STATE(1671), + [sym__atomic_expr_no_curly] = STATE(1671), + [aux_sym__expr1_repeat1] = STATE(1672), + [aux_sym__application_repeat1] = STATE(1673), + [sym_literal] = ACTIONS(2051), + [sym_set_n] = ACTIONS(2051), + [sym_name_at] = ACTIONS(2053), + [sym_qualified_name] = ACTIONS(2051), + [anon_sym__] = ACTIONS(2051), + [anon_sym_DOT] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2057), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_forall] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_QMARK] = ACTIONS(2051), + [anon_sym_Prop] = ACTIONS(2051), + [anon_sym_Set] = ACTIONS(2051), + [anon_sym_quote] = ACTIONS(2051), + [anon_sym_quoteTerm] = ACTIONS(2051), + [anon_sym_unquote] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LPAREN_PIPE] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2051), }, - [561] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1422), + [923] = { + [sym__expr1] = STATE(1683), + [sym__application] = STATE(1684), + [sym__expr2] = STATE(1685), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1686), + [sym__atomic_expr_curly] = STATE(1687), + [sym__atomic_expr_no_curly] = STATE(1687), + [aux_sym__expr1_repeat1] = STATE(1688), + [aux_sym__application_repeat1] = STATE(1689), + [sym_literal] = ACTIONS(2069), + [sym_set_n] = ACTIONS(2069), + [sym_name_at] = ACTIONS(2071), + [sym_qualified_name] = ACTIONS(2069), + [anon_sym__] = ACTIONS(2069), + [anon_sym_DOT] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2075), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2077), + [anon_sym_forall] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_QMARK] = ACTIONS(2069), + [anon_sym_Prop] = ACTIONS(2069), + [anon_sym_Set] = ACTIONS(2069), + [anon_sym_quote] = ACTIONS(2069), + [anon_sym_quoteTerm] = ACTIONS(2069), + [anon_sym_unquote] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_LPAREN_PIPE] = ACTIONS(2085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2069), }, - [562] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1424), + [924] = { + [sym_with_expressions] = STATE(1690), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_PIPE_RPAREN] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(1164), }, - [563] = { - [sym_expr] = STATE(571), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [925] = { + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_PIPE_RPAREN] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), }, - [564] = { - [sym_expr] = STATE(572), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), + [926] = { + [sym_expr] = STATE(1701), + [sym__expr1] = STATE(1702), + [sym__application] = STATE(1703), + [sym__expr2] = STATE(1704), + [sym__atomic_exprs1] = STATE(1705), + [sym_atomic_expr] = STATE(1706), + [sym__atomic_expr_curly] = STATE(1707), + [sym__atomic_expr_no_curly] = STATE(1707), + [sym_tele_arrow] = STATE(1708), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(765), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [aux_sym__expr1_repeat1] = STATE(1709), + [aux_sym__application_repeat1] = STATE(1710), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2087), + [sym_set_n] = ACTIONS(2087), + [sym_name_at] = ACTIONS(2089), + [sym_qualified_name] = ACTIONS(2087), + [anon_sym__] = ACTIONS(2087), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2097), + [anon_sym_forall] = ACTIONS(2099), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_QMARK] = ACTIONS(2087), + [anon_sym_Prop] = ACTIONS(2087), + [anon_sym_Set] = ACTIONS(2087), + [anon_sym_quote] = ACTIONS(2087), + [anon_sym_quoteTerm] = ACTIONS(2087), + [anon_sym_unquote] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_LPAREN_PIPE] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2087), }, - [565] = { - [sym_expr] = STATE(581), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [927] = { + [sym_vopen] = STATE(1711), + [sym_declarations] = STATE(1712), + [sym__declarations0] = STATE(1713), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [928] = { + [sym_anonymous_name] = STATE(1714), + [sym_name] = ACTIONS(2107), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [566] = { + [929] = { + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_PIPE_RPAREN] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + }, + [930] = { + [sym_where_clause] = STATE(1715), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(1166), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_PIPE_RPAREN] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(1170), + }, + [931] = { + [sym__expr1] = STATE(438), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_lhs] = STATE(443), + [sym__declaration] = STATE(444), + [sym_function_clause] = STATE(445), + [aux_sym_source_file_repeat1] = STATE(931), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(2109), + [sym_set_n] = ACTIONS(2109), + [sym_name_at] = ACTIONS(2112), + [sym_qualified_name] = ACTIONS(2109), + [anon_sym__] = ACTIONS(2109), + [anon_sym_DOT] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2118), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2121), + [anon_sym_forall] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2109), + [anon_sym_Prop] = ACTIONS(2109), + [anon_sym_Set] = ACTIONS(2109), + [anon_sym_quote] = ACTIONS(2109), + [anon_sym_quoteTerm] = ACTIONS(2109), + [anon_sym_unquote] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2130), + [anon_sym_LPAREN_PIPE] = ACTIONS(2133), + [anon_sym_PIPE_RPAREN] = ACTIONS(644), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2109), + }, + [932] = { + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_PIPE_RPAREN] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_rewrite] = ACTIONS(673), + [anon_sym_with] = ACTIONS(673), + }, + [933] = { + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_PIPE_RPAREN] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), + [anon_sym_rewrite] = ACTIONS(693), + [anon_sym_with] = ACTIONS(693), + }, + [934] = { [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), [sym_name_at] = ACTIONS(186), [sym_qualified_name] = ACTIONS(186), [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), [anon_sym_EQ] = ACTIONS(186), [anon_sym_PIPE] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), @@ -41408,260 +57064,366 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(186), [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_PIPE_RPAREN] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), }, - [567] = { - [sym_expr] = STATE(571), - [sym__expr1] = STATE(38), - [sym__application] = STATE(557), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [935] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_PIPE_RPAREN] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), }, - [568] = { - [sym_expr] = STATE(572), - [sym__expr1] = STATE(60), - [sym__application] = STATE(558), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(765), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [936] = { + [anon_sym_RBRACE] = ACTIONS(2136), + [sym_comment] = ACTIONS(86), }, - [569] = { - [sym_expr] = STATE(581), - [sym__expr1] = STATE(110), - [sym__application] = STATE(559), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [937] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2138), + [sym_comment] = ACTIONS(86), + }, + [938] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(2138), + }, + [939] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(2138), + }, + [940] = { + [ts_builtin_sym_end] = ACTIONS(186), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [570] = { + [941] = { + [ts_builtin_sym_end] = ACTIONS(228), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), [sym_name_at] = ACTIONS(228), [sym_qualified_name] = ACTIONS(228), [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), + }, + [942] = { + [anon_sym_RBRACE] = ACTIONS(2140), + [sym_comment] = ACTIONS(86), + }, + [943] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2142), + [sym_comment] = ACTIONS(86), + }, + [944] = { + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2146), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(2148), + }, + [945] = { + [sym__application] = STATE(1724), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(1725), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), + }, + [946] = { + [sym__application] = STATE(1726), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2150), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [571] = { - [anon_sym_RBRACE] = ACTIONS(1426), + [947] = { + [sym_vopen] = STATE(1727), + [sym__layout_open_brace] = ACTIONS(426), [sym_comment] = ACTIONS(86), }, - [572] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(1428), - [sym_comment] = ACTIONS(86), + [948] = { + [sym_binding_name] = STATE(1728), + [sym__application] = STATE(1729), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [573] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(1139), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(1141), - [sym_lambda_where_clauses] = STATE(626), - [aux_sym__application_repeat1] = STATE(1142), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(1432), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1438), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), - [sym_catchall_pragma] = ACTIONS(1450), + [949] = { + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2152), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [574] = { - [anon_sym_RBRACE] = ACTIONS(819), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1452), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_COLON] = ACTIONS(819), + [950] = { + [sym_lambda_bindings] = STATE(1723), + [sym_untyped_bindings] = STATE(950), + [sym_typed_bindings] = STATE(950), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(2154), + [anon_sym_DOT_DOT] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2158), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), }, - [575] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(575), - [sym_typed_bindings] = STATE(575), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COLON] = ACTIONS(825), + [951] = { + [sym_expr] = STATE(1739), + [sym__expr1] = STATE(1740), + [sym__application] = STATE(471), + [sym__expr2] = STATE(472), + [sym__atomic_exprs1] = STATE(1741), + [sym_atomic_expr] = STATE(1742), + [sym__atomic_expr_curly] = STATE(1743), + [sym__atomic_expr_no_curly] = STATE(1743), + [sym_tele_arrow] = STATE(1744), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(475), + [aux_sym__application_repeat1] = STATE(1745), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2162), + [sym_set_n] = ACTIONS(2162), + [sym_name_at] = ACTIONS(2164), + [sym_qualified_name] = ACTIONS(2162), + [anon_sym__] = ACTIONS(2162), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2170), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(584), + [anon_sym_forall] = ACTIONS(586), + [anon_sym_let] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_Prop] = ACTIONS(2162), + [anon_sym_Set] = ACTIONS(2162), + [anon_sym_quote] = ACTIONS(2162), + [anon_sym_quoteTerm] = ACTIONS(2162), + [anon_sym_unquote] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_LPAREN_PIPE] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2162), }, - [576] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(1144), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1145), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1146), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1147), - [aux_sym__application_repeat1] = STATE(173), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [952] = { + [sym_rewrite_equations] = STATE(1748), + [sym_with_expressions] = STATE(1749), + [ts_builtin_sym_end] = ACTIONS(152), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_in] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(152), }, - [577] = { - [sym_where_clause] = STATE(1151), - [sym_rhs] = STATE(1152), + [953] = { + [sym_where_clause] = STATE(1753), + [sym_rhs] = STATE(1754), + [ts_builtin_sym_end] = ACTIONS(170), [sym_literal] = ACTIONS(170), [sym_set_n] = ACTIONS(170), [sym_name_at] = ACTIONS(170), @@ -41672,9 +57434,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(170), [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(170), [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1456), + [anon_sym_where] = ACTIONS(170), [anon_sym_forall] = ACTIONS(170), [anon_sym_let] = ACTIONS(170), [anon_sym_in] = ACTIONS(170), @@ -41685,15 +57447,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(170), [anon_sym_unquote] = ACTIONS(170), [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_RPAREN] = ACTIONS(170), [anon_sym_LPAREN_PIPE] = ACTIONS(170), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1454), - [anon_sym_module] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(170), + [anon_sym_with] = ACTIONS(170), }, - [578] = { + [954] = { + [ts_builtin_sym_end] = ACTIONS(178), [sym_literal] = ACTIONS(178), [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), [sym_name_at] = ACTIONS(178), [sym_qualified_name] = ACTIONS(178), [anon_sym__] = ACTIONS(178), @@ -41704,6 +57468,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(178), [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), [anon_sym_forall] = ACTIONS(178), [anon_sym_let] = ACTIONS(178), [anon_sym_in] = ACTIONS(178), @@ -41718,11 +57483,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(178), [anon_sym_DOT_DOT_DOT] = ACTIONS(178), [anon_sym_COLON] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), + [anon_sym_with] = ACTIONS(178), }, - [579] = { + [955] = { + [ts_builtin_sym_end] = ACTIONS(180), [sym_literal] = ACTIONS(180), [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), [sym_name_at] = ACTIONS(180), [sym_qualified_name] = ACTIONS(180), [anon_sym__] = ACTIONS(180), @@ -41733,6 +57500,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(180), [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), [anon_sym_forall] = ACTIONS(180), [anon_sym_let] = ACTIONS(180), [anon_sym_in] = ACTIONS(180), @@ -41747,251 +57515,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(180), [anon_sym_DOT_DOT_DOT] = ACTIONS(180), [anon_sym_COLON] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), + [anon_sym_with] = ACTIONS(180), }, - [580] = { - [sym__expr1] = STATE(200), + [956] = { + [sym__expr1] = STATE(952), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(577), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(1153), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(260), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), - [anon_sym_in] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(460), + [sym_lhs] = STATE(953), + [sym__declaration] = STATE(954), + [sym_function_clause] = STATE(955), + [aux_sym_source_file_repeat1] = STATE(1755), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(2152), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [581] = { + [957] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(2142), }, - [582] = { + [958] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(1428), - }, - [583] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - }, - [584] = { - [sym_expr] = STATE(1154), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [585] = { - [sym_expr] = STATE(593), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_PIPE_RPAREN] = ACTIONS(2142), }, - [586] = { - [sym_expr] = STATE(594), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(787), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [959] = { + [ts_builtin_sym_end] = ACTIONS(673), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_with] = ACTIONS(673), }, - [587] = { - [sym_expr] = STATE(603), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(787), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [960] = { + [ts_builtin_sym_end] = ACTIONS(693), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), + [anon_sym_with] = ACTIONS(693), }, - [588] = { + [961] = { + [ts_builtin_sym_end] = ACTIONS(186), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), [sym_name_at] = ACTIONS(186), [sym_qualified_name] = ACTIONS(186), [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), [anon_sym_EQ] = ACTIONS(186), [anon_sym_PIPE] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), @@ -42004,137 +57654,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [589] = { - [sym_expr] = STATE(593), - [sym__expr1] = STATE(38), - [sym__application] = STATE(557), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [590] = { - [sym_expr] = STATE(594), - [sym__expr1] = STATE(60), - [sym__application] = STATE(558), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(787), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), - }, - [591] = { - [sym_expr] = STATE(603), - [sym__expr1] = STATE(110), - [sym__application] = STATE(559), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(787), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [592] = { + [962] = { + [ts_builtin_sym_end] = ACTIONS(228), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), [sym_name_at] = ACTIONS(228), [sym_qualified_name] = ACTIONS(228), [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), [anon_sym_EQ] = ACTIONS(228), [anon_sym_PIPE] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), @@ -42147,112 +57683,260 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [593] = { - [anon_sym_RBRACE] = ACTIONS(1462), + [963] = { + [anon_sym_RBRACE] = ACTIONS(2178), [sym_comment] = ACTIONS(86), }, - [594] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(1464), + [964] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2180), [sym_comment] = ACTIONS(86), }, - [595] = { - [sym__application] = STATE(694), + [965] = { + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2184), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(2186), + }, + [966] = { + [sym__application] = STATE(1762), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(1763), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), + }, + [967] = { + [sym__application] = STATE(1764), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(1168), - [sym__atomic_expr_curly] = STATE(1169), - [sym__atomic_expr_no_curly] = STATE(1169), - [sym_non_absurd_lambda_clause] = STATE(697), - [sym_absurd_lambda_clause] = STATE(697), - [sym_lambda_clause] = STATE(1170), - [sym_lambda_where_clauses] = STATE(699), - [aux_sym__application_repeat1] = STATE(1171), - [sym_literal] = ACTIONS(1466), - [sym_set_n] = ACTIONS(1466), - [sym_name_at] = ACTIONS(1468), - [sym_qualified_name] = ACTIONS(1466), - [anon_sym__] = ACTIONS(1466), - [anon_sym_DOT] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1472), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1474), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(1466), - [anon_sym_Prop] = ACTIONS(1466), - [anon_sym_Set] = ACTIONS(1466), - [anon_sym_quote] = ACTIONS(1466), - [anon_sym_quoteTerm] = ACTIONS(1466), - [anon_sym_unquote] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_LPAREN_PIPE] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1466), - [sym_catchall_pragma] = ACTIONS(1486), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2188), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [968] = { + [sym_vopen] = STATE(1765), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), + }, + [969] = { + [sym_binding_name] = STATE(1766), + [sym__application] = STATE(1767), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(2188), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [596] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(819), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1488), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_COLON] = ACTIONS(819), + [970] = { + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [597] = { - [sym_lambda_bindings] = STATE(679), - [sym_untyped_bindings] = STATE(597), - [sym_typed_bindings] = STATE(597), - [anon_sym_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_LBRACE_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE_RBRACE] = ACTIONS(825), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(342), - [anon_sym_COLON] = ACTIONS(825), + [971] = { + [sym_lambda_bindings] = STATE(1761), + [sym_untyped_bindings] = STATE(971), + [sym_typed_bindings] = STATE(971), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(2192), + [anon_sym_DOT_DOT] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2196), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), }, - [598] = { - [sym_expr] = STATE(699), - [sym__expr1] = STATE(1173), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(1174), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(1175), + [972] = { + [sym_expr] = STATE(1777), + [sym__expr1] = STATE(1778), + [sym__application] = STATE(487), + [sym__expr2] = STATE(488), + [sym__atomic_exprs1] = STATE(1779), + [sym_atomic_expr] = STATE(1780), + [sym__atomic_expr_curly] = STATE(1781), + [sym__atomic_expr_no_curly] = STATE(1781), + [sym_tele_arrow] = STATE(1782), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1176), - [aux_sym__application_repeat1] = STATE(188), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [aux_sym__expr1_repeat1] = STATE(491), + [aux_sym__application_repeat1] = STATE(1783), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2200), + [sym_set_n] = ACTIONS(2200), + [sym_name_at] = ACTIONS(2202), + [sym_qualified_name] = ACTIONS(2200), + [anon_sym__] = ACTIONS(2200), + [anon_sym_DOT] = ACTIONS(2204), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2206), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2208), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(602), + [anon_sym_forall] = ACTIONS(604), + [anon_sym_let] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(2200), + [anon_sym_Prop] = ACTIONS(2200), + [anon_sym_Set] = ACTIONS(2200), + [anon_sym_quote] = ACTIONS(2200), + [anon_sym_quoteTerm] = ACTIONS(2200), + [anon_sym_unquote] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2210), + [anon_sym_LPAREN_PIPE] = ACTIONS(2212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2200), + }, + [973] = { + [sym_rewrite_equations] = STATE(1785), + [sym_with_expressions] = STATE(603), + [ts_builtin_sym_end] = ACTIONS(152), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_in] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2214), }, - [599] = { - [sym_where_clause] = STATE(1180), - [sym_rhs] = STATE(1181), + [974] = { + [sym_where_clause] = STATE(1789), + [sym_rhs] = STATE(1790), + [ts_builtin_sym_end] = ACTIONS(170), [sym_literal] = ACTIONS(170), [sym_set_n] = ACTIONS(170), [sym_name_at] = ACTIONS(170), @@ -42260,12 +57944,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(170), [anon_sym_DOT] = ACTIONS(170), [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(170), [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE_RBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(170), [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1492), + [anon_sym_where] = ACTIONS(170), [anon_sym_forall] = ACTIONS(170), [anon_sym_let] = ACTIONS(170), [anon_sym_in] = ACTIONS(170), @@ -42276,25 +57960,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(170), [anon_sym_unquote] = ACTIONS(170), [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_RPAREN] = ACTIONS(170), [anon_sym_LPAREN_PIPE] = ACTIONS(170), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1490), - [anon_sym_module] = ACTIONS(1494), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(170), }, - [600] = { + [975] = { + [ts_builtin_sym_end] = ACTIONS(178), [sym_literal] = ACTIONS(178), [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), [sym_name_at] = ACTIONS(178), [sym_qualified_name] = ACTIONS(178), [anon_sym__] = ACTIONS(178), [anon_sym_DOT] = ACTIONS(178), [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE] = ACTIONS(178), [anon_sym_LBRACE_LBRACE] = ACTIONS(178), - [anon_sym_RBRACE_RBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(178), [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), [anon_sym_forall] = ACTIONS(178), [anon_sym_let] = ACTIONS(178), [anon_sym_in] = ACTIONS(178), @@ -42305,24 +57991,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(178), [anon_sym_unquote] = ACTIONS(178), [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_RPAREN] = ACTIONS(178), [anon_sym_LPAREN_PIPE] = ACTIONS(178), [anon_sym_DOT_DOT_DOT] = ACTIONS(178), [anon_sym_COLON] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), }, - [601] = { + [976] = { + [ts_builtin_sym_end] = ACTIONS(180), [sym_literal] = ACTIONS(180), [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), [sym_name_at] = ACTIONS(180), [sym_qualified_name] = ACTIONS(180), [anon_sym__] = ACTIONS(180), [anon_sym_DOT] = ACTIONS(180), [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(180), [anon_sym_LBRACE_LBRACE] = ACTIONS(180), - [anon_sym_RBRACE_RBRACE] = ACTIONS(180), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(180), [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), [anon_sym_forall] = ACTIONS(180), [anon_sym_let] = ACTIONS(180), [anon_sym_in] = ACTIONS(180), @@ -42333,606 +58022,128 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(180), [anon_sym_unquote] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_RPAREN] = ACTIONS(180), [anon_sym_LPAREN_PIPE] = ACTIONS(180), [anon_sym_DOT_DOT_DOT] = ACTIONS(180), [anon_sym_COLON] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), }, - [602] = { - [sym__expr1] = STATE(263), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(599), - [sym__declaration] = STATE(600), - [sym_function_clause] = STATE(601), - [aux_sym_source_file_repeat1] = STATE(1182), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(346), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_in] = ACTIONS(1496), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(460), - }, - [603] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(1464), - }, - [604] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(1464), - }, - [605] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - }, - [606] = { - [sym_expr] = STATE(1183), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), - }, - [607] = { - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1498), - [anon_sym_EQ] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(1498), - [anon_sym_PIPE_RPAREN] = ACTIONS(1498), - [anon_sym_COLON] = ACTIONS(1498), - }, - [608] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1074), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(771), - }, - [609] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1500), - [sym_comment] = ACTIONS(86), - }, - [610] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - }, - [611] = { - [sym_atomic_expr] = STATE(1185), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(799), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), - }, - [612] = { - [sym_expr] = STATE(1187), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [613] = { - [sym_expr] = STATE(1188), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1504), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), - }, - [614] = { - [sym_expr] = STATE(756), - [sym__expr1] = STATE(1189), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1190), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(1191), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(760), - [aux_sym__application_repeat1] = STATE(761), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [615] = { - [sym_lambda_bindings] = STATE(1192), - [sym_untyped_bindings] = STATE(1193), - [sym_typed_bindings] = STATE(1193), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(256), - [anon_sym_LPAREN] = ACTIONS(258), - }, - [616] = { - [sym_forall_bindings] = STATE(1194), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [617] = { - [sym__expr1] = STATE(770), + [977] = { + [sym__expr1] = STATE(973), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1195), - [sym__declaration] = STATE(202), - [sym_function_clause] = STATE(203), - [aux_sym_source_file_repeat1] = STATE(1196), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [618] = { - [sym_expr] = STATE(1197), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [619] = { - [sym_expr] = STATE(1198), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [620] = { - [sym__application] = STATE(789), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(622), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [aux_sym__application_repeat1] = STATE(1200), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(799), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1506), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), - }, - [621] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_PIPE_RPAREN] = ACTIONS(1006), - [anon_sym_COLON] = ACTIONS(1006), - }, - [622] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - }, - [623] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [sym_lhs] = STATE(974), + [sym__declaration] = STATE(975), + [sym_function_clause] = STATE(976), + [aux_sym_source_file_repeat1] = STATE(1791), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(2190), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [624] = { - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), + [978] = { [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_RPAREN] = ACTIONS(1508), - [anon_sym_PIPE_RPAREN] = ACTIONS(1508), - [anon_sym_COLON] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(2180), }, - [625] = { - [sym_semi] = STATE(1201), - [aux_sym_lambda_where_clauses_repeat1] = STATE(1202), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1510), + [979] = { [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_PIPE_RPAREN] = ACTIONS(2180), }, - [626] = { - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1512), - [anon_sym_RPAREN] = ACTIONS(1512), - [anon_sym_PIPE_RPAREN] = ACTIONS(1512), - [anon_sym_COLON] = ACTIONS(1512), + [980] = { + [ts_builtin_sym_end] = ACTIONS(673), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), }, - [627] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(622), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(799), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1506), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), + [981] = { + [ts_builtin_sym_end] = ACTIONS(693), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), }, - [628] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(630), + [982] = { + [sym_expr] = STATE(990), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(631), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(632), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), [aux_sym__application_repeat1] = STATE(47), @@ -42945,6 +58156,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(1228), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -42960,73 +58172,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [629] = { - [sym__application] = STATE(366), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [983] = { + [sym_expr] = STATE(991), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1230), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), - }, - [630] = { - [anon_sym_RBRACE] = ACTIONS(280), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1514), - }, - [631] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [632] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(630), + [984] = { + [sym_expr] = STATE(1004), + [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(631), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(632), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), + [sym_name_at] = ACTIONS(120), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -43034,635 +58244,127 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(1230), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [633] = { - [sym__application] = STATE(906), - [sym__expr2] = STATE(95), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [sym_non_absurd_lambda_clause] = STATE(909), - [sym_absurd_lambda_clause] = STATE(909), - [sym_lambda_clause] = STATE(1207), - [sym_lambda_where_clauses] = STATE(911), - [aux_sym__application_repeat1] = STATE(1208), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(1516), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1518), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [sym_catchall_pragma] = ACTIONS(1520), - }, - [634] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1522), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [635] = { - [sym_lambda_bindings] = STATE(894), - [sym_untyped_bindings] = STATE(635), - [sym_typed_bindings] = STATE(635), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_DOT_DOT] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_RBRACE] = ACTIONS(464), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(1153), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_rewrite] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), + [985] = { + [ts_builtin_sym_end] = ACTIONS(186), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [636] = { - [sym_expr] = STATE(911), - [sym__expr1] = STATE(1212), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1213), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1214), + [986] = { + [sym_expr] = STATE(990), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(1215), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1524), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1526), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [637] = { - [sym_rewrite_equations] = STATE(1218), - [sym_with_expressions] = STATE(406), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(1528), - [anon_sym_with] = ACTIONS(1530), - }, - [638] = { - [sym_where_clause] = STATE(410), - [sym_rhs] = STATE(1222), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1532), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1534), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1536), - [anon_sym_rewrite] = ACTIONS(170), - [anon_sym_with] = ACTIONS(170), - }, - [639] = { - [sym__expr1] = STATE(637), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(638), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(1223), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [640] = { - [sym__expr1] = STATE(1233), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(1238), - [aux_sym__application_repeat1] = STATE(1239), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(1540), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1546), - [anon_sym_forall] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [641] = { - [sym__expr1] = STATE(1249), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(1254), - [aux_sym__application_repeat1] = STATE(1255), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(1558), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1564), - [anon_sym_forall] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), - }, - [642] = { - [sym_with_expressions] = STATE(1256), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(831), - }, - [643] = { - [ts_builtin_sym_end] = ACTIONS(646), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [644] = { - [sym_expr] = STATE(1267), - [sym__expr1] = STATE(1268), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(1271), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(1274), + [987] = { + [sym_expr] = STATE(991), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1275), - [aux_sym__application_repeat1] = STATE(1276), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(1576), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(1578), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1584), - [anon_sym_forall] = ACTIONS(1586), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [645] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1195), - [sym__declaration] = STATE(1277), - [sym_function_clause] = STATE(203), - [sym__declarations1] = STATE(1278), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [646] = { - [sym_anonymous_name] = STATE(1279), - [sym_name] = ACTIONS(1594), - [anon_sym__] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1230), [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [647] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - }, - [648] = { - [sym_where_clause] = STATE(1280), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(835), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(837), - }, - [649] = { - [sym__expr1] = STATE(200), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(201), - [sym__declaration] = STATE(202), - [sym_function_clause] = STATE(203), - [aux_sym_source_file_repeat1] = STATE(649), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(1596), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1599), - [anon_sym_forall] = ACTIONS(1602), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - }, - [650] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(1139), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(1287), - [sym_lambda_where_clauses] = STATE(626), - [aux_sym__application_repeat1] = STATE(1288), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(1608), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1610), - [anon_sym_BSLASH] = ACTIONS(1612), - [anon_sym_forall] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), - [sym_catchall_pragma] = ACTIONS(1618), - }, - [651] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1620), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(819), - [anon_sym_COLON] = ACTIONS(819), - }, - [652] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(652), - [sym_typed_bindings] = STATE(652), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_RPAREN] = ACTIONS(825), - [anon_sym_COLON] = ACTIONS(825), - }, - [653] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(1290), - [sym__application] = STATE(39), + [988] = { + [sym_expr] = STATE(1004), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1291), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1292), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1293), + [aux_sym__expr1_repeat1] = STATE(113), [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), @@ -43685,12 +58387,256 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(1230), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [654] = { - [sym_where_clause] = STATE(1151), - [sym_rhs] = STATE(1297), + [989] = { + [ts_builtin_sym_end] = ACTIONS(228), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + }, + [990] = { + [anon_sym_RBRACE] = ACTIONS(2216), + [sym_comment] = ACTIONS(86), + }, + [991] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2218), + [sym_comment] = ACTIONS(86), + }, + [992] = { + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2222), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(2224), + }, + [993] = { + [sym__application] = STATE(1798), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(1799), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), + }, + [994] = { + [sym__application] = STATE(1800), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2226), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [995] = { + [sym_vopen] = STATE(1801), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), + }, + [996] = { + [sym_binding_name] = STATE(1802), + [sym__application] = STATE(1803), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(2226), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [997] = { + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2228), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + }, + [998] = { + [sym_lambda_bindings] = STATE(1797), + [sym_untyped_bindings] = STATE(998), + [sym_typed_bindings] = STATE(998), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(2230), + [anon_sym_DOT_DOT] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2234), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + }, + [999] = { + [sym_expr] = STATE(1806), + [sym__expr1] = STATE(1807), + [sym__application] = STATE(506), + [sym__expr2] = STATE(507), + [sym__atomic_exprs1] = STATE(1808), + [sym_atomic_expr] = STATE(509), + [sym__atomic_expr_curly] = STATE(510), + [sym__atomic_expr_no_curly] = STATE(510), + [sym_tele_arrow] = STATE(1809), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(512), + [aux_sym__application_repeat1] = STATE(513), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(616), + [sym_set_n] = ACTIONS(616), + [sym_name_at] = ACTIONS(618), + [sym_qualified_name] = ACTIONS(616), + [anon_sym__] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_LBRACE_LBRACE] = ACTIONS(624), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_forall] = ACTIONS(628), + [anon_sym_let] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_Prop] = ACTIONS(616), + [anon_sym_Set] = ACTIONS(616), + [anon_sym_quote] = ACTIONS(616), + [anon_sym_quoteTerm] = ACTIONS(616), + [anon_sym_unquote] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_LPAREN_PIPE] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + }, + [1000] = { + [sym_where_clause] = STATE(1813), + [sym_rhs] = STATE(1814), + [ts_builtin_sym_end] = ACTIONS(170), [sym_literal] = ACTIONS(170), [sym_set_n] = ACTIONS(170), [sym_name_at] = ACTIONS(170), @@ -43700,9 +58646,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(170), [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_EQ] = ACTIONS(170), [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1624), + [anon_sym_where] = ACTIONS(170), [anon_sym_forall] = ACTIONS(170), [anon_sym_let] = ACTIONS(170), [anon_sym_in] = ACTIONS(170), @@ -43713,171 +58659,185 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(170), [anon_sym_unquote] = ACTIONS(170), [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), [anon_sym_LPAREN_PIPE] = ACTIONS(170), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1622), - [anon_sym_module] = ACTIONS(1626), + [anon_sym_COLON] = ACTIONS(2238), + [anon_sym_module] = ACTIONS(170), }, - [655] = { - [sym__expr1] = STATE(423), + [1001] = { + [ts_builtin_sym_end] = ACTIONS(178), + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_RPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), + }, + [1002] = { + [ts_builtin_sym_end] = ACTIONS(180), + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_RPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), + }, + [1003] = { + [sym__expr1] = STATE(973), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(654), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(1298), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(548), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_in] = ACTIONS(1628), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(460), - }, - [656] = { - [sym_expr] = STATE(1299), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [657] = { - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_RBRACE] = ACTIONS(1630), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1630), - [anon_sym_RPAREN] = ACTIONS(1630), - [anon_sym_PIPE_RPAREN] = ACTIONS(1630), - [anon_sym_COLON] = ACTIONS(1630), - }, - [658] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - }, - [659] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [sym_lhs] = STATE(1000), + [sym__declaration] = STATE(1001), + [sym_function_clause] = STATE(1002), + [aux_sym_source_file_repeat1] = STATE(1815), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [660] = { - [anon_sym_RBRACE] = ACTIONS(1632), + [1004] = { [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(2218), }, - [661] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(1634), + [1005] = { [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(2218), }, - [662] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(1634), + [1006] = { + [sym_expr] = STATE(1816), + [sym__expr1] = STATE(505), + [sym__application] = STATE(506), + [sym__expr2] = STATE(507), + [sym__atomic_exprs1] = STATE(508), + [sym_atomic_expr] = STATE(509), + [sym__atomic_expr_curly] = STATE(510), + [sym__atomic_expr_no_curly] = STATE(510), + [sym_tele_arrow] = STATE(511), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(512), + [aux_sym__application_repeat1] = STATE(513), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(616), + [sym_set_n] = ACTIONS(616), + [sym_name_at] = ACTIONS(618), + [sym_qualified_name] = ACTIONS(616), + [anon_sym__] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_LBRACE_LBRACE] = ACTIONS(624), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_forall] = ACTIONS(628), + [anon_sym_let] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_Prop] = ACTIONS(616), + [anon_sym_Set] = ACTIONS(616), + [anon_sym_quote] = ACTIONS(616), + [anon_sym_quoteTerm] = ACTIONS(616), + [anon_sym_unquote] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_LPAREN_PIPE] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), }, - [663] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(1634), + [1007] = { + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), }, - [664] = { + [1008] = { + [ts_builtin_sym_end] = ACTIONS(30), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [sym_name_at] = ACTIONS(30), @@ -43887,9 +58847,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), @@ -43901,32 +58862,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), }, - [665] = { - [sym_atomic_expr] = STATE(1302), - [sym__atomic_expr_curly] = STATE(671), - [sym__atomic_expr_no_curly] = STATE(671), - [sym_literal] = ACTIONS(1636), - [sym_set_n] = ACTIONS(1636), - [sym_name_at] = ACTIONS(1638), - [sym_qualified_name] = ACTIONS(1636), - [anon_sym__] = ACTIONS(1636), - [anon_sym_DOT] = ACTIONS(1638), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1642), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1636), - [anon_sym_Prop] = ACTIONS(1636), - [anon_sym_Set] = ACTIONS(1636), - [anon_sym_quote] = ACTIONS(1636), - [anon_sym_quoteTerm] = ACTIONS(1636), - [anon_sym_unquote] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1644), - [anon_sym_LPAREN_PIPE] = ACTIONS(1646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1636), + [1009] = { + [sym_atomic_expr] = STATE(1817), + [sym__atomic_expr_curly] = STATE(1016), + [sym__atomic_expr_no_curly] = STATE(1016), + [sym_literal] = ACTIONS(1250), + [sym_set_n] = ACTIONS(1250), + [sym_name_at] = ACTIONS(1252), + [sym_qualified_name] = ACTIONS(1250), + [anon_sym__] = ACTIONS(1250), + [anon_sym_DOT] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1256), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1250), + [anon_sym_Prop] = ACTIONS(1250), + [anon_sym_Set] = ACTIONS(1250), + [anon_sym_quote] = ACTIONS(1250), + [anon_sym_quoteTerm] = ACTIONS(1250), + [anon_sym_unquote] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_LPAREN_PIPE] = ACTIONS(1260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1250), }, - [666] = { - [sym_expr] = STATE(1304), + [1010] = { + [sym_expr] = STATE(1819), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -43947,7 +58909,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(2240), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -43963,8 +58925,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [667] = { - [sym_expr] = STATE(1305), + [1011] = { + [sym_expr] = STATE(1820), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -43986,7 +58948,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1650), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2242), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -44001,8 +58963,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [668] = { - [sym_expr] = STATE(1306), + [1012] = { + [sym_expr] = STATE(1821), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -44035,12 +58997,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(2242), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [669] = { - [sym_expr] = STATE(1307), + [1013] = { + [sym_expr] = STATE(1822), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -44076,7 +59038,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [670] = { + [1014] = { + [ts_builtin_sym_end] = ACTIONS(673), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + }, + [1015] = { + [ts_builtin_sym_end] = ACTIONS(164), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [sym_name_at] = ACTIONS(166), @@ -44086,9 +59076,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(166), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), [anon_sym_QMARK] = ACTIONS(166), @@ -44100,8 +59091,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_module] = ACTIONS(164), }, - [671] = { + [1016] = { + [ts_builtin_sym_end] = ACTIONS(168), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [sym_name_at] = ACTIONS(168), @@ -44111,9 +59104,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), @@ -44125,186 +59119,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), }, - [672] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(771), - }, - [673] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(793), - }, - [674] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - }, - [675] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - }, - [676] = { - [sym__application] = STATE(1308), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), - }, - [677] = { - [sym__application] = STATE(1309), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [678] = { - [sym_binding_name] = STATE(1310), - [sym__application] = STATE(1311), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [1017] = { + [sym__expr2] = STATE(1018), + [sym_atomic_expr] = STATE(1015), + [sym__atomic_expr_curly] = STATE(1016), + [sym__atomic_expr_no_curly] = STATE(1016), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(1250), + [sym_set_n] = ACTIONS(1250), + [sym_name_at] = ACTIONS(1252), + [sym_qualified_name] = ACTIONS(1250), + [anon_sym__] = ACTIONS(1250), + [anon_sym_DOT] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1256), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [679] = { - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1498), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1498), - [anon_sym_EQ] = ACTIONS(1498), - [anon_sym_COLON] = ACTIONS(1498), - }, - [680] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1652), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1654), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_forall] = ACTIONS(628), + [anon_sym_let] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(1250), + [anon_sym_Prop] = ACTIONS(1250), + [anon_sym_Set] = ACTIONS(1250), + [anon_sym_quote] = ACTIONS(1250), + [anon_sym_quoteTerm] = ACTIONS(1250), + [anon_sym_unquote] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_LPAREN_PIPE] = ACTIONS(1260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1250), }, - [681] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1656), - [sym_comment] = ACTIONS(86), + [1018] = { + [ts_builtin_sym_end] = ACTIONS(693), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), }, - [682] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(1652), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1658), + [1019] = { + [ts_builtin_sym_end] = ACTIONS(2244), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), }, - [683] = { + [1020] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -44314,11 +59213,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), @@ -44330,32 +59229,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_rewrite] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), }, - [684] = { - [sym_atomic_expr] = STATE(1316), - [sym__atomic_expr_curly] = STATE(696), - [sym__atomic_expr_no_curly] = STATE(696), - [sym_literal] = ACTIONS(906), - [sym_set_n] = ACTIONS(906), - [sym_name_at] = ACTIONS(908), - [sym_qualified_name] = ACTIONS(906), - [anon_sym__] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_LBRACE_LBRACE] = ACTIONS(912), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(906), - [anon_sym_Prop] = ACTIONS(906), - [anon_sym_Set] = ACTIONS(906), - [anon_sym_quote] = ACTIONS(906), - [anon_sym_quoteTerm] = ACTIONS(906), - [anon_sym_unquote] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_LPAREN_PIPE] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(906), + [1021] = { + [sym_atomic_expr] = STATE(1823), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [685] = { - [sym_expr] = STATE(1318), + [1022] = { + [sym_expr] = STATE(1825), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -44376,7 +59279,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(1660), + [anon_sym_RBRACE] = ACTIONS(2246), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -44392,8 +59295,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [686] = { - [sym_expr] = STATE(1319), + [1023] = { + [sym_expr] = STATE(1826), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -44415,7 +59318,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1662), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2248), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -44430,57 +59333,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [687] = { - [sym_expr] = STATE(1322), - [sym__expr1] = STATE(1323), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(1324), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(1325), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1326), - [aux_sym__application_repeat1] = STATE(1327), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(1664), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(1666), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_forall] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), - }, - [688] = { - [sym_lambda_bindings] = STATE(1328), - [sym_untyped_bindings] = STATE(1329), - [sym_typed_bindings] = STATE(1329), - [anon_sym_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LBRACE_LBRACE] = ACTIONS(338), + [1024] = { + [sym_lambda_bindings] = STATE(1832), + [sym_untyped_bindings] = STATE(1833), + [sym_typed_bindings] = STATE(1833), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_DOT_DOT] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2256), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_where] = ACTIONS(2258), + [anon_sym_LPAREN] = ACTIONS(2260), }, - [689] = { - [sym_forall_bindings] = STATE(1330), + [1025] = { + [sym_forall_bindings] = STATE(1834), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -44492,44 +59358,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [690] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), + [1026] = { + [sym__expr1] = STATE(1835), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(1336), - [sym__declaration] = STATE(269), - [sym_function_clause] = STATE(270), - [aux_sym_source_file_repeat1] = STATE(1337), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(1836), + [sym__declaration] = STATE(1837), + [sym_function_clause] = STATE(1838), + [aux_sym_source_file_repeat1] = STATE(1839), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), }, - [691] = { - [sym_expr] = STATE(1340), + [1027] = { + [sym_expr] = STATE(1840), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -44562,12 +59428,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(1662), + [anon_sym_RPAREN] = ACTIONS(2248), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [692] = { - [sym_expr] = STATE(1341), + [1028] = { + [sym_expr] = STATE(1841), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -44603,44 +59469,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [693] = { - [sym__application] = STATE(1343), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(695), - [sym__atomic_expr_curly] = STATE(696), - [sym__atomic_expr_no_curly] = STATE(696), - [aux_sym__application_repeat1] = STATE(1344), - [sym_literal] = ACTIONS(906), - [sym_set_n] = ACTIONS(906), - [sym_name_at] = ACTIONS(908), - [sym_qualified_name] = ACTIONS(906), - [anon_sym__] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_LBRACE_LBRACE] = ACTIONS(912), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1676), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_forall] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_QMARK] = ACTIONS(906), - [anon_sym_Prop] = ACTIONS(906), - [anon_sym_Set] = ACTIONS(906), - [anon_sym_quote] = ACTIONS(906), - [anon_sym_quoteTerm] = ACTIONS(906), - [anon_sym_unquote] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_LPAREN_PIPE] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(906), + [1029] = { + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), }, - [694] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1006), + [1030] = { + [sym_rewrite_equations] = STATE(1844), + [sym_with_expressions] = STATE(1845), + [sym__layout_semicolon] = ACTIONS(1711), + [sym__layout_close_brace] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1711), + [anon_sym_where] = ACTIONS(1711), + [anon_sym_COLON] = ACTIONS(1711), + [anon_sym_module] = ACTIONS(1711), + [anon_sym_rewrite] = ACTIONS(2264), + [anon_sym_with] = ACTIONS(2266), + }, + [1031] = { + [sym__layout_semicolon] = ACTIONS(284), + [sym__layout_close_brace] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(284), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_COLON] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_where] = ACTIONS(284), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), + [anon_sym_rewrite] = ACTIONS(284), + [anon_sym_with] = ACTIONS(284), }, - [695] = { + [1032] = { + [sym__layout_semicolon] = ACTIONS(286), + [sym__layout_close_brace] = ACTIONS(286), + [anon_sym_SEMI] = ACTIONS(286), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_where] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_module] = ACTIONS(286), + [anon_sym_rewrite] = ACTIONS(286), + [anon_sym_with] = ACTIONS(286), + }, + [1033] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -44650,11 +59543,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), [anon_sym_QMARK] = ACTIONS(166), @@ -44666,8 +59559,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_rewrite] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [696] = { + [1034] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -44677,11 +59576,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), @@ -44693,199 +59592,206 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_rewrite] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [697] = { - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1508), + [1035] = { + [sym_where_clause] = STATE(1849), + [sym_rhs] = STATE(1850), + [sym__layout_semicolon] = ACTIONS(1717), + [sym__layout_close_brace] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_COLON] = ACTIONS(1508), + [anon_sym_EQ] = ACTIONS(2268), + [anon_sym_where] = ACTIONS(2270), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2272), }, - [698] = { - [sym_semi] = STATE(1345), - [aux_sym_lambda_where_clauses_repeat1] = STATE(1346), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1510), + [1036] = { + [sym_semi] = STATE(1852), + [aux_sym__declarations1_repeat1] = STATE(1853), + [sym__layout_semicolon] = ACTIONS(2274), + [sym__layout_close_brace] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2274), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1510), }, - [699] = { - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1512), + [1037] = { + [sym__layout_semicolon] = ACTIONS(1727), + [sym__layout_close_brace] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1512), - [anon_sym_COLON] = ACTIONS(1512), - }, - [700] = { - [sym__expr2] = STATE(289), - [sym_atomic_expr] = STATE(695), - [sym__atomic_expr_curly] = STATE(696), - [sym__atomic_expr_no_curly] = STATE(696), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(906), - [sym_set_n] = ACTIONS(906), - [sym_name_at] = ACTIONS(908), - [sym_qualified_name] = ACTIONS(906), - [anon_sym__] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_LBRACE_LBRACE] = ACTIONS(912), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1676), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_forall] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_QMARK] = ACTIONS(906), - [anon_sym_Prop] = ACTIONS(906), - [anon_sym_Set] = ACTIONS(906), - [anon_sym_quote] = ACTIONS(906), - [anon_sym_quoteTerm] = ACTIONS(906), - [anon_sym_unquote] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_LPAREN_PIPE] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(906), }, - [701] = { + [1038] = { + [sym_vclose] = STATE(1854), + [sym__layout_close_brace] = ACTIONS(1264), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(1652), }, - [702] = { + [1039] = { + [sym__application] = STATE(1855), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(1040), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [1040] = { + [sym__expr2] = STATE(1856), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [1041] = { + [sym_vopen] = STATE(515), + [sym_declarations] = STATE(516), + [sym__declarations0] = STATE(1857), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1678), }, - [703] = { - [sym_expr] = STATE(1314), - [sym__expr1] = STATE(705), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(706), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(707), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [1042] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), }, - [704] = { - [sym__application] = STATE(1348), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(904), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [1043] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), }, - [705] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(280), + [1044] = { + [anon_sym_RBRACE] = ACTIONS(2278), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1680), }, - [706] = { + [1045] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2280), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(162), }, - [707] = { - [sym_expr] = STATE(278), - [sym__expr1] = STATE(705), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(706), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(707), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [1046] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(2280), }, - [708] = { + [1047] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(2280), + }, + [1048] = { + [sym_atomic_expr] = STATE(527), + [sym__atomic_expr_curly] = STATE(528), + [sym__atomic_expr_no_curly] = STATE(528), + [aux_sym__application_repeat1] = STATE(1048), + [sym_literal] = ACTIONS(2282), + [sym_set_n] = ACTIONS(2282), + [sym_name_at] = ACTIONS(2285), + [sym_qualified_name] = ACTIONS(2282), + [anon_sym__] = ACTIONS(2282), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2291), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(2282), + [anon_sym_Prop] = ACTIONS(2282), + [anon_sym_Set] = ACTIONS(2282), + [anon_sym_quote] = ACTIONS(2282), + [anon_sym_quoteTerm] = ACTIONS(2282), + [anon_sym_unquote] = ACTIONS(2282), + [anon_sym_LPAREN] = ACTIONS(2294), + [anon_sym_LPAREN_PIPE] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2282), + }, + [1049] = { [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), [sym_name_at] = ACTIONS(186), [sym_qualified_name] = ACTIONS(186), [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(186), [anon_sym_PIPE] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), [anon_sym_Prop] = ACTIONS(186), [anon_sym_Set] = ACTIONS(186), @@ -44895,30 +59801,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_rewrite] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), }, - [709] = { + [1050] = { [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), [sym_name_at] = ACTIONS(228), [sym_qualified_name] = ACTIONS(228), [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(228), [anon_sym_PIPE] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), [anon_sym_Prop] = ACTIONS(228), [anon_sym_Set] = ACTIONS(228), @@ -44928,1062 +59825,1249 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_rewrite] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), }, - [710] = { - [anon_sym_RBRACE] = ACTIONS(1682), + [1051] = { + [anon_sym_RBRACE] = ACTIONS(2300), [sym_comment] = ACTIONS(86), }, - [711] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(1684), + [1052] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2302), [sym_comment] = ACTIONS(86), }, - [712] = { - [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1688), + [1053] = { [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(1690), - }, - [713] = { - [sym__application] = STATE(1356), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(1357), - [aux_sym__application_repeat1] = STATE(311), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(1692), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(406), + [anon_sym_RPAREN] = ACTIONS(2302), }, - [714] = { - [sym__application] = STATE(1358), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1692), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [715] = { - [sym__application] = STATE(1367), - [sym__expr2] = STATE(265), - [sym_atomic_expr] = STATE(1368), - [sym__atomic_expr_curly] = STATE(1369), - [sym__atomic_expr_no_curly] = STATE(1369), - [sym_non_absurd_lambda_clause] = STATE(1370), - [sym_absurd_lambda_clause] = STATE(1370), - [sym_lambda_clause] = STATE(1371), - [sym_lambda_where_clauses] = STATE(1372), - [aux_sym__application_repeat1] = STATE(1373), - [sym_literal] = ACTIONS(1694), - [sym_set_n] = ACTIONS(1694), - [sym_name_at] = ACTIONS(1696), - [sym_qualified_name] = ACTIONS(1694), - [anon_sym__] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1700), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1702), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(1694), - [anon_sym_Prop] = ACTIONS(1694), - [anon_sym_Set] = ACTIONS(1694), - [anon_sym_quote] = ACTIONS(1694), - [anon_sym_quoteTerm] = ACTIONS(1694), - [anon_sym_unquote] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1704), - [anon_sym_LPAREN_PIPE] = ACTIONS(1706), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1694), - [sym_catchall_pragma] = ACTIONS(1708), + [1054] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(2302), }, - [716] = { - [sym_binding_name] = STATE(1374), - [sym__application] = STATE(1375), + [1055] = { + [sym_expr] = STATE(1862), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(1692), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [717] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1710), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [718] = { - [sym_lambda_bindings] = STATE(1355), - [sym_untyped_bindings] = STATE(718), - [sym_typed_bindings] = STATE(718), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_DOT_DOT] = ACTIONS(1712), - [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1716), - [anon_sym_RBRACE_RBRACE] = ACTIONS(464), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_rewrite] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [719] = { - [sym_expr] = STATE(1372), - [sym__expr1] = STATE(1385), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(1386), - [sym_atomic_expr] = STATE(1387), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_tele_arrow] = STATE(1389), + [1056] = { + [sym_expr] = STATE(1863), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(1390), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(1722), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(1724), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [720] = { - [sym_rewrite_equations] = STATE(1393), - [sym_with_expressions] = STATE(1394), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE_RBRACE] = ACTIONS(152), + [1057] = { + [sym_expr] = STATE(1864), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(1734), - [anon_sym_with] = ACTIONS(1736), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [721] = { - [sym_where_clause] = STATE(1398), - [sym_rhs] = STATE(1399), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE_RBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1738), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1740), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1738), - [anon_sym_module] = ACTIONS(1742), - [anon_sym_rewrite] = ACTIONS(170), - [anon_sym_with] = ACTIONS(170), + [1058] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), }, - [722] = { - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), - [anon_sym_RBRACE_RBRACE] = ACTIONS(178), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_where] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_in] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - [anon_sym_COLON] = ACTIONS(178), - [anon_sym_module] = ACTIONS(178), - [anon_sym_rewrite] = ACTIONS(178), - [anon_sym_with] = ACTIONS(178), + [1059] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), }, - [723] = { - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), - [anon_sym_RBRACE_RBRACE] = ACTIONS(180), + [1060] = { + [sym_expr] = STATE(1086), + [sym__expr1] = STATE(1061), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(1062), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(1063), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1064), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(180), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_where] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_in] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), - [anon_sym_COLON] = ACTIONS(180), - [anon_sym_module] = ACTIONS(180), - [anon_sym_rewrite] = ACTIONS(180), - [anon_sym_with] = ACTIONS(180), - }, - [724] = { - [sym__expr1] = STATE(720), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(721), - [sym__declaration] = STATE(722), - [sym_function_clause] = STATE(723), - [aux_sym_source_file_repeat1] = STATE(1400), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [725] = { + [1061] = { + [anon_sym_RBRACE] = ACTIONS(280), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_EQ] = ACTIONS(2304), + [anon_sym_COLON] = ACTIONS(280), }, - [726] = { + [1062] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(1684), - }, - [727] = { - [sym__expr1] = STATE(1410), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1413), - [sym__atomic_expr_curly] = STATE(1414), - [sym__atomic_expr_no_curly] = STATE(1414), - [aux_sym__expr1_repeat1] = STATE(1415), - [aux_sym__application_repeat1] = STATE(1416), - [sym_literal] = ACTIONS(1744), - [sym_set_n] = ACTIONS(1744), - [sym_name_at] = ACTIONS(1746), - [sym_qualified_name] = ACTIONS(1744), - [anon_sym__] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1750), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1752), - [anon_sym_forall] = ACTIONS(1754), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_QMARK] = ACTIONS(1744), - [anon_sym_Prop] = ACTIONS(1744), - [anon_sym_Set] = ACTIONS(1744), - [anon_sym_quote] = ACTIONS(1744), - [anon_sym_quoteTerm] = ACTIONS(1744), - [anon_sym_unquote] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1744), - }, - [728] = { - [sym__expr1] = STATE(1426), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1429), - [sym__atomic_expr_curly] = STATE(1430), - [sym__atomic_expr_no_curly] = STATE(1430), - [aux_sym__expr1_repeat1] = STATE(1431), - [aux_sym__application_repeat1] = STATE(1432), - [sym_literal] = ACTIONS(1762), - [sym_set_n] = ACTIONS(1762), - [sym_name_at] = ACTIONS(1764), - [sym_qualified_name] = ACTIONS(1762), - [anon_sym__] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1768), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1770), - [anon_sym_forall] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_QMARK] = ACTIONS(1762), - [anon_sym_Prop] = ACTIONS(1762), - [anon_sym_Set] = ACTIONS(1762), - [anon_sym_quote] = ACTIONS(1762), - [anon_sym_quoteTerm] = ACTIONS(1762), - [anon_sym_unquote] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_LPAREN_PIPE] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - }, - [729] = { - [sym_with_expressions] = STATE(1433), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE_RBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(950), - }, - [730] = { - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE_RBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), + [anon_sym_DASH_GT] = ACTIONS(2304), + [anon_sym_PIPE] = ACTIONS(162), }, - [731] = { - [sym_expr] = STATE(1444), - [sym__expr1] = STATE(1445), - [sym__application] = STATE(1446), - [sym__expr2] = STATE(1447), - [sym__atomic_exprs1] = STATE(1448), - [sym_atomic_expr] = STATE(1449), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_tele_arrow] = STATE(1451), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1452), - [aux_sym__application_repeat1] = STATE(1453), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(1782), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1788), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1790), - [anon_sym_forall] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1794), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), + [1063] = { + [sym_expr] = STATE(218), + [sym__expr1] = STATE(1061), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(1062), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(1063), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1064), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [732] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), + [1064] = { + [sym__application] = STATE(225), + [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(1336), - [sym__declaration] = STATE(1454), - [sym_function_clause] = STATE(270), - [sym__declarations1] = STATE(1455), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(670), + [sym_atomic_expr] = STATE(1872), + [sym__atomic_expr_curly] = STATE(1873), + [sym__atomic_expr_no_curly] = STATE(1873), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(1874), + [sym_literal] = ACTIONS(2306), + [sym_set_n] = ACTIONS(2306), + [sym_name_at] = ACTIONS(2308), + [sym_qualified_name] = ACTIONS(2306), + [anon_sym__] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2312), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(2306), + [anon_sym_Prop] = ACTIONS(2306), + [anon_sym_Set] = ACTIONS(2306), + [anon_sym_quote] = ACTIONS(2306), + [anon_sym_quoteTerm] = ACTIONS(2306), + [anon_sym_unquote] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_LPAREN_PIPE] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), }, - [733] = { - [sym_anonymous_name] = STATE(1456), - [sym_name] = ACTIONS(1800), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), + [1065] = { + [sym_expr] = STATE(1882), + [sym__expr1] = STATE(1883), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(1884), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(1887), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1130), + [aux_sym__application_repeat1] = STATE(1888), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2320), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2322), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_forall] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [734] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE_RBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), + [1066] = { + [sym_vopen] = STATE(1889), + [sym_declarations] = STATE(1890), + [sym__declarations0] = STATE(1891), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [735] = { - [sym_where_clause] = STATE(1457), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE_RBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(954), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(956), + [1067] = { + [sym_anonymous_name] = STATE(1892), + [sym_name] = ACTIONS(2332), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), }, - [736] = { - [sym__expr1] = STATE(263), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(268), - [sym__declaration] = STATE(269), - [sym_function_clause] = STATE(270), - [aux_sym_source_file_repeat1] = STATE(736), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(1802), - [sym_set_n] = ACTIONS(1802), - [sym_name_at] = ACTIONS(1805), - [sym_qualified_name] = ACTIONS(1802), - [anon_sym__] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE_RBRACE] = ACTIONS(680), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1814), - [anon_sym_forall] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1802), - [anon_sym_Prop] = ACTIONS(1802), - [anon_sym_Set] = ACTIONS(1802), - [anon_sym_quote] = ACTIONS(1802), - [anon_sym_quoteTerm] = ACTIONS(1802), - [anon_sym_unquote] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LPAREN_PIPE] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), + [1068] = { + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), }, - [737] = { - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [anon_sym_RBRACE_RBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_in] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), - [anon_sym_rewrite] = ACTIONS(709), - [anon_sym_with] = ACTIONS(709), + [1069] = { + [sym_where_clause] = STATE(1893), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(1338), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(1340), }, - [738] = { - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [anon_sym_RBRACE_RBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_rewrite] = ACTIONS(729), - [anon_sym_with] = ACTIONS(729), + [1070] = { + [sym__expr1] = STATE(200), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(557), + [sym__declaration] = STATE(558), + [sym_function_clause] = STATE(559), + [aux_sym_source_file_repeat1] = STATE(1070), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(1428), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1431), + [anon_sym_forall] = ACTIONS(1434), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), }, - [739] = { - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1630), + [1071] = { + [anon_sym_RBRACE] = ACTIONS(2334), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1630), - [anon_sym_COLON] = ACTIONS(1630), }, - [740] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [1072] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE_RBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), }, - [741] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), + [1073] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE_RBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + }, + [1074] = { + [sym_expr] = STATE(1180), + [sym__expr1] = STATE(1075), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(1076), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(1077), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1078), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [742] = { - [anon_sym_RBRACE] = ACTIONS(1829), + [1075] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(280), [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2336), + [anon_sym_COLON] = ACTIONS(280), }, - [743] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(1831), + [1076] = { [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(2336), + [anon_sym_PIPE] = ACTIONS(162), }, - [744] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(1831), + [1077] = { + [sym_expr] = STATE(278), + [sym__expr1] = STATE(1075), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(1076), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(1077), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1078), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [745] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(1831), + [1078] = { + [sym__application] = STATE(285), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1902), + [sym__atomic_expr_curly] = STATE(1903), + [sym__atomic_expr_no_curly] = STATE(1903), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(1904), + [sym_literal] = ACTIONS(2338), + [sym_set_n] = ACTIONS(2338), + [sym_name_at] = ACTIONS(2340), + [sym_qualified_name] = ACTIONS(2338), + [anon_sym__] = ACTIONS(2338), + [anon_sym_DOT] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2344), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(2338), + [anon_sym_Prop] = ACTIONS(2338), + [anon_sym_Set] = ACTIONS(2338), + [anon_sym_quote] = ACTIONS(2338), + [anon_sym_quoteTerm] = ACTIONS(2338), + [anon_sym_unquote] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_LPAREN_PIPE] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2338), }, - [746] = { - [anon_sym_RBRACE] = ACTIONS(1833), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1835), + [1079] = { + [sym_expr] = STATE(1912), + [sym__expr1] = STATE(1913), + [sym__application] = STATE(1250), + [sym__expr2] = STATE(1251), + [sym__atomic_exprs1] = STATE(1914), + [sym_atomic_expr] = STATE(1915), + [sym__atomic_expr_curly] = STATE(1916), + [sym__atomic_expr_no_curly] = STATE(1916), + [sym_tele_arrow] = STATE(1917), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1254), + [aux_sym__application_repeat1] = STATE(1918), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2350), + [sym_set_n] = ACTIONS(2350), + [sym_name_at] = ACTIONS(2352), + [sym_qualified_name] = ACTIONS(2350), + [anon_sym__] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2354), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2358), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_forall] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(2350), + [anon_sym_Prop] = ACTIONS(2350), + [anon_sym_Set] = ACTIONS(2350), + [anon_sym_quote] = ACTIONS(2350), + [anon_sym_quoteTerm] = ACTIONS(2350), + [anon_sym_unquote] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2350), }, - [747] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(1833), + [1080] = { + [sym_vopen] = STATE(1919), + [sym_declarations] = STATE(1920), + [sym__declarations0] = STATE(1921), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1837), }, - [748] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(1833), + [1081] = { + [sym_anonymous_name] = STATE(1922), + [sym_name] = ACTIONS(2364), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), }, - [749] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1839), + [1082] = { + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE_RBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), }, - [750] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), + [1083] = { + [sym_where_clause] = STATE(1923), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE_RBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(1350), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(1352), }, - [751] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), + [1084] = { + [sym__expr1] = STATE(263), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(578), + [sym__declaration] = STATE(579), + [sym_function_clause] = STATE(580), + [aux_sym_source_file_repeat1] = STATE(1084), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(1572), + [sym_set_n] = ACTIONS(1572), + [sym_name_at] = ACTIONS(1575), + [sym_qualified_name] = ACTIONS(1572), + [anon_sym__] = ACTIONS(1572), + [anon_sym_DOT] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE_RBRACE] = ACTIONS(644), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1584), + [anon_sym_forall] = ACTIONS(1587), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_Prop] = ACTIONS(1572), + [anon_sym_Set] = ACTIONS(1572), + [anon_sym_quote] = ACTIONS(1572), + [anon_sym_quoteTerm] = ACTIONS(1572), + [anon_sym_unquote] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LPAREN_PIPE] = ACTIONS(1596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1572), + [anon_sym_COLON] = ACTIONS(644), }, - [752] = { - [anon_sym_RBRACE] = ACTIONS(1841), + [1085] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2334), [sym_comment] = ACTIONS(86), }, - [753] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(1843), + [1086] = { + [anon_sym_RBRACE] = ACTIONS(2366), [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2366), + [anon_sym_RPAREN] = ACTIONS(2366), + [anon_sym_PIPE_RPAREN] = ACTIONS(2366), + [anon_sym_COLON] = ACTIONS(2366), }, - [754] = { - [sym_atomic_expr] = STATE(151), + [1087] = { + [sym_vclose] = STATE(1925), + [sym__layout_close_brace] = ACTIONS(2368), + [sym_comment] = ACTIONS(86), + }, + [1088] = { + [sym_expr] = STATE(615), + [sym__expr1] = STATE(593), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(594), + [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(595), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), + [sym_name_at] = ACTIONS(34), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(188), - [anon_sym_LBRACE_LBRACE] = ACTIONS(190), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), [anon_sym_quote] = ACTIONS(32), [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_LPAREN] = ACTIONS(52), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [755] = { - [sym_atomic_expr] = STATE(151), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(194), - [anon_sym_LBRACE_LBRACE] = ACTIONS(196), + [1089] = { + [sym_expr] = STATE(1562), + [sym__expr1] = STATE(1092), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(1093), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(1094), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(1095), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1366), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(198), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), }, - [756] = { - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_RBRACE] = ACTIONS(1845), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1845), - [anon_sym_PIPE_RPAREN] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1845), + [1090] = { + [sym_atomic_expr] = STATE(1570), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1366), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1945), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), }, - [757] = { - [anon_sym_SEMI] = ACTIONS(280), - [anon_sym_RBRACE] = ACTIONS(280), + [1091] = { + [sym_atomic_expr] = STATE(1570), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1366), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1951), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [1092] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2370), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_rewrite] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), + }, + [1093] = { [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1847), + [anon_sym_DASH_GT] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(162), + }, + [1094] = { + [sym_expr] = STATE(1580), + [sym__expr1] = STATE(1092), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(1093), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(1094), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(1095), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1366), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [1095] = { + [sym__expr2] = STATE(400), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1366), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1945), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [1096] = { + [sym__expr1] = STATE(875), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(260), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [1097] = { + [sym__expr1] = STATE(876), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(260), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [1098] = { + [sym_expr] = STATE(878), + [sym__expr1] = STATE(1092), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(1093), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(1094), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(1095), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1366), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [1099] = { + [sym__expr1] = STATE(93), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(98), + [sym__declaration] = STATE(99), + [sym_function_clause] = STATE(100), + [aux_sym_source_file_repeat1] = STATE(1099), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(1428), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1431), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(1434), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_rewrite] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), + }, + [1100] = { + [ts_builtin_sym_end] = ACTIONS(30), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_RPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), }, - [758] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1847), - [anon_sym_PIPE] = ACTIONS(162), + [1101] = { + [sym_atomic_expr] = STATE(1927), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(1372), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [759] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(757), + [1102] = { + [sym_expr] = STATE(1929), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(758), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(759), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(760), - [aux_sym__application_repeat1] = STATE(761), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), + [sym_name_at] = ACTIONS(34), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(974), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(2374), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -45994,198 +61078,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [760] = { - [sym__application] = STATE(225), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(226), - [sym__atomic_expr_curly] = STATE(227), - [sym__atomic_expr_no_curly] = STATE(227), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(1468), - [sym_literal] = ACTIONS(292), - [sym_set_n] = ACTIONS(292), - [sym_name_at] = ACTIONS(1849), - [sym_qualified_name] = ACTIONS(292), - [anon_sym__] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_LBRACE] = ACTIONS(296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(298), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_Prop] = ACTIONS(292), - [anon_sym_Set] = ACTIONS(292), - [anon_sym_quote] = ACTIONS(292), - [anon_sym_quoteTerm] = ACTIONS(292), - [anon_sym_unquote] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LPAREN_PIPE] = ACTIONS(302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), - }, - [761] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(188), - [anon_sym_LBRACE_LBRACE] = ACTIONS(190), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(192), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [762] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(1471), - [sym_lambda_where_clauses] = STATE(626), - [aux_sym__application_repeat1] = STATE(1472), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1851), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(1853), - }, - [763] = { - [anon_sym_SEMI] = ACTIONS(819), - [anon_sym_RBRACE] = ACTIONS(819), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1855), - [anon_sym_COLON] = ACTIONS(819), - }, - [764] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(764), - [sym_typed_bindings] = STATE(764), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COLON] = ACTIONS(825), - }, - [765] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(1476), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1477), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1478), + [1103] = { + [sym_expr] = STATE(1930), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1479), - [aux_sym__application_repeat1] = STATE(1480), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1859), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [766] = { - [sym_atomic_expr] = STATE(388), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2376), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [767] = { - [sym_lambda_bindings] = STATE(1481), - [sym_untyped_bindings] = STATE(1482), - [sym_typed_bindings] = STATE(1482), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACE_LBRACE] = ACTIONS(530), + [1104] = { + [sym_lambda_bindings] = STATE(1936), + [sym_untyped_bindings] = STATE(1937), + [sym_typed_bindings] = STATE(1937), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2382), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2384), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_where] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2388), }, - [768] = { - [sym_forall_bindings] = STATE(1483), + [1105] = { + [sym_forall_bindings] = STATE(1938), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -46197,32 +61141,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [769] = { - [sym__expr1] = STATE(1484), + [1106] = { + [sym__expr1] = STATE(1939), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1485), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(1486), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), + [sym_lhs] = STATE(953), + [sym__declaration] = STATE(954), + [sym_function_clause] = STATE(955), + [aux_sym_source_file_repeat1] = STATE(1940), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), [sym_literal] = ACTIONS(102), [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), + [sym_name_at] = ACTIONS(260), [sym_qualified_name] = ACTIONS(102), [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(260), [anon_sym_LBRACE] = ACTIONS(106), [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), [anon_sym_QMARK] = ACTIONS(102), [anon_sym_Prop] = ACTIONS(102), [anon_sym_Set] = ACTIONS(102), @@ -46233,238 +61177,307 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(118), [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [770] = { - [sym_rewrite_equations] = STATE(1489), - [sym_with_expressions] = STATE(643), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [1107] = { + [sym_expr] = STATE(1941), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(1861), - [anon_sym_with] = ACTIONS(1863), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(2376), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [771] = { - [sym_where_clause] = STATE(1493), - [sym_rhs] = STATE(1494), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [1108] = { + [sym_expr] = STATE(1942), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1865), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1867), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1865), - [anon_sym_module] = ACTIONS(1869), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [772] = { - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_RBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [1109] = { + [ts_builtin_sym_end] = ACTIONS(1194), + [sym_literal] = ACTIONS(1194), + [sym_set_n] = ACTIONS(1194), + [sym_name_at] = ACTIONS(1194), + [sym_qualified_name] = ACTIONS(1194), + [anon_sym__] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1194), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1194), + [anon_sym_where] = ACTIONS(1194), + [anon_sym_forall] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_in] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(1194), + [anon_sym_Prop] = ACTIONS(1194), + [anon_sym_Set] = ACTIONS(1194), + [anon_sym_quote] = ACTIONS(1194), + [anon_sym_quoteTerm] = ACTIONS(1194), + [anon_sym_unquote] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_RPAREN] = ACTIONS(1194), + [anon_sym_LPAREN_PIPE] = ACTIONS(1194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), + }, + [1110] = { + [ts_builtin_sym_end] = ACTIONS(158), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_in] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - [anon_sym_COLON] = ACTIONS(178), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + [anon_sym_with] = ACTIONS(158), }, - [773] = { - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_RBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [1111] = { + [ts_builtin_sym_end] = ACTIONS(160), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_in] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), - [anon_sym_COLON] = ACTIONS(180), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + [anon_sym_with] = ACTIONS(160), }, - [774] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(771), - [sym__declaration] = STATE(772), - [sym_function_clause] = STATE(773), - [aux_sym_source_file_repeat1] = STATE(1495), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [1112] = { + [ts_builtin_sym_end] = ACTIONS(164), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(164), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), + }, + [1113] = { + [ts_builtin_sym_end] = ACTIONS(168), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(1871), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(460), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [775] = { - [sym__application] = STATE(413), - [sym__expr2] = STATE(95), + [1114] = { + [sym__application] = STATE(1943), + [sym__expr2] = STATE(1111), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [aux_sym__application_repeat1] = STATE(1115), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(1372), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_forall] = ACTIONS(1380), + [anon_sym_let] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [776] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), + [1115] = { + [sym__expr2] = STATE(1944), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(1372), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), [sym_comment] = ACTIONS(18), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [777] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(1843), - }, - [778] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(1843), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_forall] = ACTIONS(1380), + [anon_sym_let] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [779] = { + [1116] = { + [ts_builtin_sym_end] = ACTIONS(30), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), @@ -46473,10 +61486,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), [anon_sym_Prop] = ACTIONS(30), [anon_sym_Set] = ACTIONS(30), @@ -46484,34 +61500,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(30), [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_RPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), }, - [780] = { - [sym_atomic_expr] = STATE(1496), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(988), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), + [1117] = { + [sym_atomic_expr] = STATE(1945), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(1390), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), }, - [781] = { - [sym_expr] = STATE(1498), + [1118] = { + [sym_expr] = STATE(1947), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -46532,7 +61551,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2390), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -46548,8 +61567,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [782] = { - [sym_expr] = STATE(1499), + [1119] = { + [sym_expr] = STATE(1948), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -46571,7 +61590,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1875), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2392), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -46586,33 +61605,94 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [783] = { - [sym_expr] = STATE(1500), - [sym__expr1] = STATE(757), + [1120] = { + [sym_lambda_bindings] = STATE(1954), + [sym_untyped_bindings] = STATE(1955), + [sym_typed_bindings] = STATE(1955), + [anon_sym_DOT] = ACTIONS(2394), + [anon_sym_DOT_DOT] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2400), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2404), + }, + [1121] = { + [sym_forall_bindings] = STATE(1956), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [1122] = { + [sym__expr1] = STATE(200), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(974), + [sym__declaration] = STATE(975), + [sym_function_clause] = STATE(976), + [aux_sym_source_file_repeat1] = STATE(1957), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(260), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [1123] = { + [sym_expr] = STATE(1958), + [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(758), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(759), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(760), - [aux_sym__application_repeat1] = STATE(761), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), + [sym_name_at] = ACTIONS(120), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(974), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -46620,23 +61700,463 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(2392), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [784] = { - [sym_lambda_bindings] = STATE(1502), - [sym_untyped_bindings] = STATE(1503), - [sym_typed_bindings] = STATE(1503), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [1124] = { + [sym_expr] = STATE(1959), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [1125] = { + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + }, + [1126] = { + [ts_builtin_sym_end] = ACTIONS(158), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + }, + [1127] = { + [ts_builtin_sym_end] = ACTIONS(160), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + }, + [1128] = { + [ts_builtin_sym_end] = ACTIONS(164), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(164), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + }, + [1129] = { + [ts_builtin_sym_end] = ACTIONS(168), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + }, + [1130] = { + [sym__application] = STATE(1960), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1128), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(1131), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(1390), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_forall] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + }, + [1131] = { + [sym__expr2] = STATE(1961), + [sym_atomic_expr] = STATE(1128), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(1390), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_forall] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + }, + [1132] = { + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), + }, + [1133] = { + [ts_builtin_sym_end] = ACTIONS(30), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_RPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + }, + [1134] = { + [sym_atomic_expr] = STATE(1965), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1408), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2408), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), + }, + [1135] = { + [sym_atomic_expr] = STATE(1965), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1408), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(2412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2414), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), + }, + [1136] = { + [sym_expr] = STATE(1970), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [1137] = { + [sym_expr] = STATE(1971), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2420), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [1138] = { + [sym_lambda_bindings] = STATE(1977), + [sym_untyped_bindings] = STATE(1978), + [sym_typed_bindings] = STATE(1978), + [anon_sym_DOT] = ACTIONS(2422), + [anon_sym_DOT_DOT] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2428), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_where] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2432), }, - [785] = { - [sym_forall_bindings] = STATE(1504), + [1139] = { + [sym_forall_bindings] = STATE(1979), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -46648,32 +62168,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [786] = { - [sym__expr1] = STATE(1509), + [1140] = { + [sym__expr1] = STATE(200), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1510), - [sym__declaration] = STATE(1511), - [sym_function_clause] = STATE(1512), - [aux_sym_source_file_repeat1] = STATE(1513), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), + [sym_lhs] = STATE(1980), + [sym__declaration] = STATE(1001), + [sym_function_clause] = STATE(1002), + [aux_sym_source_file_repeat1] = STATE(1981), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), [sym_literal] = ACTIONS(102), [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), + [sym_name_at] = ACTIONS(260), [sym_qualified_name] = ACTIONS(102), [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(260), [anon_sym_LBRACE] = ACTIONS(106), [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), [anon_sym_QMARK] = ACTIONS(102), [anon_sym_Prop] = ACTIONS(102), [anon_sym_Set] = ACTIONS(102), @@ -46684,46 +62204,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(118), [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [787] = { - [sym_expr] = STATE(1516), + [1141] = { + [sym_expr] = STATE(1982), [sym__expr1] = STATE(110), - [sym__application] = STATE(39), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(1875), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(2420), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [788] = { - [sym_expr] = STATE(1517), + [1142] = { + [sym_expr] = STATE(1983), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -46759,19 +62279,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [789] = { - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), + [1143] = { + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_RPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + }, + [1144] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2434), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [1145] = { + [ts_builtin_sym_end] = ACTIONS(158), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + }, + [1146] = { + [ts_builtin_sym_end] = ACTIONS(160), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + }, + [1147] = { [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_PIPE_RPAREN] = ACTIONS(1887), - [anon_sym_COLON] = ACTIONS(1887), + [anon_sym_DASH_GT] = ACTIONS(2436), + [anon_sym_PIPE] = ACTIONS(162), }, - [790] = { + [1148] = { + [ts_builtin_sym_end] = ACTIONS(164), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), @@ -46781,9 +62415,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -46791,13 +62429,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(166), [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(164), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_module] = ACTIONS(164), }, - [791] = { + [1149] = { + [ts_builtin_sym_end] = ACTIONS(168), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), @@ -46807,9 +62447,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -46817,577 +62461,486 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(168), [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), }, - [792] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(790), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(988), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1889), - [anon_sym_BSLASH] = ACTIONS(996), - [anon_sym_forall] = ACTIONS(998), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), - }, - [793] = { - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_rewrite] = ACTIONS(1891), - [anon_sym_with] = ACTIONS(1891), - }, - [794] = { - [sym_expr] = STATE(1519), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [795] = { - [sym_literal] = ACTIONS(1893), - [sym_set_n] = ACTIONS(1893), - [sym_name_at] = ACTIONS(1893), - [sym_qualified_name] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1893), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1893), - [anon_sym_BSLASH] = ACTIONS(1893), - [anon_sym_forall] = ACTIONS(1893), - [anon_sym_let] = ACTIONS(1893), - [anon_sym_QMARK] = ACTIONS(1893), - [anon_sym_Prop] = ACTIONS(1893), - [anon_sym_Set] = ACTIONS(1893), - [anon_sym_quote] = ACTIONS(1893), - [anon_sym_quoteTerm] = ACTIONS(1893), - [anon_sym_unquote] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_LPAREN_PIPE] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1893), - [sym_catchall_pragma] = ACTIONS(1893), - }, - [796] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(790), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(1525), - [aux_sym__application_repeat1] = STATE(1526), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(1895), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(1897), - [anon_sym_forall] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), - [sym_catchall_pragma] = ACTIONS(1903), - }, - [797] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_COLON] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_rewrite] = ACTIONS(1905), - [anon_sym_with] = ACTIONS(1905), - }, - [798] = { - [sym_atomic_expr] = STATE(1528), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1907), - [sym_set_n] = ACTIONS(1907), - [sym_name_at] = ACTIONS(1910), - [sym_qualified_name] = ACTIONS(1907), - [anon_sym__] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1916), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(743), - [anon_sym_BSLASH] = ACTIONS(743), - [anon_sym_forall] = ACTIONS(743), - [anon_sym_let] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(1907), - [anon_sym_Prop] = ACTIONS(1907), - [anon_sym_Set] = ACTIONS(1907), - [anon_sym_quote] = ACTIONS(1907), - [anon_sym_quoteTerm] = ACTIONS(1907), - [anon_sym_unquote] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_LPAREN_PIPE] = ACTIONS(1922), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1907), + [1150] = { + [sym_expr] = STATE(1985), + [sym__expr1] = STATE(1144), + [sym__application] = STATE(1145), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(1147), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_tele_arrow] = STATE(1150), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1151), + [aux_sym__application_repeat1] = STATE(1152), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1408), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_forall] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), }, - [799] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), + [1151] = { + [sym__application] = STATE(1992), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1993), + [sym__atomic_expr_curly] = STATE(1994), + [sym__atomic_expr_no_curly] = STATE(1994), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(1995), + [sym_literal] = ACTIONS(2438), + [sym_set_n] = ACTIONS(2438), + [sym_name_at] = ACTIONS(2440), + [sym_qualified_name] = ACTIONS(2438), + [anon_sym__] = ACTIONS(2438), + [anon_sym_DOT] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2444), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_forall] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(2438), + [anon_sym_Prop] = ACTIONS(2438), + [anon_sym_Set] = ACTIONS(2438), + [anon_sym_quote] = ACTIONS(2438), + [anon_sym_quoteTerm] = ACTIONS(2438), + [anon_sym_unquote] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_LPAREN_PIPE] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2438), }, - [800] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), + [1152] = { + [sym__expr2] = STATE(1996), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1408), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2408), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_forall] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), }, - [801] = { - [anon_sym_RBRACE] = ACTIONS(1925), - [sym_comment] = ACTIONS(86), + [1153] = { + [sym_vclose] = STATE(1998), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(1999), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(2450), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [802] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(1927), - [sym_comment] = ACTIONS(86), + [1154] = { + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_RPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), }, - [803] = { - [sym__application] = STATE(694), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(1542), - [sym__atomic_expr_curly] = STATE(1543), - [sym__atomic_expr_no_curly] = STATE(1543), - [sym_non_absurd_lambda_clause] = STATE(697), - [sym_absurd_lambda_clause] = STATE(697), - [sym_lambda_clause] = STATE(1544), - [sym_lambda_where_clauses] = STATE(699), - [aux_sym__application_repeat1] = STATE(1545), - [sym_literal] = ACTIONS(1929), - [sym_set_n] = ACTIONS(1929), - [sym_name_at] = ACTIONS(1931), - [sym_qualified_name] = ACTIONS(1929), - [anon_sym__] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1935), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1937), - [anon_sym_BSLASH] = ACTIONS(1939), - [anon_sym_forall] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1943), - [anon_sym_QMARK] = ACTIONS(1929), - [anon_sym_Prop] = ACTIONS(1929), - [anon_sym_Set] = ACTIONS(1929), - [anon_sym_quote] = ACTIONS(1929), - [anon_sym_quoteTerm] = ACTIONS(1929), - [anon_sym_unquote] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_LPAREN_PIPE] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1929), - [sym_catchall_pragma] = ACTIONS(1949), + [1155] = { + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), }, - [804] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(819), + [1156] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(819), + [anon_sym_where] = ACTIONS(2452), }, - [805] = { - [sym_lambda_bindings] = STATE(679), - [sym_untyped_bindings] = STATE(805), - [sym_typed_bindings] = STATE(805), - [anon_sym_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_LBRACE_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE_RBRACE] = ACTIONS(825), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(342), - [anon_sym_COLON] = ACTIONS(825), + [1157] = { + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), }, - [806] = { - [sym_expr] = STATE(699), - [sym__expr1] = STATE(1547), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(1548), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(1549), + [1158] = { + [sym_expr] = STATE(1086), + [sym__expr1] = STATE(1159), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(1160), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(1161), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1176), - [aux_sym__application_repeat1] = STATE(188), + [aux_sym__expr1_repeat1] = STATE(1162), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), - }, - [807] = { - [sym_where_clause] = STATE(1553), - [sym_rhs] = STATE(1554), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE_RBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1953), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1955), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1953), - [anon_sym_module] = ACTIONS(1957), - }, - [808] = { - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), - [anon_sym_RBRACE_RBRACE] = ACTIONS(178), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_in] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - [anon_sym_COLON] = ACTIONS(178), - }, - [809] = { - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), - [anon_sym_RBRACE_RBRACE] = ACTIONS(180), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_in] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), - [anon_sym_COLON] = ACTIONS(180), - }, - [810] = { - [sym__expr1] = STATE(263), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(807), - [sym__declaration] = STATE(808), - [sym_function_clause] = STATE(809), - [aux_sym_source_file_repeat1] = STATE(1555), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(346), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_in] = ACTIONS(1959), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(460), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [811] = { + [1159] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_EQ] = ACTIONS(2454), + [anon_sym_RPAREN] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(280), }, - [812] = { + [1160] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(1927), + [anon_sym_DASH_GT] = ACTIONS(2454), + [anon_sym_PIPE] = ACTIONS(162), }, - [813] = { - [sym_expr] = STATE(1556), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), + [1161] = { + [sym_expr] = STATE(218), + [sym__expr1] = STATE(1159), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(1160), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(1161), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), + [aux_sym__expr1_repeat1] = STATE(1162), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [1162] = { + [sym__application] = STATE(225), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1872), + [sym__atomic_expr_curly] = STATE(1873), + [sym__atomic_expr_no_curly] = STATE(1873), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(2003), + [sym_literal] = ACTIONS(2306), + [sym_set_n] = ACTIONS(2306), + [sym_name_at] = ACTIONS(2456), + [sym_qualified_name] = ACTIONS(2306), + [anon_sym__] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2312), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(2306), + [anon_sym_Prop] = ACTIONS(2306), + [anon_sym_Set] = ACTIONS(2306), + [anon_sym_quote] = ACTIONS(2306), + [anon_sym_quoteTerm] = ACTIONS(2306), + [anon_sym_unquote] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_LPAREN_PIPE] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), }, - [814] = { - [sym_atomic_expr] = STATE(1563), - [sym__atomic_expr_curly] = STATE(1564), - [sym__atomic_expr_no_curly] = STATE(1564), - [aux_sym__application_repeat1] = STATE(814), - [sym_literal] = ACTIONS(1961), - [sym_set_n] = ACTIONS(1961), - [sym_name_at] = ACTIONS(1964), - [sym_qualified_name] = ACTIONS(1961), - [anon_sym__] = ACTIONS(1961), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1967), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1970), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(743), - [anon_sym_forall] = ACTIONS(743), - [anon_sym_let] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(1961), - [anon_sym_Prop] = ACTIONS(1961), - [anon_sym_Set] = ACTIONS(1961), - [anon_sym_quote] = ACTIONS(1961), - [anon_sym_quoteTerm] = ACTIONS(1961), - [anon_sym_unquote] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_LPAREN_PIPE] = ACTIONS(1976), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1961), + [1163] = { + [sym_expr] = STATE(1882), + [sym__expr1] = STATE(2006), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2007), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2008), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1607), + [aux_sym__application_repeat1] = STATE(2009), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2458), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2460), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1985), + [anon_sym_forall] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [815] = { - [ts_builtin_sym_end] = ACTIONS(186), + [1164] = { + [sym__expr1] = STATE(408), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(557), + [sym__declaration] = STATE(558), + [sym_function_clause] = STATE(559), + [aux_sym_source_file_repeat1] = STATE(1164), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(2001), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2004), + [anon_sym_forall] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), + }, + [1165] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(2334), + }, + [1166] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + }, + [1167] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + }, + [1168] = { [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), [sym_name_at] = ACTIONS(186), [sym_qualified_name] = ACTIONS(186), [anon_sym__] = ACTIONS(186), @@ -47396,9 +62949,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), @@ -47410,16 +62962,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_rewrite] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), }, - [816] = { - [ts_builtin_sym_end] = ACTIONS(228), + [1169] = { [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), [sym_name_at] = ACTIONS(228), [sym_qualified_name] = ACTIONS(228), [anon_sym__] = ACTIONS(228), @@ -47428,9 +62974,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), @@ -47442,860 +62987,1389 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_rewrite] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), }, - [817] = { - [anon_sym_RBRACE] = ACTIONS(1979), + [1170] = { + [anon_sym_RBRACE] = ACTIONS(2462), [sym_comment] = ACTIONS(86), }, - [818] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(1981), + [1171] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2464), [sym_comment] = ACTIONS(86), }, - [819] = { - [sym_atomic_expr] = STATE(878), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(1030), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1076), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1078), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(1080), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), + [1172] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(2464), }, - [820] = { - [sym_atomic_expr] = STATE(878), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(1030), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1084), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), + [1173] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(2464), }, - [821] = { - [ts_builtin_sym_end] = ACTIONS(1983), - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_rewrite] = ACTIONS(1983), - [anon_sym_with] = ACTIONS(1983), + [1174] = { + [anon_sym_RBRACE] = ACTIONS(2466), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(2468), }, - [822] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1985), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_rewrite] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), + [1175] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2466), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(2470), }, - [823] = { + [1176] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(1987), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_RPAREN] = ACTIONS(2466), }, - [824] = { - [sym_expr] = STATE(888), - [sym__expr1] = STATE(822), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(823), - [sym_atomic_expr] = STATE(382), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [sym_tele_arrow] = STATE(824), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(535), - [aux_sym__application_repeat1] = STATE(825), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(1030), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(1032), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(506), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), + [1177] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(2472), }, - [825] = { - [sym__expr2] = STATE(146), - [sym_atomic_expr] = STATE(382), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(1030), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1076), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1078), + [1178] = { + [anon_sym_DOT] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1925), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1925), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1925), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_COLON] = ACTIONS(1925), + }, + [1179] = { + [sym_expr] = STATE(2016), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(1080), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [826] = { - [ts_builtin_sym_end] = ACTIONS(460), + [1180] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2366), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2366), + [anon_sym_COLON] = ACTIONS(2366), + }, + [1181] = { + [sym_expr] = STATE(2017), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [1182] = { + [sym_vclose] = STATE(2019), + [sym__layout_close_brace] = ACTIONS(2474), + [sym_comment] = ACTIONS(86), + }, + [1183] = { + [sym_expr] = STATE(2020), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [1184] = { + [anon_sym_RBRACE] = ACTIONS(1466), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1468), + }, + [1185] = { + [sym_expr] = STATE(681), + [sym__expr1] = STATE(647), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(648), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(649), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [1186] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE_RBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_rewrite] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [1187] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE_RBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_rewrite] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [1188] = { + [sym__application] = STATE(2021), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1989), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), }, - [827] = { - [sym_lambda_bindings] = STATE(296), - [sym_untyped_bindings] = STATE(827), - [sym_typed_bindings] = STATE(827), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(466), - [anon_sym_DOT_DOT] = ACTIONS(466), - [anon_sym_LBRACE] = ACTIONS(468), - [anon_sym_LBRACE_LBRACE] = ACTIONS(470), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(472), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_rewrite] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), + [1189] = { + [sym__application] = STATE(2022), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [1190] = { + [sym_binding_name] = STATE(2023), + [sym__application] = STATE(2024), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [1191] = { + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [anon_sym_RBRACE_RBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + [anon_sym_rewrite] = ACTIONS(882), + [anon_sym_with] = ACTIONS(882), + }, + [1192] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(2476), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(2478), + }, + [1193] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(2480), + [sym_comment] = ACTIONS(86), + }, + [1194] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2476), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(2482), + }, + [1195] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(2029), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [1196] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(2476), + }, + [1197] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(2484), + }, + [1198] = { + [sym_expr] = STATE(2027), + [sym__expr1] = STATE(1208), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(1209), + [sym_atomic_expr] = STATE(1210), + [sym__atomic_expr_curly] = STATE(1211), + [sym__atomic_expr_no_curly] = STATE(1211), + [sym_tele_arrow] = STATE(1212), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(1213), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1500), + [sym_set_n] = ACTIONS(1500), + [sym_name_at] = ACTIONS(1502), + [sym_qualified_name] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1508), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_Prop] = ACTIONS(1500), + [anon_sym_Set] = ACTIONS(1500), + [anon_sym_quote] = ACTIONS(1500), + [anon_sym_quoteTerm] = ACTIONS(1500), + [anon_sym_unquote] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LPAREN_PIPE] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1500), + }, + [1199] = { + [sym__application] = STATE(2031), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [1200] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE_RBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_rewrite] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), + }, + [1201] = { + [sym_atomic_expr] = STATE(2035), + [sym__atomic_expr_curly] = STATE(1211), + [sym__atomic_expr_no_curly] = STATE(1211), + [sym_literal] = ACTIONS(1500), + [sym_set_n] = ACTIONS(1500), + [sym_name_at] = ACTIONS(1502), + [sym_qualified_name] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2488), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_Prop] = ACTIONS(1500), + [anon_sym_Set] = ACTIONS(1500), + [anon_sym_quote] = ACTIONS(1500), + [anon_sym_quoteTerm] = ACTIONS(1500), + [anon_sym_unquote] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_LPAREN_PIPE] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1500), + }, + [1202] = { + [sym_atomic_expr] = STATE(2035), + [sym__atomic_expr_curly] = STATE(1211), + [sym__atomic_expr_no_curly] = STATE(1211), + [sym_literal] = ACTIONS(1500), + [sym_set_n] = ACTIONS(1500), + [sym_name_at] = ACTIONS(1502), + [sym_qualified_name] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2494), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_Prop] = ACTIONS(1500), + [anon_sym_Set] = ACTIONS(1500), + [anon_sym_quote] = ACTIONS(1500), + [anon_sym_quoteTerm] = ACTIONS(1500), + [anon_sym_unquote] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(2496), + [anon_sym_LPAREN_PIPE] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1500), + }, + [1203] = { + [sym_expr] = STATE(2040), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [1204] = { + [sym_expr] = STATE(2041), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2500), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [1205] = { + [sym_expr] = STATE(2042), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(2500), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [1206] = { + [sym_expr] = STATE(2043), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [828] = { - [sym_expr] = STATE(341), - [sym__expr1] = STATE(822), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(823), - [sym_atomic_expr] = STATE(382), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [sym_tele_arrow] = STATE(824), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(535), - [aux_sym__application_repeat1] = STATE(825), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(1030), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(1032), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(506), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), + [1207] = { + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_rewrite] = ACTIONS(1038), + [anon_sym_with] = ACTIONS(1038), }, - [829] = { - [sym_atomic_expr] = STATE(388), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [1208] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2502), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_rewrite] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), }, - [830] = { - [sym_lambda_bindings] = STATE(1569), - [sym_untyped_bindings] = STATE(1570), - [sym_typed_bindings] = STATE(1570), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACE_LBRACE] = ACTIONS(530), + [1209] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_DASH_GT] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(162), }, - [831] = { - [sym_forall_bindings] = STATE(1571), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [1210] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE_RBRACE] = ACTIONS(164), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_rewrite] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [832] = { - [sym__expr1] = STATE(833), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(834), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(1572), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [1211] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE_RBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_rewrite] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [833] = { - [sym_rewrite_equations] = STATE(1575), - [sym_with_expressions] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(152), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [1212] = { + [sym_expr] = STATE(2045), + [sym__expr1] = STATE(1208), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(1209), + [sym_atomic_expr] = STATE(1210), + [sym__atomic_expr_curly] = STATE(1211), + [sym__atomic_expr_no_curly] = STATE(1211), + [sym_tele_arrow] = STATE(1212), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(1213), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1500), + [sym_set_n] = ACTIONS(1500), + [sym_name_at] = ACTIONS(1502), + [sym_qualified_name] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1508), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(1991), - [anon_sym_with] = ACTIONS(1993), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_Prop] = ACTIONS(1500), + [anon_sym_Set] = ACTIONS(1500), + [anon_sym_quote] = ACTIONS(1500), + [anon_sym_quoteTerm] = ACTIONS(1500), + [anon_sym_unquote] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LPAREN_PIPE] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1500), }, - [834] = { - [sym_where_clause] = STATE(410), - [sym_rhs] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(170), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [1213] = { + [sym__expr2] = STATE(680), + [sym_atomic_expr] = STATE(1210), + [sym__atomic_expr_curly] = STATE(1211), + [sym__atomic_expr_no_curly] = STATE(1211), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(1500), + [sym_set_n] = ACTIONS(1500), + [sym_name_at] = ACTIONS(1502), + [sym_qualified_name] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2488), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1995), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(542), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1995), - [anon_sym_module] = ACTIONS(544), - [anon_sym_rewrite] = ACTIONS(170), - [anon_sym_with] = ACTIONS(170), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_Prop] = ACTIONS(1500), + [anon_sym_Set] = ACTIONS(1500), + [anon_sym_quote] = ACTIONS(1500), + [anon_sym_quoteTerm] = ACTIONS(1500), + [anon_sym_unquote] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_LPAREN_PIPE] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1500), }, - [835] = { - [sym__expr1] = STATE(833), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [1214] = { + [sym__expr1] = STATE(2046), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(834), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(1577), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(1989), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(344), + [sym_set_n] = ACTIONS(344), + [sym_name_at] = ACTIONS(346), + [sym_qualified_name] = ACTIONS(344), + [anon_sym__] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_Prop] = ACTIONS(344), + [anon_sym_Set] = ACTIONS(344), + [anon_sym_quote] = ACTIONS(344), + [anon_sym_quoteTerm] = ACTIONS(344), + [anon_sym_unquote] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LPAREN_PIPE] = ACTIONS(360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(344), }, - [836] = { - [sym__application] = STATE(413), - [sym__expr2] = STATE(95), + [1215] = { + [sym__expr1] = STATE(2047), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(837), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(344), + [sym_set_n] = ACTIONS(344), + [sym_name_at] = ACTIONS(346), + [sym_qualified_name] = ACTIONS(344), + [anon_sym__] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE_LBRACE] = ACTIONS(350), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_Prop] = ACTIONS(344), + [anon_sym_Set] = ACTIONS(344), + [anon_sym_quote] = ACTIONS(344), + [anon_sym_quoteTerm] = ACTIONS(344), + [anon_sym_unquote] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LPAREN_PIPE] = ACTIONS(360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(344), }, - [837] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [1216] = { + [sym_with_expressions] = STATE(2048), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE_RBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_rewrite] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), }, - [838] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(1981), + [1217] = { + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE_RBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_rewrite] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), }, - [839] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(1981), + [1218] = { + [sym_expr] = STATE(2049), + [sym__expr1] = STATE(1208), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(1209), + [sym_atomic_expr] = STATE(1210), + [sym__atomic_expr_curly] = STATE(1211), + [sym__atomic_expr_no_curly] = STATE(1211), + [sym_tele_arrow] = STATE(1212), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(1213), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1500), + [sym_set_n] = ACTIONS(1500), + [sym_name_at] = ACTIONS(1502), + [sym_qualified_name] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1508), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_Prop] = ACTIONS(1500), + [anon_sym_Set] = ACTIONS(1500), + [anon_sym_quote] = ACTIONS(1500), + [anon_sym_quoteTerm] = ACTIONS(1500), + [anon_sym_unquote] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LPAREN_PIPE] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1500), }, - [840] = { - [sym_expr] = STATE(1578), - [sym__expr1] = STATE(822), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(823), - [sym_atomic_expr] = STATE(382), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [sym_tele_arrow] = STATE(824), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(535), - [aux_sym__application_repeat1] = STATE(825), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(1030), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(1032), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(506), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), + [1219] = { + [sym_vopen] = STATE(2050), + [sym_declarations] = STATE(2051), + [sym__declarations0] = STATE(2052), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [841] = { - [ts_builtin_sym_end] = ACTIONS(1997), - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_rewrite] = ACTIONS(1997), - [anon_sym_with] = ACTIONS(1997), + [1220] = { + [sym_anonymous_name] = STATE(2053), + [sym_name] = ACTIONS(2506), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), }, - [842] = { - [sym__expr2] = STATE(146), - [sym_atomic_expr] = STATE(337), - [sym__atomic_expr_curly] = STATE(338), - [sym__atomic_expr_no_curly] = STATE(338), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(426), - [sym_set_n] = ACTIONS(426), - [sym_name_at] = ACTIONS(428), - [sym_qualified_name] = ACTIONS(426), - [anon_sym__] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_LBRACE_LBRACE] = ACTIONS(432), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1999), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(426), - [anon_sym_Prop] = ACTIONS(426), - [anon_sym_Set] = ACTIONS(426), - [anon_sym_quote] = ACTIONS(426), - [anon_sym_quoteTerm] = ACTIONS(426), - [anon_sym_unquote] = ACTIONS(426), - [anon_sym_LPAREN] = ACTIONS(442), - [anon_sym_LPAREN_PIPE] = ACTIONS(444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(426), + [1221] = { + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE_RBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_rewrite] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), }, - [843] = { - [sym__application] = STATE(336), - [sym__expr2] = STATE(14), - [sym_atomic_expr] = STATE(337), - [sym__atomic_expr_curly] = STATE(338), - [sym__atomic_expr_no_curly] = STATE(338), - [sym_non_absurd_lambda_clause] = STATE(339), - [sym_absurd_lambda_clause] = STATE(339), - [sym_lambda_clause] = STATE(1580), - [aux_sym__application_repeat1] = STATE(342), - [sym_literal] = ACTIONS(426), - [sym_set_n] = ACTIONS(426), - [sym_name_at] = ACTIONS(428), - [sym_qualified_name] = ACTIONS(426), - [anon_sym__] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_LBRACE_LBRACE] = ACTIONS(432), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(434), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(426), - [anon_sym_Prop] = ACTIONS(426), - [anon_sym_Set] = ACTIONS(426), - [anon_sym_quote] = ACTIONS(426), - [anon_sym_quoteTerm] = ACTIONS(426), - [anon_sym_unquote] = ACTIONS(426), - [anon_sym_LPAREN] = ACTIONS(442), - [anon_sym_LPAREN_PIPE] = ACTIONS(444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(426), - [sym_catchall_pragma] = ACTIONS(446), + [1222] = { + [sym_where_clause] = STATE(2054), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE_RBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_rewrite] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), }, - [844] = { - [sym_semi] = STATE(843), - [aux_sym_lambda_where_clauses_repeat1] = STATE(1581), - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_rewrite] = ACTIONS(2001), - [anon_sym_with] = ACTIONS(2001), + [1223] = { + [sym__expr1] = STATE(662), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(663), + [sym__declaration] = STATE(664), + [sym_function_clause] = STATE(665), + [aux_sym_source_file_repeat1] = STATE(1223), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(1572), + [sym_set_n] = ACTIONS(1572), + [sym_name_at] = ACTIONS(1575), + [sym_qualified_name] = ACTIONS(1572), + [anon_sym__] = ACTIONS(1572), + [anon_sym_DOT] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE_RBRACE] = ACTIONS(644), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(1587), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_Prop] = ACTIONS(1572), + [anon_sym_Set] = ACTIONS(1572), + [anon_sym_quote] = ACTIONS(1572), + [anon_sym_quoteTerm] = ACTIONS(1572), + [anon_sym_unquote] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LPAREN_PIPE] = ACTIONS(1596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1572), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_rewrite] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), }, - [845] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(1588), - [sym_lambda_where_clauses] = STATE(626), - [aux_sym__application_repeat1] = STATE(1589), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(2003), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [1224] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE_RBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2005), - [anon_sym_BSLASH] = ACTIONS(2007), - [anon_sym_forall] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(2013), - }, - [846] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2015), - [anon_sym_COLON] = ACTIONS(819), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), }, - [847] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(847), - [sym_typed_bindings] = STATE(847), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COLON] = ACTIONS(825), + [1225] = { + [sym_atomic_expr] = STATE(2055), + [sym__atomic_expr_curly] = STATE(1237), + [sym__atomic_expr_no_curly] = STATE(1237), + [sym_literal] = ACTIONS(1514), + [sym_set_n] = ACTIONS(1514), + [sym_name_at] = ACTIONS(1516), + [sym_qualified_name] = ACTIONS(1514), + [anon_sym__] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1520), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1514), + [anon_sym_Prop] = ACTIONS(1514), + [anon_sym_Set] = ACTIONS(1514), + [anon_sym_quote] = ACTIONS(1514), + [anon_sym_quoteTerm] = ACTIONS(1514), + [anon_sym_unquote] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LPAREN_PIPE] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1514), }, - [848] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(1596), + [1226] = { + [sym_expr] = STATE(2057), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1597), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1598), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1599), - [aux_sym__application_repeat1] = STATE(1600), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2017), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2019), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(2508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2021), - [anon_sym_forall] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [849] = { - [sym_atomic_expr] = STATE(388), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1060), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [1227] = { + [sym_expr] = STATE(2058), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2510), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [850] = { - [sym_lambda_bindings] = STATE(1602), - [sym_untyped_bindings] = STATE(1603), - [sym_typed_bindings] = STATE(1603), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACE_LBRACE] = ACTIONS(530), + [1228] = { + [sym_lambda_bindings] = STATE(2064), + [sym_untyped_bindings] = STATE(2065), + [sym_typed_bindings] = STATE(2065), + [anon_sym_DOT] = ACTIONS(2512), + [anon_sym_DOT_DOT] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2516), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2518), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_where] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2522), }, - [851] = { - [sym_forall_bindings] = STATE(1604), + [1229] = { + [sym_forall_bindings] = STATE(2066), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -48307,204 +64381,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [852] = { - [sym__expr1] = STATE(1605), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1606), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(1607), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1060), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [853] = { - [sym_rewrite_equations] = STATE(1610), - [sym_with_expressions] = STATE(643), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(2029), - [anon_sym_with] = ACTIONS(2031), - }, - [854] = { - [sym_where_clause] = STATE(1493), - [sym_rhs] = STATE(1614), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2033), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(2035), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(2033), - [anon_sym_module] = ACTIONS(2037), - }, - [855] = { - [sym__expr1] = STATE(853), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(854), - [sym__declaration] = STATE(772), - [sym_function_clause] = STATE(773), - [aux_sym_source_file_repeat1] = STATE(1615), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1060), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_in] = ACTIONS(2039), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(460), - }, - [856] = { - [sym__application] = STATE(413), - [sym__expr2] = STATE(95), + [1230] = { + [sym__expr1] = STATE(2067), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1060), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [857] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1060), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(2068), + [sym__declaration] = STATE(2069), + [sym_function_clause] = STATE(2070), + [aux_sym_source_file_repeat1] = STATE(2071), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(344), + [sym_set_n] = ACTIONS(344), + [sym_name_at] = ACTIONS(346), + [sym_qualified_name] = ACTIONS(344), + [anon_sym__] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE_LBRACE] = ACTIONS(350), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_Prop] = ACTIONS(344), + [anon_sym_Set] = ACTIONS(344), + [anon_sym_quote] = ACTIONS(344), + [anon_sym_quoteTerm] = ACTIONS(344), + [anon_sym_unquote] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LPAREN_PIPE] = ACTIONS(360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(344), }, - [858] = { - [sym_expr] = STATE(1616), + [1231] = { + [sym_expr] = STATE(2072), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -48537,238 +64451,314 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(2510), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [859] = { - [anon_sym_RBRACE] = ACTIONS(1008), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1010), - }, - [860] = { - [anon_sym_RBRACE] = ACTIONS(2041), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1420), - }, - [861] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2041), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1422), - }, - [862] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2041), - }, - [863] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - }, - [864] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - }, - [865] = { - [anon_sym_RBRACE] = ACTIONS(2043), - [sym_comment] = ACTIONS(86), - }, - [866] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2045), - [sym_comment] = ACTIONS(86), - }, - [867] = { - [anon_sym_RBRACE] = ACTIONS(819), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2047), - [anon_sym_COLON] = ACTIONS(819), - }, - [868] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(868), - [sym_typed_bindings] = STATE(868), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COLON] = ACTIONS(825), - }, - [869] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(1621), + [1232] = { + [sym_expr] = STATE(2073), + [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1622), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1623), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1147), - [aux_sym__application_repeat1] = STATE(173), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [870] = { - [sym_where_clause] = STATE(1493), - [sym_rhs] = STATE(1494), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [1233] = { + [sym_literal] = ACTIONS(1194), + [sym_set_n] = ACTIONS(1194), + [sym_name_at] = ACTIONS(1194), + [sym_qualified_name] = ACTIONS(1194), + [anon_sym__] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1194), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1194), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1194), + [anon_sym_where] = ACTIONS(1194), + [anon_sym_forall] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_in] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(1194), + [anon_sym_Prop] = ACTIONS(1194), + [anon_sym_Set] = ACTIONS(1194), + [anon_sym_quote] = ACTIONS(1194), + [anon_sym_quoteTerm] = ACTIONS(1194), + [anon_sym_unquote] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LPAREN_PIPE] = ACTIONS(1194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), + }, + [1234] = { + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [anon_sym_RBRACE_RBRACE] = ACTIONS(158), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2049), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1867), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(2049), - [anon_sym_module] = ACTIONS(1869), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + [anon_sym_with] = ACTIONS(158), }, - [871] = { - [sym__expr1] = STATE(200), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(870), - [sym__declaration] = STATE(772), - [sym_function_clause] = STATE(773), - [aux_sym_source_file_repeat1] = STATE(1625), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(260), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [1235] = { + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [anon_sym_RBRACE_RBRACE] = ACTIONS(160), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), - [anon_sym_in] = ACTIONS(2051), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(460), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + [anon_sym_with] = ACTIONS(160), + }, + [1236] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE_RBRACE] = ACTIONS(164), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), + }, + [1237] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE_RBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [872] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2045), + [1238] = { + [sym__application] = STATE(2074), + [sym__expr2] = STATE(1235), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1236), + [sym__atomic_expr_curly] = STATE(1237), + [sym__atomic_expr_no_curly] = STATE(1237), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(1239), + [sym_literal] = ACTIONS(1514), + [sym_set_n] = ACTIONS(1514), + [sym_name_at] = ACTIONS(1516), + [sym_qualified_name] = ACTIONS(1514), + [anon_sym__] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1520), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_forall] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(1514), + [anon_sym_Prop] = ACTIONS(1514), + [anon_sym_Set] = ACTIONS(1514), + [anon_sym_quote] = ACTIONS(1514), + [anon_sym_quoteTerm] = ACTIONS(1514), + [anon_sym_unquote] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LPAREN_PIPE] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1514), }, - [873] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(2045), + [1239] = { + [sym__expr2] = STATE(2075), + [sym_atomic_expr] = STATE(1236), + [sym__atomic_expr_curly] = STATE(1237), + [sym__atomic_expr_no_curly] = STATE(1237), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(1514), + [sym_set_n] = ACTIONS(1514), + [sym_name_at] = ACTIONS(1516), + [sym_qualified_name] = ACTIONS(1514), + [anon_sym__] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1520), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_forall] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(1514), + [anon_sym_Prop] = ACTIONS(1514), + [anon_sym_Set] = ACTIONS(1514), + [anon_sym_quote] = ACTIONS(1514), + [anon_sym_quoteTerm] = ACTIONS(1514), + [anon_sym_unquote] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LPAREN_PIPE] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1514), }, - [874] = { - [anon_sym_SEMI] = ACTIONS(2053), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2053), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2053), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2053), - [anon_sym_EQ] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2053), - [anon_sym_RPAREN] = ACTIONS(2053), - [anon_sym_PIPE_RPAREN] = ACTIONS(2053), - [anon_sym_COLON] = ACTIONS(2053), + [1240] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE_RBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), }, - [875] = { - [sym_expr] = STATE(883), + [1241] = { + [sym_atomic_expr] = STATE(2076), + [sym__atomic_expr_curly] = STATE(1253), + [sym__atomic_expr_no_curly] = STATE(1253), + [sym_literal] = ACTIONS(1532), + [sym_set_n] = ACTIONS(1532), + [sym_name_at] = ACTIONS(1534), + [sym_qualified_name] = ACTIONS(1532), + [anon_sym__] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1538), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_Prop] = ACTIONS(1532), + [anon_sym_Set] = ACTIONS(1532), + [anon_sym_quote] = ACTIONS(1532), + [anon_sym_quoteTerm] = ACTIONS(1532), + [anon_sym_unquote] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_LPAREN_PIPE] = ACTIONS(1548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1532), + }, + [1242] = { + [sym_expr] = STATE(2078), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -48789,7 +64779,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(2524), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -48805,8 +64795,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [876] = { - [sym_expr] = STATE(884), + [1243] = { + [sym_expr] = STATE(2079), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -48828,7 +64818,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1090), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2526), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -48843,8 +64833,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [877] = { - [sym_expr] = STATE(885), + [1244] = { + [sym_lambda_bindings] = STATE(2085), + [sym_untyped_bindings] = STATE(2086), + [sym_typed_bindings] = STATE(2086), + [anon_sym_DOT] = ACTIONS(2528), + [anon_sym_DOT_DOT] = ACTIONS(2530), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(2538), + }, + [1245] = { + [sym_forall_bindings] = STATE(2087), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [1246] = { + [sym__expr1] = STATE(263), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(2088), + [sym__declaration] = STATE(2089), + [sym_function_clause] = STATE(2090), + [aux_sym_source_file_repeat1] = STATE(2091), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(344), + [sym_set_n] = ACTIONS(344), + [sym_name_at] = ACTIONS(346), + [sym_qualified_name] = ACTIONS(344), + [anon_sym__] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_Prop] = ACTIONS(344), + [anon_sym_Set] = ACTIONS(344), + [anon_sym_quote] = ACTIONS(344), + [anon_sym_quoteTerm] = ACTIONS(344), + [anon_sym_unquote] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LPAREN_PIPE] = ACTIONS(360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + }, + [1247] = { + [sym_expr] = STATE(2092), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -48877,47 +64928,363 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(2526), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [878] = { - [ts_builtin_sym_end] = ACTIONS(186), - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [1248] = { + [sym_expr] = STATE(2093), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_rewrite] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [879] = { - [sym_expr] = STATE(883), + [1249] = { + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + }, + [1250] = { + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [anon_sym_RBRACE_RBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + }, + [1251] = { + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [anon_sym_RBRACE_RBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + }, + [1252] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE_RBRACE] = ACTIONS(164), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + }, + [1253] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE_RBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + }, + [1254] = { + [sym__application] = STATE(2094), + [sym__expr2] = STATE(1251), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1252), + [sym__atomic_expr_curly] = STATE(1253), + [sym__atomic_expr_no_curly] = STATE(1253), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(1255), + [sym_literal] = ACTIONS(1532), + [sym_set_n] = ACTIONS(1532), + [sym_name_at] = ACTIONS(1534), + [sym_qualified_name] = ACTIONS(1532), + [anon_sym__] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1538), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_forall] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_Prop] = ACTIONS(1532), + [anon_sym_Set] = ACTIONS(1532), + [anon_sym_quote] = ACTIONS(1532), + [anon_sym_quoteTerm] = ACTIONS(1532), + [anon_sym_unquote] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_LPAREN_PIPE] = ACTIONS(1548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1532), + }, + [1255] = { + [sym__expr2] = STATE(2095), + [sym_atomic_expr] = STATE(1252), + [sym__atomic_expr_curly] = STATE(1253), + [sym__atomic_expr_no_curly] = STATE(1253), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(1532), + [sym_set_n] = ACTIONS(1532), + [sym_name_at] = ACTIONS(1534), + [sym_qualified_name] = ACTIONS(1532), + [anon_sym__] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1538), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_forall] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_Prop] = ACTIONS(1532), + [anon_sym_Set] = ACTIONS(1532), + [anon_sym_quote] = ACTIONS(1532), + [anon_sym_quoteTerm] = ACTIONS(1532), + [anon_sym_unquote] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_LPAREN_PIPE] = ACTIONS(1548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1532), + }, + [1256] = { + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), + }, + [1257] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE_RBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + }, + [1258] = { + [sym_atomic_expr] = STATE(2099), + [sym__atomic_expr_curly] = STATE(1273), + [sym__atomic_expr_no_curly] = STATE(1273), + [sym_literal] = ACTIONS(1550), + [sym_set_n] = ACTIONS(1550), + [sym_name_at] = ACTIONS(1552), + [sym_qualified_name] = ACTIONS(1550), + [anon_sym__] = ACTIONS(1550), + [anon_sym_DOT] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2542), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1550), + [anon_sym_Prop] = ACTIONS(1550), + [anon_sym_Set] = ACTIONS(1550), + [anon_sym_quote] = ACTIONS(1550), + [anon_sym_quoteTerm] = ACTIONS(1550), + [anon_sym_unquote] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(2544), + [anon_sym_LPAREN_PIPE] = ACTIONS(1568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1550), + }, + [1259] = { + [sym_atomic_expr] = STATE(2099), + [sym__atomic_expr_curly] = STATE(1273), + [sym__atomic_expr_no_curly] = STATE(1273), + [sym_literal] = ACTIONS(1550), + [sym_set_n] = ACTIONS(1550), + [sym_name_at] = ACTIONS(1552), + [sym_qualified_name] = ACTIONS(1550), + [anon_sym__] = ACTIONS(1550), + [anon_sym_DOT] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2548), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1550), + [anon_sym_Prop] = ACTIONS(1550), + [anon_sym_Set] = ACTIONS(1550), + [anon_sym_quote] = ACTIONS(1550), + [anon_sym_quoteTerm] = ACTIONS(1550), + [anon_sym_unquote] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_LPAREN_PIPE] = ACTIONS(1568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1550), + }, + [1260] = { + [sym_expr] = STATE(2104), [sym__expr1] = STATE(38), - [sym__application] = STATE(557), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -48936,7 +65303,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(2552), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -48952,10 +65319,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [880] = { - [sym_expr] = STATE(884), + [1261] = { + [sym_expr] = STATE(2105), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(185), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -48975,7 +65342,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1090), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2554), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -48990,10 +65357,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [881] = { - [sym_expr] = STATE(885), + [1262] = { + [sym_lambda_bindings] = STATE(2111), + [sym_untyped_bindings] = STATE(2112), + [sym_typed_bindings] = STATE(2112), + [anon_sym_DOT] = ACTIONS(2556), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(2560), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2562), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(2564), + [anon_sym_LPAREN] = ACTIONS(2566), + }, + [1263] = { + [sym_forall_bindings] = STATE(2113), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [1264] = { + [sym__expr1] = STATE(263), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(2114), + [sym__declaration] = STATE(2115), + [sym_function_clause] = STATE(2116), + [aux_sym_source_file_repeat1] = STATE(2117), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(344), + [sym_set_n] = ACTIONS(344), + [sym_name_at] = ACTIONS(346), + [sym_qualified_name] = ACTIONS(344), + [anon_sym__] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_Prop] = ACTIONS(344), + [anon_sym_Set] = ACTIONS(344), + [anon_sym_quote] = ACTIONS(344), + [anon_sym_quoteTerm] = ACTIONS(344), + [anon_sym_unquote] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_LPAREN_PIPE] = ACTIONS(360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + }, + [1265] = { + [sym_expr] = STATE(2118), [sym__expr1] = STATE(110), - [sym__application] = STATE(559), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -49024,398 +65452,528 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(2554), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [882] = { - [ts_builtin_sym_end] = ACTIONS(228), - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [1266] = { + [sym_expr] = STATE(2119), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_rewrite] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [1267] = { + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + }, + [1268] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2568), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [1269] = { + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [anon_sym_RBRACE_RBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), }, - [883] = { - [anon_sym_RBRACE] = ACTIONS(2057), - [sym_comment] = ACTIONS(86), + [1270] = { + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [anon_sym_RBRACE_RBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), }, - [884] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2059), + [1271] = { [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(162), }, - [885] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2059), + [1272] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE_RBRACE] = ACTIONS(164), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_module] = ACTIONS(164), }, - [886] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(2059), + [1273] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE_RBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), }, - [887] = { - [sym_expr] = STATE(1628), - [sym__expr1] = STATE(380), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(381), - [sym_atomic_expr] = STATE(382), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [sym_tele_arrow] = STATE(384), + [1274] = { + [sym_expr] = STATE(2121), + [sym__expr1] = STATE(1268), + [sym__application] = STATE(1269), + [sym__expr2] = STATE(1270), + [sym__atomic_exprs1] = STATE(1271), + [sym_atomic_expr] = STATE(1272), + [sym__atomic_expr_curly] = STATE(1273), + [sym__atomic_expr_no_curly] = STATE(1273), + [sym_tele_arrow] = STATE(1274), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(22), - [aux_sym__application_repeat1] = STATE(385), + [aux_sym__expr1_repeat1] = STATE(1275), + [aux_sym__application_repeat1] = STATE(1276), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(500), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(502), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(506), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(20), - [anon_sym_forall] = ACTIONS(22), - [anon_sym_let] = ACTIONS(24), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), - }, - [888] = { - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_rewrite] = ACTIONS(2061), - [anon_sym_with] = ACTIONS(2061), + [sym_literal] = ACTIONS(1550), + [sym_set_n] = ACTIONS(1550), + [sym_name_at] = ACTIONS(1552), + [sym_qualified_name] = ACTIONS(1550), + [anon_sym__] = ACTIONS(1550), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1558), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_forall] = ACTIONS(1562), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1550), + [anon_sym_Prop] = ACTIONS(1550), + [anon_sym_Set] = ACTIONS(1550), + [anon_sym_quote] = ACTIONS(1550), + [anon_sym_quoteTerm] = ACTIONS(1550), + [anon_sym_unquote] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_LPAREN_PIPE] = ACTIONS(1568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1550), }, - [889] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_rewrite] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), - }, - [890] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_rewrite] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), + [1275] = { + [sym__application] = STATE(2128), + [sym__expr2] = STATE(1270), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(2129), + [sym__atomic_expr_curly] = STATE(2130), + [sym__atomic_expr_no_curly] = STATE(2130), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(2131), + [sym_literal] = ACTIONS(2572), + [sym_set_n] = ACTIONS(2572), + [sym_name_at] = ACTIONS(2574), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym__] = ACTIONS(2572), + [anon_sym_DOT] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2576), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2578), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_forall] = ACTIONS(1562), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_Prop] = ACTIONS(2572), + [anon_sym_Set] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_LPAREN] = ACTIONS(2580), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2572), }, - [891] = { - [sym__application] = STATE(1629), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [1276] = { + [sym__expr2] = STATE(2132), + [sym_atomic_expr] = STATE(1272), + [sym__atomic_expr_curly] = STATE(1273), + [sym__atomic_expr_no_curly] = STATE(1273), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(1550), + [sym_set_n] = ACTIONS(1550), + [sym_name_at] = ACTIONS(1552), + [sym_qualified_name] = ACTIONS(1550), + [anon_sym__] = ACTIONS(1550), + [anon_sym_DOT] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2542), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_forall] = ACTIONS(1562), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1550), + [anon_sym_Prop] = ACTIONS(1550), + [anon_sym_Set] = ACTIONS(1550), + [anon_sym_quote] = ACTIONS(1550), + [anon_sym_quoteTerm] = ACTIONS(1550), + [anon_sym_unquote] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(2544), + [anon_sym_LPAREN_PIPE] = ACTIONS(1568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1550), }, - [892] = { - [sym__application] = STATE(1630), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [1277] = { + [sym_vclose] = STATE(2134), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(2135), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(2584), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [893] = { - [sym_binding_name] = STATE(1631), - [sym__application] = STATE(1632), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [1278] = { + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1284), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), }, - [894] = { - [ts_builtin_sym_end] = ACTIONS(968), - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), - [anon_sym_rewrite] = ACTIONS(968), - [anon_sym_with] = ACTIONS(968), + [1279] = { + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), }, - [895] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(2063), + [1280] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2065), + [anon_sym_where] = ACTIONS(2586), }, - [896] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(2067), - [sym_comment] = ACTIONS(86), + [1281] = { + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), }, - [897] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2063), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2069), + [1282] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE_RBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), }, - [898] = { - [ts_builtin_sym_end] = ACTIONS(30), - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_rewrite] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), + [1283] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE_RBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), }, - [899] = { - [sym_atomic_expr] = STATE(1637), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(1131), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [1284] = { + [ts_builtin_sym_end] = ACTIONS(2588), + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_rewrite] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), }, - [900] = { - [sym_expr] = STATE(1639), + [1285] = { + [sym_expr] = STATE(2137), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -49436,7 +65994,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(2071), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -49452,8 +66009,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [901] = { - [sym_expr] = STATE(1640), + [1286] = { + [sym_expr] = STATE(2138), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -49475,7 +66032,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2073), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -49490,45 +66046,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [902] = { - [sym_expr] = STATE(1643), - [sym__expr1] = STATE(1644), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1645), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1646), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(1647), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2075), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [903] = { - [sym_expr] = STATE(1648), + [1287] = { + [sym_expr] = STATE(2139), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -49561,473 +66080,212 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(2073), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [904] = { - [sym_expr] = STATE(1649), - [sym__expr1] = STATE(126), + [1288] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + }, + [1289] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + }, + [1290] = { + [sym_expr] = STATE(1298), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [905] = { - [sym__application] = STATE(1651), - [sym__expr2] = STATE(95), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [aux_sym__application_repeat1] = STATE(1652), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(1131), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2079), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - }, - [906] = { - [ts_builtin_sym_end] = ACTIONS(1044), - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_RPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_rewrite] = ACTIONS(1044), - [anon_sym_with] = ACTIONS(1044), - }, - [907] = { - [ts_builtin_sym_end] = ACTIONS(164), - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_rewrite] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), - }, - [908] = { - [ts_builtin_sym_end] = ACTIONS(168), - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_rewrite] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), - }, - [909] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_rewrite] = ACTIONS(1046), - [anon_sym_with] = ACTIONS(1046), - }, - [910] = { - [sym_semi] = STATE(1653), - [aux_sym_lambda_where_clauses_repeat1] = STATE(1654), - [ts_builtin_sym_end] = ACTIONS(1048), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_rewrite] = ACTIONS(1048), - [anon_sym_with] = ACTIONS(1048), - }, - [911] = { - [ts_builtin_sym_end] = ACTIONS(1052), - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_RPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_COLON] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_rewrite] = ACTIONS(1052), - [anon_sym_with] = ACTIONS(1052), - }, - [912] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(1131), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2079), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - }, - [913] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2063), - }, - [914] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2081), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [915] = { - [sym_expr] = STATE(1635), - [sym__expr1] = STATE(924), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(925), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(928), + [1291] = { + [sym_expr] = STATE(1299), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(929), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1157), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1159), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1633), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [916] = { - [sym__application] = STATE(1656), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(1127), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [1292] = { + [sym_expr] = STATE(1312), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [917] = { - [ts_builtin_sym_end] = ACTIONS(30), - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [1293] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_rewrite] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), - }, - [918] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1157), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [919] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1157), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2091), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), }, - [920] = { - [sym_expr] = STATE(1665), + [1294] = { + [sym_expr] = STATE(1298), [sym__expr1] = STATE(38), - [sym__application] = STATE(170), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -50046,7 +66304,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(1631), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -50062,10 +66320,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [921] = { - [sym_expr] = STATE(1666), + [1295] = { + [sym_expr] = STATE(1299), [sym__expr1] = STATE(60), - [sym__application] = STATE(185), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -50085,7 +66343,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2097), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1633), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -50100,10 +66358,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [922] = { - [sym_expr] = STATE(1667), + [1296] = { + [sym_expr] = STATE(1312), [sym__expr1] = STATE(110), - [sym__application] = STATE(213), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -50134,924 +66392,234 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(2097), + [anon_sym_RPAREN] = ACTIONS(1633), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [923] = { - [sym_expr] = STATE(1668), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [924] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2099), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_rewrite] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), - }, - [925] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2101), - [anon_sym_PIPE] = ACTIONS(162), - }, - [926] = { - [ts_builtin_sym_end] = ACTIONS(164), - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_rewrite] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), - }, - [927] = { - [ts_builtin_sym_end] = ACTIONS(168), - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_rewrite] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), - }, - [928] = { - [sym_expr] = STATE(1670), - [sym__expr1] = STATE(924), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(925), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(928), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(929), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1157), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1159), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [929] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1157), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [930] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_literal] = ACTIONS(1302), - [sym_set_n] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [sym_name_at] = ACTIONS(1302), - [sym_qualified_name] = ACTIONS(1302), - [anon_sym__] = ACTIONS(1302), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1302), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_BSLASH] = ACTIONS(1302), - [anon_sym_where] = ACTIONS(1302), - [anon_sym_forall] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1302), - [anon_sym_Prop] = ACTIONS(1302), - [anon_sym_Set] = ACTIONS(1302), - [anon_sym_quote] = ACTIONS(1302), - [anon_sym_quoteTerm] = ACTIONS(1302), - [anon_sym_unquote] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_LPAREN_PIPE] = ACTIONS(1302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_COLON] = ACTIONS(1302), - [anon_sym_module] = ACTIONS(1302), - [anon_sym_rewrite] = ACTIONS(1302), - [anon_sym_with] = ACTIONS(1302), - }, - [931] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_literal] = ACTIONS(1320), - [sym_set_n] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_name_at] = ACTIONS(1320), - [sym_qualified_name] = ACTIONS(1320), - [anon_sym__] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1320), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_BSLASH] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_forall] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_Prop] = ACTIONS(1320), - [anon_sym_Set] = ACTIONS(1320), - [anon_sym_quote] = ACTIONS(1320), - [anon_sym_quoteTerm] = ACTIONS(1320), - [anon_sym_unquote] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_RPAREN] = ACTIONS(1320), - [anon_sym_LPAREN_PIPE] = ACTIONS(1320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1320), - [anon_sym_COLON] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_rewrite] = ACTIONS(1320), - [anon_sym_with] = ACTIONS(1320), - }, - [932] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_literal] = ACTIONS(1322), - [sym_set_n] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [sym_name_at] = ACTIONS(1322), - [sym_qualified_name] = ACTIONS(1322), - [anon_sym__] = ACTIONS(1322), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1322), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_BSLASH] = ACTIONS(1322), - [anon_sym_where] = ACTIONS(1322), - [anon_sym_forall] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_in] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_Prop] = ACTIONS(1322), - [anon_sym_Set] = ACTIONS(1322), - [anon_sym_quote] = ACTIONS(1322), - [anon_sym_quoteTerm] = ACTIONS(1322), - [anon_sym_unquote] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_LPAREN_PIPE] = ACTIONS(1322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_module] = ACTIONS(1322), - [anon_sym_rewrite] = ACTIONS(1322), - [anon_sym_with] = ACTIONS(1322), - }, - [933] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_COLON] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_rewrite] = ACTIONS(1352), - [anon_sym_with] = ACTIONS(1352), - }, - [934] = { - [sym_semi] = STATE(1671), - [aux_sym__declarations1_repeat1] = STATE(1672), - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [1297] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_rewrite] = ACTIONS(1376), - [anon_sym_with] = ACTIONS(1376), - }, - [935] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_where] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_RPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1380), - [anon_sym_module] = ACTIONS(1380), - [anon_sym_rewrite] = ACTIONS(1380), - [anon_sym_with] = ACTIONS(1380), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), }, - [936] = { + [1298] = { + [anon_sym_RBRACE] = ACTIONS(2594), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2103), - }, - [937] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_where] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_rewrite] = ACTIONS(1386), - [anon_sym_with] = ACTIONS(1386), - }, - [938] = { - [sym_atomic_expr] = STATE(1185), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(1198), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), - }, - [939] = { - [sym_expr] = STATE(756), - [sym__expr1] = STATE(1676), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1677), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(1678), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1679), - [aux_sym__application_repeat1] = STATE(1680), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2105), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_forall] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1206), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [940] = { - [sym_lambda_bindings] = STATE(1681), - [sym_untyped_bindings] = STATE(1682), - [sym_typed_bindings] = STATE(1682), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [1299] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2596), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(546), - [anon_sym_LPAREN] = ACTIONS(258), }, - [941] = { - [sym_forall_bindings] = STATE(1683), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [1300] = { + [anon_sym_LBRACE] = ACTIONS(2598), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2600), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [anon_sym_LPAREN] = ACTIONS(2602), }, - [942] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1689), - [sym__declaration] = STATE(202), - [sym_function_clause] = STATE(203), - [aux_sym_source_file_repeat1] = STATE(1690), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [1301] = { + [sym__application] = STATE(2146), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(2147), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(2604), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [943] = { - [sym__application] = STATE(789), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(622), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [aux_sym__application_repeat1] = STATE(1694), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(1198), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2117), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_forall] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1206), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), - }, - [944] = { - [sym_semi] = STATE(1695), - [aux_sym_lambda_where_clauses_repeat1] = STATE(1696), - [anon_sym_SEMI] = ACTIONS(1014), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - }, - [945] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(622), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(1198), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2117), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_forall] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1206), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [946] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(947), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(948), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(949), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [1302] = { + [sym__application] = STATE(2148), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2604), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [947] = { - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_RPAREN] = ACTIONS(280), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [948] = { + [1303] = { + [sym_vopen] = STATE(2149), + [sym__layout_open_brace] = ACTIONS(426), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(162), }, - [949] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(947), - [sym__application] = STATE(39), + [1304] = { + [sym_binding_name] = STATE(2150), + [sym__application] = STATE(2151), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(948), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(949), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [950] = { - [sym__application] = STATE(906), - [sym__expr2] = STATE(95), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [sym_non_absurd_lambda_clause] = STATE(909), - [sym_absurd_lambda_clause] = STATE(909), - [sym_lambda_clause] = STATE(1701), - [sym_lambda_where_clauses] = STATE(911), - [aux_sym__application_repeat1] = STATE(1702), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(2121), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2123), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [sym_catchall_pragma] = ACTIONS(2125), - }, - [951] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2127), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [952] = { - [sym_lambda_bindings] = STATE(894), - [sym_untyped_bindings] = STATE(952), - [sym_typed_bindings] = STATE(952), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_DOT_DOT] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(1153), - [anon_sym_RPAREN] = ACTIONS(464), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_rewrite] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(2604), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [953] = { - [sym_expr] = STATE(911), - [sym__expr1] = STATE(1706), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1707), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1708), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(1709), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2129), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2131), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [1305] = { + [sym__layout_semicolon] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_RBRACE] = ACTIONS(757), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(2606), + [anon_sym_EQ] = ACTIONS(757), }, - [954] = { - [sym_rewrite_equations] = STATE(1712), - [sym_with_expressions] = STATE(406), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_RPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(2133), - [anon_sym_with] = ACTIONS(2135), + [1306] = { + [sym_lambda_bindings] = STATE(2145), + [sym_untyped_bindings] = STATE(1306), + [sym_typed_bindings] = STATE(1306), + [sym__layout_semicolon] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1641), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(1645), }, - [955] = { - [sym_where_clause] = STATE(410), - [sym_rhs] = STATE(1716), + [1307] = { + [sym_expr] = STATE(2154), + [sym__expr1] = STATE(2155), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(2156), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(2157), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(714), + [aux_sym__application_repeat1] = STATE(715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(888), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(896), + [anon_sym_forall] = ACTIONS(898), + [anon_sym_let] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [1308] = { + [sym_where_clause] = STATE(2161), + [sym_rhs] = STATE(2162), + [sym__layout_semicolon] = ACTIONS(1717), [sym_literal] = ACTIONS(170), [sym_set_n] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(170), [sym_name_at] = ACTIONS(170), [sym_qualified_name] = ACTIONS(170), [anon_sym__] = ACTIONS(170), [anon_sym_DOT] = ACTIONS(170), [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(170), [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2137), + [anon_sym_EQ] = ACTIONS(170), [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(2139), + [anon_sym_where] = ACTIONS(2610), [anon_sym_forall] = ACTIONS(170), [anon_sym_let] = ACTIONS(170), [anon_sym_in] = ACTIONS(170), @@ -51062,362 +66630,161 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(170), [anon_sym_unquote] = ACTIONS(170), [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), [anon_sym_LPAREN_PIPE] = ACTIONS(170), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2141), - [anon_sym_rewrite] = ACTIONS(170), - [anon_sym_with] = ACTIONS(170), - }, - [956] = { - [sym__expr1] = STATE(954), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(955), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(1717), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [957] = { - [sym__expr1] = STATE(1233), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(1722), - [aux_sym__application_repeat1] = STATE(1723), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(2143), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2145), - [anon_sym_forall] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [958] = { - [sym__expr1] = STATE(1249), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(1728), - [aux_sym__application_repeat1] = STATE(1729), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(2151), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2153), - [anon_sym_forall] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), - }, - [959] = { - [sym_with_expressions] = STATE(1256), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(1216), - }, - [960] = { - [sym_expr] = STATE(1267), - [sym__expr1] = STATE(1735), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(1736), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(1737), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1738), - [aux_sym__application_repeat1] = STATE(1739), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(2159), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(2161), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2163), - [anon_sym_forall] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [anon_sym_COLON] = ACTIONS(2612), + [anon_sym_module] = ACTIONS(2614), }, - [961] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1689), - [sym__declaration] = STATE(1740), - [sym_function_clause] = STATE(203), - [sym__declarations1] = STATE(1278), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [1309] = { + [sym__layout_semicolon] = ACTIONS(1725), + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [anon_sym_SEMI] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), }, - [962] = { - [sym_anonymous_name] = STATE(1741), - [sym_name] = ACTIONS(2169), - [anon_sym__] = ACTIONS(676), + [1310] = { + [sym__layout_semicolon] = ACTIONS(1727), + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [anon_sym_SEMI] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), }, - [963] = { - [sym_where_clause] = STATE(1280), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(1220), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(1222), - }, - [964] = { - [sym__expr1] = STATE(423), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [1311] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(424), - [sym__declaration] = STATE(202), - [sym_function_clause] = STATE(203), - [aux_sym_source_file_repeat1] = STATE(964), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(2171), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2174), - [anon_sym_forall] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2180), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(1308), + [sym__declaration] = STATE(1309), + [sym_function_clause] = STATE(1310), + [aux_sym_source_file_repeat1] = STATE(2163), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_in] = ACTIONS(2616), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), }, - [965] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_PIPE_RPAREN] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), + [1312] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(2596), }, - [966] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_PIPE_RPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), + [1313] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(2596), }, - [967] = { + [1314] = { + [sym_expr] = STATE(2164), + [sym__expr1] = STATE(707), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(710), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(713), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(714), + [aux_sym__application_repeat1] = STATE(715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(888), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(896), + [anon_sym_forall] = ACTIONS(898), + [anon_sym_let] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [1315] = { + [sym__layout_semicolon] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_RBRACE] = ACTIONS(781), + [sym_comment] = ACTIONS(86), + }, + [1316] = { + [sym__layout_semicolon] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -51426,10 +66793,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), @@ -51441,34 +66809,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_PIPE_RPAREN] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), }, - [968] = { - [sym_atomic_expr] = STATE(1742), - [sym__atomic_expr_curly] = STATE(979), - [sym__atomic_expr_no_curly] = STATE(979), - [sym_literal] = ACTIONS(1230), - [sym_set_n] = ACTIONS(1230), - [sym_name_at] = ACTIONS(1232), - [sym_qualified_name] = ACTIONS(1230), - [anon_sym__] = ACTIONS(1230), - [anon_sym_DOT] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1236), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1230), - [anon_sym_Prop] = ACTIONS(1230), - [anon_sym_Set] = ACTIONS(1230), - [anon_sym_quote] = ACTIONS(1230), - [anon_sym_quoteTerm] = ACTIONS(1230), - [anon_sym_unquote] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1246), - [anon_sym_LPAREN_PIPE] = ACTIONS(1248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1230), + [1317] = { + [sym_atomic_expr] = STATE(2165), + [sym__atomic_expr_curly] = STATE(1324), + [sym__atomic_expr_no_curly] = STATE(1324), + [sym_literal] = ACTIONS(1651), + [sym_set_n] = ACTIONS(1651), + [sym_name_at] = ACTIONS(1653), + [sym_qualified_name] = ACTIONS(1651), + [anon_sym__] = ACTIONS(1651), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1657), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_Prop] = ACTIONS(1651), + [anon_sym_Set] = ACTIONS(1651), + [anon_sym_quote] = ACTIONS(1651), + [anon_sym_quoteTerm] = ACTIONS(1651), + [anon_sym_unquote] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LPAREN_PIPE] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1651), }, - [969] = { - [sym_expr] = STATE(1744), + [1318] = { + [sym_expr] = STATE(2167), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -51489,7 +66856,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2618), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -51505,8 +66872,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [970] = { - [sym_expr] = STATE(1745), + [1319] = { + [sym_expr] = STATE(2168), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -51528,7 +66895,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2185), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2620), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -51543,33 +66910,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [971] = { - [sym_expr] = STATE(756), - [sym__expr1] = STATE(1748), + [1320] = { + [sym_expr] = STATE(2169), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(2620), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [1321] = { + [sym_expr] = STATE(2170), + [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1749), + [sym__atomic_exprs1] = STATE(127), [sym_atomic_expr] = STATE(128), [sym__atomic_expr_curly] = STATE(129), [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(1750), + [sym_tele_arrow] = STATE(130), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1751), - [aux_sym__application_repeat1] = STATE(1752), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(130), [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(2187), + [sym_name_at] = ACTIONS(132), [sym_qualified_name] = ACTIONS(130), [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(2189), + [anon_sym_DOT] = ACTIONS(134), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(136), [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_forall] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), [anon_sym_QMARK] = ACTIONS(130), [anon_sym_Prop] = ACTIONS(130), [anon_sym_Set] = ACTIONS(130), @@ -51580,20 +66985,497 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [972] = { - [sym_lambda_bindings] = STATE(1753), - [sym_untyped_bindings] = STATE(1754), - [sym_typed_bindings] = STATE(1754), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [1322] = { + [sym__layout_semicolon] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_RBRACE] = ACTIONS(787), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(787), + }, + [1323] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + }, + [1324] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + }, + [1325] = { + [sym__expr2] = STATE(1326), + [sym_atomic_expr] = STATE(1323), + [sym__atomic_expr_curly] = STATE(1324), + [sym__atomic_expr_no_curly] = STATE(1324), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(1651), + [sym_set_n] = ACTIONS(1651), + [sym_name_at] = ACTIONS(1653), + [sym_qualified_name] = ACTIONS(1651), + [anon_sym__] = ACTIONS(1651), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1657), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(896), + [anon_sym_forall] = ACTIONS(898), + [anon_sym_let] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_Prop] = ACTIONS(1651), + [anon_sym_Set] = ACTIONS(1651), + [anon_sym_quote] = ACTIONS(1651), + [anon_sym_quoteTerm] = ACTIONS(1651), + [anon_sym_unquote] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LPAREN_PIPE] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1651), + }, + [1326] = { + [sym__layout_semicolon] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(789), + }, + [1327] = { + [sym__application] = STATE(2171), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [1328] = { + [sym__application] = STATE(2172), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [1329] = { + [sym_binding_name] = STATE(2173), + [sym__application] = STATE(2174), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [1330] = { + [sym__layout_semicolon] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1356), + [anon_sym_COLON] = ACTIONS(1356), + }, + [1331] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(2622), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(2624), + }, + [1332] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(2626), + [sym_comment] = ACTIONS(86), + }, + [1333] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2622), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(2628), + }, + [1334] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(2179), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [1335] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(2622), + }, + [1336] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(2630), + }, + [1337] = { + [sym_expr] = STATE(2177), + [sym__expr1] = STATE(1350), + [sym__application] = STATE(1351), + [sym__expr2] = STATE(1352), + [sym__atomic_exprs1] = STATE(1353), + [sym_atomic_expr] = STATE(1354), + [sym__atomic_expr_curly] = STATE(1355), + [sym__atomic_expr_no_curly] = STATE(1355), + [sym_tele_arrow] = STATE(1356), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1357), + [aux_sym__application_repeat1] = STATE(1358), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1675), + [sym_set_n] = ACTIONS(1675), + [sym_name_at] = ACTIONS(1677), + [sym_qualified_name] = ACTIONS(1675), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1683), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1685), + [anon_sym_forall] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_QMARK] = ACTIONS(1675), + [anon_sym_Prop] = ACTIONS(1675), + [anon_sym_Set] = ACTIONS(1675), + [anon_sym_quote] = ACTIONS(1675), + [anon_sym_quoteTerm] = ACTIONS(1675), + [anon_sym_unquote] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_LPAREN_PIPE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), + }, + [1338] = { + [sym__application] = STATE(2181), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [1339] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [anon_sym_SEMI] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + }, + [1340] = { + [sym_atomic_expr] = STATE(2185), + [sym__atomic_expr_curly] = STATE(1355), + [sym__atomic_expr_no_curly] = STATE(1355), + [sym_literal] = ACTIONS(1675), + [sym_set_n] = ACTIONS(1675), + [sym_name_at] = ACTIONS(1677), + [sym_qualified_name] = ACTIONS(1675), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2634), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1675), + [anon_sym_Prop] = ACTIONS(1675), + [anon_sym_Set] = ACTIONS(1675), + [anon_sym_quote] = ACTIONS(1675), + [anon_sym_quoteTerm] = ACTIONS(1675), + [anon_sym_unquote] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_LPAREN_PIPE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), + }, + [1341] = { + [sym_atomic_expr] = STATE(2185), + [sym__atomic_expr_curly] = STATE(1355), + [sym__atomic_expr_no_curly] = STATE(1355), + [sym_literal] = ACTIONS(1675), + [sym_set_n] = ACTIONS(1675), + [sym_name_at] = ACTIONS(1677), + [sym_qualified_name] = ACTIONS(1675), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(2638), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2640), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1675), + [anon_sym_Prop] = ACTIONS(1675), + [anon_sym_Set] = ACTIONS(1675), + [anon_sym_quote] = ACTIONS(1675), + [anon_sym_quoteTerm] = ACTIONS(1675), + [anon_sym_unquote] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(2642), + [anon_sym_LPAREN_PIPE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), + }, + [1342] = { + [sym_expr] = STATE(2190), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [1343] = { + [sym_expr] = STATE(2191), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2646), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [1344] = { + [sym_lambda_bindings] = STATE(2197), + [sym_untyped_bindings] = STATE(2198), + [sym_typed_bindings] = STATE(2198), + [anon_sym_DOT] = ACTIONS(2648), + [anon_sym_DOT_DOT] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2654), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_where] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2658), }, - [973] = { - [sym_forall_bindings] = STATE(1755), + [1345] = { + [sym_forall_bindings] = STATE(2199), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -51605,82 +67487,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [974] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), + [1346] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(1761), - [sym__declaration] = STATE(460), - [sym_function_clause] = STATE(461), - [aux_sym_source_file_repeat1] = STATE(1762), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(2200), + [sym__declaration] = STATE(2201), + [sym_function_clause] = STATE(2202), + [aux_sym_source_file_repeat1] = STATE(2203), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), }, - [975] = { - [sym_expr] = STATE(1765), + [1347] = { + [sym_expr] = STATE(2204), [sym__expr1] = STATE(110), - [sym__application] = STATE(39), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(2185), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(2646), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [976] = { - [sym_expr] = STATE(1766), + [1348] = { + [sym_expr] = STATE(2205), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -51716,37 +67598,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [977] = { - [sym__application] = STATE(789), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(978), - [sym__atomic_expr_curly] = STATE(979), - [sym__atomic_expr_no_curly] = STATE(979), - [aux_sym__application_repeat1] = STATE(1768), - [sym_literal] = ACTIONS(1230), - [sym_set_n] = ACTIONS(1230), - [sym_name_at] = ACTIONS(1232), - [sym_qualified_name] = ACTIONS(1230), - [anon_sym__] = ACTIONS(1230), - [anon_sym_DOT] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1236), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2199), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_forall] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(1230), - [anon_sym_Prop] = ACTIONS(1230), - [anon_sym_Set] = ACTIONS(1230), - [anon_sym_quote] = ACTIONS(1230), - [anon_sym_quoteTerm] = ACTIONS(1230), - [anon_sym_unquote] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1246), - [anon_sym_LPAREN_PIPE] = ACTIONS(1248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1230), + [1349] = { + [sym__layout_semicolon] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1360), }, - [978] = { + [1350] = { + [sym__layout_semicolon] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(280), + [anon_sym_RBRACE] = ACTIONS(280), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(280), + }, + [1351] = { + [sym__layout_semicolon] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(284), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_COLON] = ACTIONS(284), + }, + [1352] = { + [sym__layout_semicolon] = ACTIONS(286), + [anon_sym_SEMI] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(286), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(286), + }, + [1353] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(2660), + [anon_sym_PIPE] = ACTIONS(162), + }, + [1354] = { + [sym__layout_semicolon] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -51755,10 +67644,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), @@ -51770,10 +67661,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_PIPE_RPAREN] = ACTIONS(164), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), }, - [979] = { + [1355] = { + [sym__layout_semicolon] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -51782,10 +67674,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), @@ -51797,131 +67691,109 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_PIPE_RPAREN] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), }, - [980] = { - [sym_semi] = STATE(1769), - [aux_sym_lambda_where_clauses_repeat1] = STATE(1770), - [anon_sym_SEMI] = ACTIONS(1014), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_PIPE_RPAREN] = ACTIONS(1510), - }, - [981] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(978), - [sym__atomic_expr_curly] = STATE(979), - [sym__atomic_expr_no_curly] = STATE(979), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1230), - [sym_set_n] = ACTIONS(1230), - [sym_name_at] = ACTIONS(1232), - [sym_qualified_name] = ACTIONS(1230), - [anon_sym__] = ACTIONS(1230), - [anon_sym_DOT] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1236), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2199), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_forall] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(1230), - [anon_sym_Prop] = ACTIONS(1230), - [anon_sym_Set] = ACTIONS(1230), - [anon_sym_quote] = ACTIONS(1230), - [anon_sym_quoteTerm] = ACTIONS(1230), - [anon_sym_unquote] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1246), - [anon_sym_LPAREN_PIPE] = ACTIONS(1248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1230), - }, - [982] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(983), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(984), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(985), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [983] = { - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2201), - [anon_sym_PIPE_RPAREN] = ACTIONS(280), + [1356] = { + [sym_expr] = STATE(2207), + [sym__expr1] = STATE(1350), + [sym__application] = STATE(1351), + [sym__expr2] = STATE(1352), + [sym__atomic_exprs1] = STATE(1353), + [sym_atomic_expr] = STATE(1354), + [sym__atomic_expr_curly] = STATE(1355), + [sym__atomic_expr_no_curly] = STATE(1355), + [sym_tele_arrow] = STATE(1356), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1357), + [aux_sym__application_repeat1] = STATE(1358), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1675), + [sym_set_n] = ACTIONS(1675), + [sym_name_at] = ACTIONS(1677), + [sym_qualified_name] = ACTIONS(1675), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1683), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1685), + [anon_sym_forall] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_QMARK] = ACTIONS(1675), + [anon_sym_Prop] = ACTIONS(1675), + [anon_sym_Set] = ACTIONS(1675), + [anon_sym_quote] = ACTIONS(1675), + [anon_sym_quoteTerm] = ACTIONS(1675), + [anon_sym_unquote] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_LPAREN_PIPE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), }, - [984] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2201), - [anon_sym_PIPE] = ACTIONS(162), + [1357] = { + [sym__application] = STATE(2214), + [sym__expr2] = STATE(1352), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(2215), + [sym__atomic_expr_curly] = STATE(2216), + [sym__atomic_expr_no_curly] = STATE(2216), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(2217), + [sym_literal] = ACTIONS(2662), + [sym_set_n] = ACTIONS(2662), + [sym_name_at] = ACTIONS(2664), + [sym_qualified_name] = ACTIONS(2662), + [anon_sym__] = ACTIONS(2662), + [anon_sym_DOT] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2668), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1685), + [anon_sym_forall] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_QMARK] = ACTIONS(2662), + [anon_sym_Prop] = ACTIONS(2662), + [anon_sym_Set] = ACTIONS(2662), + [anon_sym_quote] = ACTIONS(2662), + [anon_sym_quoteTerm] = ACTIONS(2662), + [anon_sym_unquote] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LPAREN_PIPE] = ACTIONS(2672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2662), }, - [985] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(983), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(984), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(985), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [1358] = { + [sym__expr2] = STATE(2218), + [sym_atomic_expr] = STATE(1354), + [sym__atomic_expr_curly] = STATE(1355), + [sym__atomic_expr_no_curly] = STATE(1355), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(1675), + [sym_set_n] = ACTIONS(1675), + [sym_name_at] = ACTIONS(1677), + [sym_qualified_name] = ACTIONS(1675), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2634), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1685), + [anon_sym_forall] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_QMARK] = ACTIONS(1675), + [anon_sym_Prop] = ACTIONS(1675), + [anon_sym_Set] = ACTIONS(1675), + [anon_sym_quote] = ACTIONS(1675), + [anon_sym_quoteTerm] = ACTIONS(1675), + [anon_sym_unquote] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_LPAREN_PIPE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), }, - [986] = { + [1359] = { + [sym__layout_semicolon] = ACTIONS(1611), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), [anon_sym_SEMI] = ACTIONS(186), @@ -51930,6 +67802,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(186), @@ -51947,14 +67820,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_PIPE_RPAREN] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), [anon_sym_COLON] = ACTIONS(186), [anon_sym_module] = ACTIONS(186), [anon_sym_rewrite] = ACTIONS(186), [anon_sym_with] = ACTIONS(186), }, - [987] = { + [1360] = { + [sym__layout_semicolon] = ACTIONS(1613), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), [anon_sym_SEMI] = ACTIONS(228), @@ -51963,6 +67836,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(228), @@ -51980,37 +67854,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_PIPE_RPAREN] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), [anon_sym_COLON] = ACTIONS(228), [anon_sym_module] = ACTIONS(228), [anon_sym_rewrite] = ACTIONS(228), [anon_sym_with] = ACTIONS(228), }, - [988] = { - [anon_sym_RBRACE] = ACTIONS(2203), + [1361] = { + [anon_sym_RBRACE] = ACTIONS(2674), [sym_comment] = ACTIONS(86), }, - [989] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2205), + [1362] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2676), [sym_comment] = ACTIONS(86), }, - [990] = { - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2209), + [1363] = { + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2680), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2682), }, - [991] = { - [sym__application] = STATE(1778), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(1779), - [aux_sym__application_repeat1] = STATE(311), + [1364] = { + [sym__application] = STATE(2225), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(2226), + [aux_sym__application_repeat1] = STATE(312), [sym_literal] = ACTIONS(384), [sym_set_n] = ACTIONS(384), [sym_name_at] = ACTIONS(386), @@ -52018,7 +67891,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(384), [anon_sym_DOT] = ACTIONS(386), [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2684), [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(394), @@ -52036,13 +67909,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(384), [sym_catchall_pragma] = ACTIONS(406), }, - [992] = { - [sym__application] = STATE(1780), + [1365] = { + [sym__application] = STATE(2227), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), [sym_name_at] = ACTIONS(410), @@ -52051,7 +67924,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(410), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2213), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2684), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(416), [anon_sym_forall] = ACTIONS(418), @@ -52066,62 +67939,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [993] = { - [sym__application] = STATE(1789), - [sym__expr2] = STATE(456), - [sym_atomic_expr] = STATE(1790), - [sym__atomic_expr_curly] = STATE(1791), - [sym__atomic_expr_no_curly] = STATE(1791), - [sym_non_absurd_lambda_clause] = STATE(1792), - [sym_absurd_lambda_clause] = STATE(1792), - [sym_lambda_clause] = STATE(1793), - [sym_lambda_where_clauses] = STATE(1794), - [aux_sym__application_repeat1] = STATE(1795), - [sym_literal] = ACTIONS(2215), - [sym_set_n] = ACTIONS(2215), - [sym_name_at] = ACTIONS(2217), - [sym_qualified_name] = ACTIONS(2215), - [anon_sym__] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2221), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2223), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2215), - [anon_sym_Prop] = ACTIONS(2215), - [anon_sym_Set] = ACTIONS(2215), - [anon_sym_quote] = ACTIONS(2215), - [anon_sym_quoteTerm] = ACTIONS(2215), - [anon_sym_unquote] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_LPAREN_PIPE] = ACTIONS(2227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2215), - [sym_catchall_pragma] = ACTIONS(2229), + [1366] = { + [sym_vopen] = STATE(2228), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), }, - [994] = { - [sym_binding_name] = STATE(1796), - [sym__application] = STATE(1797), + [1367] = { + [sym_binding_name] = STATE(2229), + [sym__application] = STATE(2230), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), [anon_sym_QMARK] = ACTIONS(408), [anon_sym_Prop] = ACTIONS(408), [anon_sym_Set] = ACTIONS(408), @@ -52129,125 +67972,132 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(408), [anon_sym_unquote] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2684), [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [995] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2231), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [1368] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2686), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [996] = { - [sym_lambda_bindings] = STATE(1777), - [sym_untyped_bindings] = STATE(996), - [sym_typed_bindings] = STATE(996), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_DOT_DOT] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_PIPE_RPAREN] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_rewrite] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), + [1369] = { + [sym_lambda_bindings] = STATE(2224), + [sym_untyped_bindings] = STATE(1369), + [sym_typed_bindings] = STATE(1369), + [sym__layout_semicolon] = ACTIONS(763), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [anon_sym_SEMI] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(2688), + [anon_sym_DOT_DOT] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2692), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_rewrite] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), }, - [997] = { - [sym_expr] = STATE(1794), - [sym__expr1] = STATE(1807), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(1808), - [sym_atomic_expr] = STATE(1809), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_tele_arrow] = STATE(1811), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(1812), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(2243), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2249), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), + [1370] = { + [sym_expr] = STATE(2240), + [sym__expr1] = STATE(2241), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(2242), + [sym_atomic_expr] = STATE(2243), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), + [sym_tele_arrow] = STATE(2245), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(2246), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(2698), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2704), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), }, - [998] = { - [sym_rewrite_equations] = STATE(1815), - [sym_with_expressions] = STATE(1816), + [1371] = { + [sym_rewrite_equations] = STATE(2249), + [sym_with_expressions] = STATE(2250), + [sym__layout_semicolon] = ACTIONS(1711), [sym_literal] = ACTIONS(152), [sym_set_n] = ACTIONS(152), + [anon_sym_SEMI] = ACTIONS(152), [sym_name_at] = ACTIONS(152), [sym_qualified_name] = ACTIONS(152), [anon_sym__] = ACTIONS(152), [anon_sym_DOT] = ACTIONS(152), [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_RBRACE] = ACTIONS(152), [anon_sym_LBRACE_LBRACE] = ACTIONS(152), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(152), @@ -52264,28 +68114,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(152), [anon_sym_LPAREN] = ACTIONS(152), [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_PIPE_RPAREN] = ACTIONS(152), [anon_sym_DOT_DOT_DOT] = ACTIONS(152), [anon_sym_COLON] = ACTIONS(152), [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(2255), - [anon_sym_with] = ACTIONS(2257), + [anon_sym_rewrite] = ACTIONS(152), + [anon_sym_with] = ACTIONS(152), }, - [999] = { - [sym_where_clause] = STATE(1820), - [sym_rhs] = STATE(1821), + [1372] = { + [sym_where_clause] = STATE(2254), + [sym_rhs] = STATE(2255), + [sym__layout_semicolon] = ACTIONS(1717), [sym_literal] = ACTIONS(170), [sym_set_n] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(170), [sym_name_at] = ACTIONS(170), [sym_qualified_name] = ACTIONS(170), [anon_sym__] = ACTIONS(170), [anon_sym_DOT] = ACTIONS(170), [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(170), [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2259), + [anon_sym_EQ] = ACTIONS(170), [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(2261), + [anon_sym_where] = ACTIONS(170), [anon_sym_forall] = ACTIONS(170), [anon_sym_let] = ACTIONS(170), [anon_sym_in] = ACTIONS(170), @@ -52297,14 +68149,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(170), [anon_sym_LPAREN] = ACTIONS(170), [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_PIPE_RPAREN] = ACTIONS(170), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(2259), - [anon_sym_module] = ACTIONS(2263), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(170), [anon_sym_rewrite] = ACTIONS(170), [anon_sym_with] = ACTIONS(170), }, - [1000] = { + [1373] = { + [sym__layout_semicolon] = ACTIONS(1725), [sym_literal] = ACTIONS(178), [sym_set_n] = ACTIONS(178), [anon_sym_SEMI] = ACTIONS(178), @@ -52313,6 +68165,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(178), [anon_sym_DOT] = ACTIONS(178), [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE] = ACTIONS(178), [anon_sym_LBRACE_LBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(178), @@ -52329,14 +68182,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(178), [anon_sym_LPAREN] = ACTIONS(178), [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_PIPE_RPAREN] = ACTIONS(178), [anon_sym_DOT_DOT_DOT] = ACTIONS(178), [anon_sym_COLON] = ACTIONS(178), [anon_sym_module] = ACTIONS(178), [anon_sym_rewrite] = ACTIONS(178), [anon_sym_with] = ACTIONS(178), }, - [1001] = { + [1374] = { + [sym__layout_semicolon] = ACTIONS(1727), [sym_literal] = ACTIONS(180), [sym_set_n] = ACTIONS(180), [anon_sym_SEMI] = ACTIONS(180), @@ -52345,6 +68198,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(180), [anon_sym_DOT] = ACTIONS(180), [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(180), [anon_sym_LBRACE_LBRACE] = ACTIONS(180), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(180), @@ -52361,434 +68215,412 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(180), [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_PIPE_RPAREN] = ACTIONS(180), [anon_sym_DOT_DOT_DOT] = ACTIONS(180), [anon_sym_COLON] = ACTIONS(180), [anon_sym_module] = ACTIONS(180), [anon_sym_rewrite] = ACTIONS(180), [anon_sym_with] = ACTIONS(180), }, - [1002] = { - [sym__expr1] = STATE(998), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), + [1375] = { + [sym__expr1] = STATE(1371), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(999), - [sym__declaration] = STATE(1000), - [sym_function_clause] = STATE(1001), - [aux_sym_source_file_repeat1] = STATE(1822), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(1372), + [sym__declaration] = STATE(1373), + [sym_function_clause] = STATE(1374), + [aux_sym_source_file_repeat1] = STATE(2256), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [1003] = { + [1376] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2205), + [anon_sym_RPAREN] = ACTIONS(2676), }, - [1004] = { + [1377] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(2205), + [anon_sym_PIPE_RPAREN] = ACTIONS(2676), }, - [1005] = { - [sym__expr1] = STATE(1832), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), + [1378] = { + [sym__expr1] = STATE(2266), + [sym__application] = STATE(2267), + [sym__expr2] = STATE(2268), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1835), - [sym__atomic_expr_curly] = STATE(1836), - [sym__atomic_expr_no_curly] = STATE(1836), - [aux_sym__expr1_repeat1] = STATE(1837), - [aux_sym__application_repeat1] = STATE(1838), - [sym_literal] = ACTIONS(2265), - [sym_set_n] = ACTIONS(2265), - [sym_name_at] = ACTIONS(2267), - [sym_qualified_name] = ACTIONS(2265), - [anon_sym__] = ACTIONS(2265), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2271), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2273), - [anon_sym_forall] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_QMARK] = ACTIONS(2265), - [anon_sym_Prop] = ACTIONS(2265), - [anon_sym_Set] = ACTIONS(2265), - [anon_sym_quote] = ACTIONS(2265), - [anon_sym_quoteTerm] = ACTIONS(2265), - [anon_sym_unquote] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_LPAREN_PIPE] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2265), + [sym_atomic_expr] = STATE(2269), + [sym__atomic_expr_curly] = STATE(2270), + [sym__atomic_expr_no_curly] = STATE(2270), + [aux_sym__expr1_repeat1] = STATE(2271), + [aux_sym__application_repeat1] = STATE(2272), + [sym_literal] = ACTIONS(2710), + [sym_set_n] = ACTIONS(2710), + [sym_name_at] = ACTIONS(2712), + [sym_qualified_name] = ACTIONS(2710), + [anon_sym__] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2718), + [anon_sym_forall] = ACTIONS(2720), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_Prop] = ACTIONS(2710), + [anon_sym_Set] = ACTIONS(2710), + [anon_sym_quote] = ACTIONS(2710), + [anon_sym_quoteTerm] = ACTIONS(2710), + [anon_sym_unquote] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_LPAREN_PIPE] = ACTIONS(2726), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), }, - [1006] = { - [sym__expr1] = STATE(1848), - [sym__application] = STATE(1849), - [sym__expr2] = STATE(1850), + [1379] = { + [sym__expr1] = STATE(2282), + [sym__application] = STATE(2283), + [sym__expr2] = STATE(2284), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1851), - [sym__atomic_expr_curly] = STATE(1852), - [sym__atomic_expr_no_curly] = STATE(1852), - [aux_sym__expr1_repeat1] = STATE(1853), - [aux_sym__application_repeat1] = STATE(1854), - [sym_literal] = ACTIONS(2283), - [sym_set_n] = ACTIONS(2283), - [sym_name_at] = ACTIONS(2285), - [sym_qualified_name] = ACTIONS(2283), - [anon_sym__] = ACTIONS(2283), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2289), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2291), - [anon_sym_forall] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_QMARK] = ACTIONS(2283), - [anon_sym_Prop] = ACTIONS(2283), - [anon_sym_Set] = ACTIONS(2283), - [anon_sym_quote] = ACTIONS(2283), - [anon_sym_quoteTerm] = ACTIONS(2283), - [anon_sym_unquote] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_LPAREN_PIPE] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2283), + [sym_atomic_expr] = STATE(2285), + [sym__atomic_expr_curly] = STATE(2286), + [sym__atomic_expr_no_curly] = STATE(2286), + [aux_sym__expr1_repeat1] = STATE(2287), + [aux_sym__application_repeat1] = STATE(2288), + [sym_literal] = ACTIONS(2728), + [sym_set_n] = ACTIONS(2728), + [sym_name_at] = ACTIONS(2730), + [sym_qualified_name] = ACTIONS(2728), + [anon_sym__] = ACTIONS(2728), + [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2734), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_forall] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2728), + [anon_sym_Prop] = ACTIONS(2728), + [anon_sym_Set] = ACTIONS(2728), + [anon_sym_quote] = ACTIONS(2728), + [anon_sym_quoteTerm] = ACTIONS(2728), + [anon_sym_unquote] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_LPAREN_PIPE] = ACTIONS(2744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), }, - [1007] = { - [sym_with_expressions] = STATE(1855), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_PIPE_RPAREN] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(1272), + [1380] = { + [sym_with_expressions] = STATE(2289), + [sym__layout_semicolon] = ACTIONS(2746), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(1715), }, - [1008] = { - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_PIPE_RPAREN] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), + [1381] = { + [sym__layout_semicolon] = ACTIONS(2746), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), }, - [1009] = { - [sym_expr] = STATE(1866), - [sym__expr1] = STATE(1867), - [sym__application] = STATE(1868), - [sym__expr2] = STATE(1869), - [sym__atomic_exprs1] = STATE(1870), - [sym_atomic_expr] = STATE(1871), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_tele_arrow] = STATE(1873), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1874), - [aux_sym__application_repeat1] = STATE(1875), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(2303), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2309), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2311), - [anon_sym_forall] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), + [1382] = { + [sym_expr] = STATE(2297), + [sym__expr1] = STATE(2298), + [sym__application] = STATE(2283), + [sym__expr2] = STATE(2284), + [sym__atomic_exprs1] = STATE(2299), + [sym_atomic_expr] = STATE(2300), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_tele_arrow] = STATE(2302), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2287), + [aux_sym__application_repeat1] = STATE(2303), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(2750), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2756), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_forall] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), }, - [1010] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(1761), - [sym__declaration] = STATE(1876), - [sym_function_clause] = STATE(461), - [sym__declarations1] = STATE(1877), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_PIPE_RPAREN] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [1383] = { + [sym_vopen] = STATE(2304), + [sym_declarations] = STATE(2305), + [sym__declarations0] = STATE(2306), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [1011] = { - [sym_anonymous_name] = STATE(1878), - [sym_name] = ACTIONS(2321), - [anon_sym__] = ACTIONS(676), + [1384] = { + [sym_anonymous_name] = STATE(2307), + [sym_name] = ACTIONS(2762), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), }, - [1012] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_PIPE_RPAREN] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), + [1385] = { + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), }, - [1013] = { - [sym_where_clause] = STATE(1879), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(1276), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_PIPE_RPAREN] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(1278), + [1386] = { + [sym_where_clause] = STATE(2308), + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(1721), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(1723), }, - [1014] = { - [sym__expr1] = STATE(454), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), + [1387] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(459), - [sym__declaration] = STATE(460), - [sym_function_clause] = STATE(461), - [aux_sym_source_file_repeat1] = STATE(1014), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(2323), - [sym_set_n] = ACTIONS(2323), - [sym_name_at] = ACTIONS(2326), - [sym_qualified_name] = ACTIONS(2323), - [anon_sym__] = ACTIONS(2323), - [anon_sym_DOT] = ACTIONS(2326), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2332), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2335), - [anon_sym_forall] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(2323), - [anon_sym_Prop] = ACTIONS(2323), - [anon_sym_Set] = ACTIONS(2323), - [anon_sym_quote] = ACTIONS(2323), - [anon_sym_quoteTerm] = ACTIONS(2323), - [anon_sym_unquote] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_LPAREN_PIPE] = ACTIONS(2347), - [anon_sym_PIPE_RPAREN] = ACTIONS(680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2323), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(738), + [sym__declaration] = STATE(739), + [sym_function_clause] = STATE(740), + [aux_sym_source_file_repeat1] = STATE(1387), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(2766), + [sym_literal] = ACTIONS(2768), + [sym_set_n] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(2771), + [sym_qualified_name] = ACTIONS(2768), + [anon_sym__] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2777), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2780), + [anon_sym_forall] = ACTIONS(2783), + [anon_sym_let] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_Prop] = ACTIONS(2768), + [anon_sym_Set] = ACTIONS(2768), + [anon_sym_quote] = ACTIONS(2768), + [anon_sym_quoteTerm] = ACTIONS(2768), + [anon_sym_unquote] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LPAREN_PIPE] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), + [anon_sym_COLON] = ACTIONS(644), }, - [1015] = { - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_in] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_PIPE_RPAREN] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), - [anon_sym_rewrite] = ACTIONS(709), - [anon_sym_with] = ACTIONS(709), + [1388] = { + [sym__layout_semicolon] = ACTIONS(787), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [anon_sym_SEMI] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_RBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_rewrite] = ACTIONS(673), + [anon_sym_with] = ACTIONS(673), }, - [1016] = { - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_PIPE_RPAREN] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_rewrite] = ACTIONS(729), - [anon_sym_with] = ACTIONS(729), + [1389] = { + [sym__layout_semicolon] = ACTIONS(789), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), + [anon_sym_rewrite] = ACTIONS(693), + [anon_sym_with] = ACTIONS(693), }, - [1017] = { + [1390] = { + [sym__layout_semicolon] = ACTIONS(1611), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), [anon_sym_SEMI] = ACTIONS(186), @@ -52797,10 +68629,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_DASH_GT] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), @@ -52812,10 +68644,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_PIPE_RPAREN] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), }, - [1018] = { + [1391] = { + [sym__layout_semicolon] = ACTIONS(1613), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), [anon_sym_SEMI] = ACTIONS(228), @@ -52824,10 +68656,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_DASH_GT] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), @@ -52839,111 +68671,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_PIPE_RPAREN] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), }, - [1019] = { - [anon_sym_RBRACE] = ACTIONS(2350), - [sym_comment] = ACTIONS(86), - }, - [1020] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2352), - [sym_comment] = ACTIONS(86), - }, - [1021] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2352), - }, - [1022] = { + [1392] = { + [anon_sym_RBRACE] = ACTIONS(2795), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(2352), }, - [1023] = { - [ts_builtin_sym_end] = ACTIONS(186), - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), - }, - [1024] = { - [ts_builtin_sym_end] = ACTIONS(228), - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), - }, - [1025] = { - [anon_sym_RBRACE] = ACTIONS(2354), + [1393] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2797), [sym_comment] = ACTIONS(86), }, - [1026] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2356), + [1394] = { + [sym__layout_semicolon] = ACTIONS(2799), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_RBRACE] = ACTIONS(2799), [sym_comment] = ACTIONS(86), }, - [1027] = { - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2360), + [1395] = { + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2803), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2805), }, - [1028] = { - [sym__application] = STATE(1888), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(1889), - [aux_sym__application_repeat1] = STATE(311), + [1396] = { + [sym__application] = STATE(2315), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(2316), + [aux_sym__application_repeat1] = STATE(312), [sym_literal] = ACTIONS(384), [sym_set_n] = ACTIONS(384), [sym_name_at] = ACTIONS(386), @@ -52951,7 +68710,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(384), [anon_sym_DOT] = ACTIONS(386), [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(2364), + [anon_sym_RBRACE] = ACTIONS(2807), [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(394), @@ -52969,13 +68728,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(384), [sym_catchall_pragma] = ACTIONS(406), }, - [1029] = { - [sym__application] = STATE(1890), + [1397] = { + [sym__application] = STATE(2317), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), [sym_name_at] = ACTIONS(410), @@ -52984,7 +68743,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(410), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2364), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2807), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(416), [anon_sym_forall] = ACTIONS(418), @@ -52999,62 +68758,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1030] = { - [sym__application] = STATE(1902), - [sym__expr2] = STATE(488), - [sym_atomic_expr] = STATE(1903), - [sym__atomic_expr_curly] = STATE(1904), - [sym__atomic_expr_no_curly] = STATE(1904), - [sym_non_absurd_lambda_clause] = STATE(1905), - [sym_absurd_lambda_clause] = STATE(1905), - [sym_lambda_clause] = STATE(1906), - [sym_lambda_where_clauses] = STATE(1907), - [aux_sym__application_repeat1] = STATE(1908), - [sym_literal] = ACTIONS(2366), - [sym_set_n] = ACTIONS(2366), - [sym_name_at] = ACTIONS(2368), - [sym_qualified_name] = ACTIONS(2366), - [anon_sym__] = ACTIONS(2366), - [anon_sym_DOT] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2372), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2374), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(2366), - [anon_sym_Prop] = ACTIONS(2366), - [anon_sym_Set] = ACTIONS(2366), - [anon_sym_quote] = ACTIONS(2366), - [anon_sym_quoteTerm] = ACTIONS(2366), - [anon_sym_unquote] = ACTIONS(2366), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_LPAREN_PIPE] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2366), - [sym_catchall_pragma] = ACTIONS(2386), + [1398] = { + [sym_vopen] = STATE(2318), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), }, - [1031] = { - [sym_binding_name] = STATE(1909), - [sym__application] = STATE(1910), + [1399] = { + [sym_binding_name] = STATE(2319), + [sym__application] = STATE(2320), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), [anon_sym_QMARK] = ACTIONS(408), [anon_sym_Prop] = ACTIONS(408), [anon_sym_Set] = ACTIONS(408), @@ -53062,117 +68791,158 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(408), [anon_sym_unquote] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2807), [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1032] = { - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2388), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [1400] = { + [sym__layout_semicolon] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(2809), }, - [1033] = { - [sym_lambda_bindings] = STATE(1887), - [sym_untyped_bindings] = STATE(1033), - [sym_typed_bindings] = STATE(1033), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(2390), - [anon_sym_DOT_DOT] = ACTIONS(2390), - [anon_sym_LBRACE] = ACTIONS(2392), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2394), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), + [1401] = { + [sym_lambda_bindings] = STATE(2314), + [sym_untyped_bindings] = STATE(1401), + [sym_typed_bindings] = STATE(1401), + [sym__layout_semicolon] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1741), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(1745), }, - [1034] = { - [sym_expr] = STATE(1907), - [sym__expr1] = STATE(1920), - [sym__application] = STATE(487), - [sym__expr2] = STATE(488), - [sym__atomic_exprs1] = STATE(1921), - [sym_atomic_expr] = STATE(1922), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [sym_tele_arrow] = STATE(1924), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(491), - [aux_sym__application_repeat1] = STATE(1925), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(2400), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(2402), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2406), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(618), - [anon_sym_forall] = ACTIONS(620), - [anon_sym_let] = ACTIONS(622), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), + [1402] = { + [sym_expr] = STATE(2328), + [sym__expr1] = STATE(2329), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(2330), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(2331), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2332), + [aux_sym__application_repeat1] = STATE(2333), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(2813), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(2815), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2817), + [anon_sym_forall] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), }, - [1035] = { - [sym_rewrite_equations] = STATE(1928), - [sym_with_expressions] = STATE(1929), - [ts_builtin_sym_end] = ACTIONS(152), + [1403] = { + [sym_atomic_expr] = STATE(1359), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(1747), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [1404] = { + [sym_lambda_bindings] = STATE(2334), + [sym_untyped_bindings] = STATE(2335), + [sym_typed_bindings] = STATE(2335), + [anon_sym_DOT] = ACTIONS(1699), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1705), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1709), + }, + [1405] = { + [sym_forall_bindings] = STATE(2336), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [1406] = { + [sym__expr1] = STATE(1371), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(1372), + [sym__declaration] = STATE(1373), + [sym_function_clause] = STATE(1374), + [aux_sym_source_file_repeat1] = STATE(2337), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(1747), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [1407] = { + [sym_rewrite_equations] = STATE(2340), + [sym_with_expressions] = STATE(1381), + [sym__layout_semicolon] = ACTIONS(1711), [sym_literal] = ACTIONS(152), [sym_set_n] = ACTIONS(152), + [anon_sym_SEMI] = ACTIONS(152), [sym_name_at] = ACTIONS(152), [sym_qualified_name] = ACTIONS(152), [anon_sym__] = ACTIONS(152), @@ -53197,15 +68967,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(152), [anon_sym_COLON] = ACTIONS(152), [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(2412), - [anon_sym_with] = ACTIONS(2414), + [anon_sym_rewrite] = ACTIONS(2823), + [anon_sym_with] = ACTIONS(2825), }, - [1036] = { - [sym_where_clause] = STATE(1933), - [sym_rhs] = STATE(1934), - [ts_builtin_sym_end] = ACTIONS(170), + [1408] = { + [sym_where_clause] = STATE(2344), + [sym_rhs] = STATE(2345), + [sym__layout_semicolon] = ACTIONS(1717), [sym_literal] = ACTIONS(170), [sym_set_n] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(170), [sym_name_at] = ACTIONS(170), [sym_qualified_name] = ACTIONS(170), [anon_sym__] = ACTIONS(170), @@ -53213,9 +68984,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(170), [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2416), + [anon_sym_EQ] = ACTIONS(2827), [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(2418), + [anon_sym_where] = ACTIONS(2829), [anon_sym_forall] = ACTIONS(170), [anon_sym_let] = ACTIONS(170), [anon_sym_in] = ACTIONS(170), @@ -53228,12 +68999,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(170), [anon_sym_LPAREN_PIPE] = ACTIONS(170), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2420), - [anon_sym_with] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(2827), + [anon_sym_module] = ACTIONS(2831), }, - [1037] = { - [ts_builtin_sym_end] = ACTIONS(178), + [1409] = { + [sym__layout_semicolon] = ACTIONS(1725), [sym_literal] = ACTIONS(178), [sym_set_n] = ACTIONS(178), [anon_sym_SEMI] = ACTIONS(178), @@ -53245,9 +69015,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(178), [anon_sym_LBRACE_LBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(178), [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_where] = ACTIONS(178), [anon_sym_forall] = ACTIONS(178), [anon_sym_let] = ACTIONS(178), [anon_sym_in] = ACTIONS(178), @@ -53258,15 +69026,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(178), [anon_sym_unquote] = ACTIONS(178), [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_RPAREN] = ACTIONS(178), [anon_sym_LPAREN_PIPE] = ACTIONS(178), [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - [anon_sym_COLON] = ACTIONS(178), - [anon_sym_module] = ACTIONS(178), - [anon_sym_with] = ACTIONS(178), }, - [1038] = { - [ts_builtin_sym_end] = ACTIONS(180), + [1410] = { + [sym__layout_semicolon] = ACTIONS(1727), [sym_literal] = ACTIONS(180), [sym_set_n] = ACTIONS(180), [anon_sym_SEMI] = ACTIONS(180), @@ -53278,9 +69042,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(180), [anon_sym_LBRACE_LBRACE] = ACTIONS(180), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(180), [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_where] = ACTIONS(180), [anon_sym_forall] = ACTIONS(180), [anon_sym_let] = ACTIONS(180), [anon_sym_in] = ACTIONS(180), @@ -53291,667 +69053,901 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(180), [anon_sym_unquote] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_RPAREN] = ACTIONS(180), [anon_sym_LPAREN_PIPE] = ACTIONS(180), [anon_sym_DOT_DOT_DOT] = ACTIONS(180), - [anon_sym_COLON] = ACTIONS(180), - [anon_sym_module] = ACTIONS(180), - [anon_sym_with] = ACTIONS(180), }, - [1039] = { - [sym__expr1] = STATE(1035), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [1411] = { + [sym__expr1] = STATE(1407), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1036), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(1935), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(2388), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(1408), + [sym__declaration] = STATE(1409), + [sym_function_clause] = STATE(1410), + [aux_sym_source_file_repeat1] = STATE(2346), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(1747), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), }, - [1040] = { + [1412] = { + [sym__application] = STATE(1388), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(1413), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(1747), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [1413] = { + [sym__expr2] = STATE(1389), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(1747), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [1414] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2356), + [anon_sym_RPAREN] = ACTIONS(2797), }, - [1041] = { + [1415] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(2356), + [anon_sym_PIPE_RPAREN] = ACTIONS(2797), }, - [1042] = { - [ts_builtin_sym_end] = ACTIONS(709), - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), - [anon_sym_with] = ACTIONS(709), + [1416] = { + [sym_expr] = STATE(2347), + [sym__expr1] = STATE(707), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(710), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(713), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(714), + [aux_sym__application_repeat1] = STATE(715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(888), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(896), + [anon_sym_forall] = ACTIONS(898), + [anon_sym_let] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), }, - [1043] = { - [ts_builtin_sym_end] = ACTIONS(729), - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_with] = ACTIONS(729), + [1417] = { + [sym__layout_semicolon] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [sym_comment] = ACTIONS(86), }, - [1044] = { - [ts_builtin_sym_end] = ACTIONS(186), - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [1418] = { + [anon_sym_RBRACE] = ACTIONS(2835), + [sym_comment] = ACTIONS(86), + }, + [1419] = { + [sym_atomic_expr] = STATE(1390), + [sym__atomic_expr_curly] = STATE(759), + [sym__atomic_expr_no_curly] = STATE(759), + [sym_literal] = ACTIONS(936), + [sym_set_n] = ACTIONS(936), + [sym_name_at] = ACTIONS(1763), + [sym_qualified_name] = ACTIONS(936), + [anon_sym__] = ACTIONS(936), + [anon_sym_DOT] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_LBRACE_LBRACE] = ACTIONS(942), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(936), + [anon_sym_Prop] = ACTIONS(936), + [anon_sym_Set] = ACTIONS(936), + [anon_sym_quote] = ACTIONS(936), + [anon_sym_quoteTerm] = ACTIONS(936), + [anon_sym_unquote] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_LPAREN_PIPE] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(936), }, - [1045] = { - [ts_builtin_sym_end] = ACTIONS(228), - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [1420] = { + [sym_lambda_bindings] = STATE(2349), + [sym_untyped_bindings] = STATE(2350), + [sym_typed_bindings] = STATE(2350), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1739), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1741), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(1745), + }, + [1421] = { + [sym_forall_bindings] = STATE(2351), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [1422] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(2352), + [sym__declaration] = STATE(1409), + [sym_function_clause] = STATE(1410), + [aux_sym_source_file_repeat1] = STATE(2353), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [1423] = { + [sym__application] = STATE(756), + [sym__expr2] = STATE(757), + [sym_atomic_expr] = STATE(758), + [sym__atomic_expr_curly] = STATE(759), + [sym__atomic_expr_no_curly] = STATE(759), + [aux_sym__application_repeat1] = STATE(2354), + [sym_literal] = ACTIONS(936), + [sym_set_n] = ACTIONS(936), + [sym_name_at] = ACTIONS(1763), + [sym_qualified_name] = ACTIONS(936), + [anon_sym__] = ACTIONS(936), + [anon_sym_DOT] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_LBRACE_LBRACE] = ACTIONS(942), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), + [anon_sym_DASH_GT] = ACTIONS(944), + [anon_sym_BSLASH] = ACTIONS(1765), + [anon_sym_forall] = ACTIONS(1767), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_QMARK] = ACTIONS(936), + [anon_sym_Prop] = ACTIONS(936), + [anon_sym_Set] = ACTIONS(936), + [anon_sym_quote] = ACTIONS(936), + [anon_sym_quoteTerm] = ACTIONS(936), + [anon_sym_unquote] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_LPAREN_PIPE] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(936), }, - [1046] = { - [anon_sym_RBRACE] = ACTIONS(2422), + [1424] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), [sym_comment] = ACTIONS(86), }, - [1047] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2424), + [1425] = { + [sym__layout_semicolon] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), [sym_comment] = ACTIONS(86), }, - [1048] = { - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2428), + [1426] = { + [sym__layout_semicolon] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym_RBRACE] = ACTIONS(2837), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(2430), }, - [1049] = { - [sym__application] = STATE(1942), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(1943), - [aux_sym__application_repeat1] = STATE(311), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [1427] = { + [sym__expr2] = STATE(1417), + [sym_atomic_expr] = STATE(758), + [sym__atomic_expr_curly] = STATE(759), + [sym__atomic_expr_no_curly] = STATE(759), + [aux_sym__application_repeat1] = STATE(767), + [sym_literal] = ACTIONS(936), + [sym_set_n] = ACTIONS(936), + [sym_name_at] = ACTIONS(1763), + [sym_qualified_name] = ACTIONS(936), + [anon_sym__] = ACTIONS(936), + [anon_sym_DOT] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_LBRACE_LBRACE] = ACTIONS(942), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(406), + [anon_sym_DASH_GT] = ACTIONS(944), + [anon_sym_BSLASH] = ACTIONS(1765), + [anon_sym_forall] = ACTIONS(1767), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_QMARK] = ACTIONS(936), + [anon_sym_Prop] = ACTIONS(936), + [anon_sym_Set] = ACTIONS(936), + [anon_sym_quote] = ACTIONS(936), + [anon_sym_quoteTerm] = ACTIONS(936), + [anon_sym_unquote] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_LPAREN_PIPE] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(936), }, - [1050] = { - [sym__application] = STATE(1944), + [1428] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + }, + [1429] = { + [sym_atomic_expr] = STATE(2355), + [sym__atomic_expr_curly] = STATE(1435), + [sym__atomic_expr_no_curly] = STATE(1435), + [sym_literal] = ACTIONS(2839), + [sym_set_n] = ACTIONS(2839), + [sym_name_at] = ACTIONS(2841), + [sym_qualified_name] = ACTIONS(2839), + [anon_sym__] = ACTIONS(2839), + [anon_sym_DOT] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2845), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2839), + [anon_sym_Prop] = ACTIONS(2839), + [anon_sym_Set] = ACTIONS(2839), + [anon_sym_quote] = ACTIONS(2839), + [anon_sym_quoteTerm] = ACTIONS(2839), + [anon_sym_unquote] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2847), + [anon_sym_LPAREN_PIPE] = ACTIONS(2849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2839), + }, + [1430] = { + [sym_expr] = STATE(2357), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(2851), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [1431] = { + [sym_expr] = STATE(2358), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2432), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2853), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1051] = { - [sym__application] = STATE(1956), - [sym__expr2] = STATE(504), - [sym_atomic_expr] = STATE(1957), - [sym__atomic_expr_curly] = STATE(1958), - [sym__atomic_expr_no_curly] = STATE(1958), - [sym_non_absurd_lambda_clause] = STATE(1959), - [sym_absurd_lambda_clause] = STATE(1959), - [sym_lambda_clause] = STATE(1960), - [sym_lambda_where_clauses] = STATE(1961), - [aux_sym__application_repeat1] = STATE(1962), - [sym_literal] = ACTIONS(2434), - [sym_set_n] = ACTIONS(2434), - [sym_name_at] = ACTIONS(2436), - [sym_qualified_name] = ACTIONS(2434), - [anon_sym__] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2440), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2442), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(2434), - [anon_sym_Prop] = ACTIONS(2434), - [anon_sym_Set] = ACTIONS(2434), - [anon_sym_quote] = ACTIONS(2434), - [anon_sym_quoteTerm] = ACTIONS(2434), - [anon_sym_unquote] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_LPAREN_PIPE] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2434), - [sym_catchall_pragma] = ACTIONS(2454), + [1432] = { + [sym_expr] = STATE(2359), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(2853), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1052] = { - [sym_binding_name] = STATE(1963), - [sym__application] = STATE(1964), + [1433] = { + [sym_expr] = STATE(2360), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1053] = { - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2456), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [1434] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), }, - [1054] = { - [sym_lambda_bindings] = STATE(1941), - [sym_untyped_bindings] = STATE(1054), - [sym_typed_bindings] = STATE(1054), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(2458), - [anon_sym_DOT_DOT] = ACTIONS(2458), - [anon_sym_LBRACE] = ACTIONS(2460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2462), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [1435] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + }, + [1436] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE_RBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + }, + [1437] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE_RBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + }, + [1438] = { + [sym_expr] = STATE(1180), + [sym__expr1] = STATE(1439), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(1440), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(1441), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1078), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [1439] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(280), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2855), + [anon_sym_COLON] = ACTIONS(280), + }, + [1440] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(162), + }, + [1441] = { + [sym_expr] = STATE(278), + [sym__expr1] = STATE(1439), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(1440), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(1441), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1078), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1055] = { - [sym_expr] = STATE(1961), - [sym__expr1] = STATE(1974), - [sym__application] = STATE(503), - [sym__expr2] = STATE(504), - [sym__atomic_exprs1] = STATE(1975), - [sym_atomic_expr] = STATE(1976), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [sym_tele_arrow] = STATE(1978), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(507), - [aux_sym__application_repeat1] = STATE(1979), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(2468), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(2470), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2474), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(636), - [anon_sym_forall] = ACTIONS(638), - [anon_sym_let] = ACTIONS(640), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [1442] = { + [sym_expr] = STATE(2362), + [sym__expr1] = STATE(2363), + [sym__application] = STATE(1250), + [sym__expr2] = STATE(1251), + [sym__atomic_exprs1] = STATE(2364), + [sym_atomic_expr] = STATE(1915), + [sym__atomic_expr_curly] = STATE(1916), + [sym__atomic_expr_no_curly] = STATE(1916), + [sym_tele_arrow] = STATE(2365), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1254), + [aux_sym__application_repeat1] = STATE(1918), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2350), + [sym_set_n] = ACTIONS(2350), + [sym_name_at] = ACTIONS(2352), + [sym_qualified_name] = ACTIONS(2350), + [anon_sym__] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2354), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2358), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_forall] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(2350), + [anon_sym_Prop] = ACTIONS(2350), + [anon_sym_Set] = ACTIONS(2350), + [anon_sym_quote] = ACTIONS(2350), + [anon_sym_quoteTerm] = ACTIONS(2350), + [anon_sym_unquote] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2350), }, - [1056] = { - [sym_rewrite_equations] = STATE(1981), - [sym_with_expressions] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(152), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(2412), - [anon_sym_with] = ACTIONS(2480), + [1443] = { + [sym_vopen] = STATE(2366), + [sym_declarations] = STATE(2367), + [sym__declarations0] = STATE(2368), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [1057] = { - [sym_where_clause] = STATE(1985), - [sym_rhs] = STATE(1986), - [ts_builtin_sym_end] = ACTIONS(170), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [1444] = { + [sym_anonymous_name] = STATE(2369), + [sym_name] = ACTIONS(2857), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2482), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(2484), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(2482), - [anon_sym_module] = ACTIONS(2486), }, - [1058] = { - [ts_builtin_sym_end] = ACTIONS(178), - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_RBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_where] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_in] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_RPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - [anon_sym_COLON] = ACTIONS(178), - [anon_sym_module] = ACTIONS(178), + [1445] = { + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE_RBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), }, - [1059] = { - [ts_builtin_sym_end] = ACTIONS(180), - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_RBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(180), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_where] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_in] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_RPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), - [anon_sym_COLON] = ACTIONS(180), - [anon_sym_module] = ACTIONS(180), + [1446] = { + [sym_where_clause] = STATE(2370), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE_RBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(1801), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(1803), }, - [1060] = { - [sym__expr1] = STATE(1056), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [1447] = { + [sym__expr1] = STATE(263), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1057), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(1987), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(2456), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [1061] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2424), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(775), + [sym__declaration] = STATE(776), + [sym_function_clause] = STATE(777), + [aux_sym_source_file_repeat1] = STATE(1447), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(1572), + [sym_set_n] = ACTIONS(1572), + [sym_name_at] = ACTIONS(1575), + [sym_qualified_name] = ACTIONS(1572), + [anon_sym__] = ACTIONS(1572), + [anon_sym_DOT] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE_RBRACE] = ACTIONS(644), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1584), + [anon_sym_forall] = ACTIONS(1587), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_Prop] = ACTIONS(1572), + [anon_sym_Set] = ACTIONS(1572), + [anon_sym_quote] = ACTIONS(1572), + [anon_sym_quoteTerm] = ACTIONS(1572), + [anon_sym_unquote] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LPAREN_PIPE] = ACTIONS(1596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1572), + [anon_sym_COLON] = ACTIONS(644), }, - [1062] = { + [1448] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2835), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(2424), }, - [1063] = { - [ts_builtin_sym_end] = ACTIONS(709), - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), + [1449] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), }, - [1064] = { - [ts_builtin_sym_end] = ACTIONS(729), - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), + [1450] = { + [sym_atomic_expr] = STATE(2371), + [sym__atomic_expr_curly] = STATE(1456), + [sym__atomic_expr_no_curly] = STATE(1456), + [sym_literal] = ACTIONS(2859), + [sym_set_n] = ACTIONS(2859), + [sym_name_at] = ACTIONS(2861), + [sym_qualified_name] = ACTIONS(2859), + [anon_sym__] = ACTIONS(2859), + [anon_sym_DOT] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2865), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2859), + [anon_sym_Prop] = ACTIONS(2859), + [anon_sym_Set] = ACTIONS(2859), + [anon_sym_quote] = ACTIONS(2859), + [anon_sym_quoteTerm] = ACTIONS(2859), + [anon_sym_unquote] = ACTIONS(2859), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_LPAREN_PIPE] = ACTIONS(2869), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2859), }, - [1065] = { - [sym_expr] = STATE(1073), + [1451] = { + [sym_expr] = STATE(2373), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -53972,7 +69968,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(2871), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -53988,8 +69984,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1066] = { - [sym_expr] = STATE(1074), + [1452] = { + [sym_expr] = STATE(2374), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -54011,7 +70007,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1338), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2873), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -54026,8 +70022,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1067] = { - [sym_expr] = STATE(1087), + [1453] = { + [sym_expr] = STATE(2375), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -54060,12 +70056,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(2873), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1068] = { - [ts_builtin_sym_end] = ACTIONS(186), + [1454] = { + [sym_expr] = STATE(2376), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [1455] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + }, + [1456] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + }, + [1457] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), [anon_sym_SEMI] = ACTIONS(186), @@ -54077,10 +70157,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), @@ -54092,12 +70169,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), }, - [1069] = { - [sym_expr] = STATE(1073), + [1458] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + }, + [1459] = { + [anon_sym_RBRACE] = ACTIONS(2875), + [sym_comment] = ACTIONS(86), + }, + [1460] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2877), + [sym_comment] = ACTIONS(86), + }, + [1461] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [anon_sym_SEMI] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + }, + [1462] = { + [sym_atomic_expr] = STATE(2382), + [sym__atomic_expr_curly] = STATE(1477), + [sym__atomic_expr_no_curly] = STATE(1477), + [sym_literal] = ACTIONS(1829), + [sym_set_n] = ACTIONS(1829), + [sym_name_at] = ACTIONS(1831), + [sym_qualified_name] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(2879), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2881), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1829), + [anon_sym_Prop] = ACTIONS(1829), + [anon_sym_Set] = ACTIONS(1829), + [anon_sym_quote] = ACTIONS(1829), + [anon_sym_quoteTerm] = ACTIONS(1829), + [anon_sym_unquote] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(2883), + [anon_sym_LPAREN_PIPE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), + }, + [1463] = { + [sym_atomic_expr] = STATE(2382), + [sym__atomic_expr_curly] = STATE(1477), + [sym__atomic_expr_no_curly] = STATE(1477), + [sym_literal] = ACTIONS(1829), + [sym_set_n] = ACTIONS(1829), + [sym_name_at] = ACTIONS(1831), + [sym_qualified_name] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2887), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1829), + [anon_sym_Prop] = ACTIONS(1829), + [anon_sym_Set] = ACTIONS(1829), + [anon_sym_quote] = ACTIONS(1829), + [anon_sym_quoteTerm] = ACTIONS(1829), + [anon_sym_unquote] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym_LPAREN_PIPE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), + }, + [1464] = { + [sym_expr] = STATE(2387), [sym__expr1] = STATE(38), - [sym__application] = STATE(557), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -54116,7 +70302,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(2891), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -54132,10 +70318,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1070] = { - [sym_expr] = STATE(1074), + [1465] = { + [sym_expr] = STATE(2388), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(185), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -54155,7 +70341,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1338), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2893), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -54170,98 +70356,346 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1071] = { - [sym_expr] = STATE(1087), - [sym__expr1] = STATE(110), - [sym__application] = STATE(559), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(112), + [1466] = { + [sym_lambda_bindings] = STATE(2394), + [sym_untyped_bindings] = STATE(2395), + [sym_typed_bindings] = STATE(2395), + [anon_sym_DOT] = ACTIONS(2895), + [anon_sym_DOT_DOT] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2901), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2905), + }, + [1467] = { + [sym_forall_bindings] = STATE(2396), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [1468] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(2397), + [sym__declaration] = STATE(2398), + [sym_function_clause] = STATE(2399), + [aux_sym_source_file_repeat1] = STATE(2400), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), + }, + [1469] = { + [sym_expr] = STATE(2401), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(2893), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [1470] = { + [sym_expr] = STATE(2402), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [1471] = { + [sym__layout_semicolon] = ACTIONS(1647), + [sym__layout_close_brace] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [sym_comment] = ACTIONS(86), + }, + [1472] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym__layout_close_brace] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(280), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2907), + }, + [1473] = { + [sym__layout_semicolon] = ACTIONS(284), + [sym__layout_close_brace] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(284), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(284), + }, + [1474] = { + [sym__layout_semicolon] = ACTIONS(286), + [sym__layout_close_brace] = ACTIONS(286), + [anon_sym_SEMI] = ACTIONS(286), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(286), + }, + [1475] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(2907), + [anon_sym_PIPE] = ACTIONS(162), + }, + [1476] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + }, + [1477] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + }, + [1478] = { + [sym_expr] = STATE(2404), + [sym__expr1] = STATE(1472), + [sym__application] = STATE(1473), + [sym__expr2] = STATE(1474), + [sym__atomic_exprs1] = STATE(1475), + [sym_atomic_expr] = STATE(1476), + [sym__atomic_expr_curly] = STATE(1477), + [sym__atomic_expr_no_curly] = STATE(1477), + [sym_tele_arrow] = STATE(1478), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), + [aux_sym__expr1_repeat1] = STATE(1479), + [aux_sym__application_repeat1] = STATE(1480), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [1072] = { - [ts_builtin_sym_end] = ACTIONS(228), - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), + [sym_literal] = ACTIONS(1829), + [sym_set_n] = ACTIONS(1829), + [sym_name_at] = ACTIONS(1831), + [sym_qualified_name] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1837), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1839), + [anon_sym_forall] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(1829), + [anon_sym_Prop] = ACTIONS(1829), + [anon_sym_Set] = ACTIONS(1829), + [anon_sym_quote] = ACTIONS(1829), + [anon_sym_quoteTerm] = ACTIONS(1829), + [anon_sym_unquote] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_LPAREN_PIPE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), }, - [1073] = { - [anon_sym_RBRACE] = ACTIONS(2488), - [sym_comment] = ACTIONS(86), + [1479] = { + [sym__application] = STATE(2411), + [sym__expr2] = STATE(1474), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(2412), + [sym__atomic_expr_curly] = STATE(2413), + [sym__atomic_expr_no_curly] = STATE(2413), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(2414), + [sym_literal] = ACTIONS(2909), + [sym_set_n] = ACTIONS(2909), + [sym_name_at] = ACTIONS(2911), + [sym_qualified_name] = ACTIONS(2909), + [anon_sym__] = ACTIONS(2909), + [anon_sym_DOT] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2915), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1839), + [anon_sym_forall] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(2909), + [anon_sym_Prop] = ACTIONS(2909), + [anon_sym_Set] = ACTIONS(2909), + [anon_sym_quote] = ACTIONS(2909), + [anon_sym_quoteTerm] = ACTIONS(2909), + [anon_sym_unquote] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_LPAREN_PIPE] = ACTIONS(2919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2909), }, - [1074] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2490), - [sym_comment] = ACTIONS(86), + [1480] = { + [sym__expr2] = STATE(2415), + [sym_atomic_expr] = STATE(1476), + [sym__atomic_expr_curly] = STATE(1477), + [sym__atomic_expr_no_curly] = STATE(1477), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(1829), + [sym_set_n] = ACTIONS(1829), + [sym_name_at] = ACTIONS(1831), + [sym_qualified_name] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(2879), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2881), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1839), + [anon_sym_forall] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(1829), + [anon_sym_Prop] = ACTIONS(1829), + [anon_sym_Set] = ACTIONS(1829), + [anon_sym_quote] = ACTIONS(1829), + [anon_sym_quoteTerm] = ACTIONS(1829), + [anon_sym_unquote] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(2883), + [anon_sym_LPAREN_PIPE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), }, - [1075] = { - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2494), + [1481] = { + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2923), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2925), }, - [1076] = { - [sym__application] = STATE(1994), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(1995), - [aux_sym__application_repeat1] = STATE(311), + [1482] = { + [sym__application] = STATE(2420), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(2421), + [aux_sym__application_repeat1] = STATE(312), [sym_literal] = ACTIONS(384), [sym_set_n] = ACTIONS(384), [sym_name_at] = ACTIONS(386), @@ -54269,7 +70703,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(384), [anon_sym_DOT] = ACTIONS(386), [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_RBRACE] = ACTIONS(2927), [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(394), @@ -54287,13 +70721,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(384), [sym_catchall_pragma] = ACTIONS(406), }, - [1077] = { - [sym__application] = STATE(1996), + [1483] = { + [sym__application] = STATE(2422), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), [sym_name_at] = ACTIONS(410), @@ -54302,7 +70736,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(410), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2498), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2927), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(416), [anon_sym_forall] = ACTIONS(418), @@ -54317,62 +70751,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1078] = { - [sym__application] = STATE(2008), - [sym__expr2] = STATE(523), - [sym_atomic_expr] = STATE(2009), - [sym__atomic_expr_curly] = STATE(2010), - [sym__atomic_expr_no_curly] = STATE(2010), - [sym_non_absurd_lambda_clause] = STATE(2011), - [sym_absurd_lambda_clause] = STATE(2011), - [sym_lambda_clause] = STATE(2012), - [sym_lambda_where_clauses] = STATE(2013), - [aux_sym__application_repeat1] = STATE(2014), - [sym_literal] = ACTIONS(2500), - [sym_set_n] = ACTIONS(2500), - [sym_name_at] = ACTIONS(2502), - [sym_qualified_name] = ACTIONS(2500), - [anon_sym__] = ACTIONS(2500), - [anon_sym_DOT] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2506), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2508), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(2500), - [anon_sym_Prop] = ACTIONS(2500), - [anon_sym_Set] = ACTIONS(2500), - [anon_sym_quote] = ACTIONS(2500), - [anon_sym_quoteTerm] = ACTIONS(2500), - [anon_sym_unquote] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2500), - [sym_catchall_pragma] = ACTIONS(2520), + [1484] = { + [sym_vopen] = STATE(2423), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), }, - [1079] = { - [sym_binding_name] = STATE(2015), - [sym__application] = STATE(2016), + [1485] = { + [sym_binding_name] = STATE(2424), + [sym__application] = STATE(2425), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), [anon_sym_QMARK] = ACTIONS(408), [anon_sym_Prop] = ACTIONS(408), [anon_sym_Set] = ACTIONS(408), @@ -54380,315 +70784,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(408), [anon_sym_unquote] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(2498), + [anon_sym_RPAREN] = ACTIONS(2927), [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1080] = { - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2522), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [1081] = { - [sym_lambda_bindings] = STATE(1993), - [sym_untyped_bindings] = STATE(1081), - [sym_typed_bindings] = STATE(1081), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(2524), - [anon_sym_DOT_DOT] = ACTIONS(2524), - [anon_sym_LBRACE] = ACTIONS(2526), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2528), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - }, - [1082] = { - [sym_expr] = STATE(2013), - [sym__expr1] = STATE(2019), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(2020), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(2021), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(528), - [aux_sym__application_repeat1] = STATE(529), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(652), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(660), - [anon_sym_forall] = ACTIONS(662), - [anon_sym_let] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), - }, - [1083] = { - [sym_where_clause] = STATE(2025), - [sym_rhs] = STATE(2026), - [ts_builtin_sym_end] = ACTIONS(170), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2532), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(2534), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(2532), - [anon_sym_module] = ACTIONS(2536), - }, - [1084] = { - [ts_builtin_sym_end] = ACTIONS(178), - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_RBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_where] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_in] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_RPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - [anon_sym_module] = ACTIONS(178), - }, - [1085] = { - [ts_builtin_sym_end] = ACTIONS(180), - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_RBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(180), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_where] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_in] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_RPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), - [anon_sym_module] = ACTIONS(180), - }, - [1086] = { - [sym__expr1] = STATE(1056), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1083), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(2027), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(2522), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [1087] = { + [1486] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2490), + [anon_sym_DASH_GT] = ACTIONS(2929), }, - [1088] = { + [1487] = { + [sym_lambda_bindings] = STATE(2419), + [sym_untyped_bindings] = STATE(1487), + [sym_typed_bindings] = STATE(1487), + [sym__layout_semicolon] = ACTIONS(763), + [sym__layout_close_brace] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1855), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(2490), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(1859), }, - [1089] = { - [sym_expr] = STATE(2028), - [sym__expr1] = STATE(521), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(524), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(527), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(528), - [aux_sym__application_repeat1] = STATE(529), + [1488] = { + [sym_expr] = STATE(2428), + [sym__expr1] = STATE(1472), + [sym__application] = STATE(1473), + [sym__expr2] = STATE(1474), + [sym__atomic_exprs1] = STATE(1475), + [sym_atomic_expr] = STATE(1476), + [sym__atomic_expr_curly] = STATE(1477), + [sym__atomic_expr_no_curly] = STATE(1477), + [sym_tele_arrow] = STATE(1478), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1479), + [aux_sym__application_repeat1] = STATE(1480), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(652), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(660), - [anon_sym_forall] = ACTIONS(662), - [anon_sym_let] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), - }, - [1090] = { - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), + [sym_literal] = ACTIONS(1829), + [sym_set_n] = ACTIONS(1829), + [sym_name_at] = ACTIONS(1831), + [sym_qualified_name] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1837), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1839), + [anon_sym_forall] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(1829), + [anon_sym_Prop] = ACTIONS(1829), + [anon_sym_Set] = ACTIONS(1829), + [anon_sym_quote] = ACTIONS(1829), + [anon_sym_quoteTerm] = ACTIONS(1829), + [anon_sym_unquote] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_LPAREN_PIPE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), }, - [1091] = { - [ts_builtin_sym_end] = ACTIONS(30), + [1489] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -54705,6 +70866,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), [anon_sym_Prop] = ACTIONS(30), [anon_sym_Set] = ACTIONS(30), @@ -54714,33 +70876,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), [anon_sym_module] = ACTIONS(30), + [anon_sym_rewrite] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), }, - [1092] = { - [sym_atomic_expr] = STATE(2029), - [sym__atomic_expr_curly] = STATE(1099), - [sym__atomic_expr_no_curly] = STATE(1099), - [sym_literal] = ACTIONS(1358), - [sym_set_n] = ACTIONS(1358), - [sym_name_at] = ACTIONS(1360), - [sym_qualified_name] = ACTIONS(1358), - [anon_sym__] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1364), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_Prop] = ACTIONS(1358), - [anon_sym_Set] = ACTIONS(1358), - [anon_sym_quote] = ACTIONS(1358), - [anon_sym_quoteTerm] = ACTIONS(1358), - [anon_sym_unquote] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LPAREN_PIPE] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1358), + [1490] = { + [sym_atomic_expr] = STATE(2429), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), }, - [1093] = { - [sym_expr] = STATE(2031), + [1491] = { + [sym_expr] = STATE(2431), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -54761,7 +70926,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(2538), + [anon_sym_RBRACE] = ACTIONS(2933), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -54777,8 +70942,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1094] = { - [sym_expr] = STATE(2032), + [1492] = { + [sym_expr] = STATE(2432), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -54800,7 +70965,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2540), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2935), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -54815,8 +70980,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1095] = { - [sym_expr] = STATE(2033), + [1493] = { + [sym_lambda_bindings] = STATE(2438), + [sym_untyped_bindings] = STATE(2439), + [sym_typed_bindings] = STATE(2439), + [anon_sym_DOT] = ACTIONS(2937), + [anon_sym_DOT_DOT] = ACTIONS(2939), + [anon_sym_LBRACE] = ACTIONS(2941), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2943), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(2945), + [anon_sym_LPAREN] = ACTIONS(2947), + }, + [1494] = { + [sym_forall_bindings] = STATE(2440), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [1495] = { + [sym__expr1] = STATE(1835), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(1836), + [sym__declaration] = STATE(1837), + [sym_function_clause] = STATE(1838), + [aux_sym_source_file_repeat1] = STATE(2441), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), + }, + [1496] = { + [sym_expr] = STATE(2442), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -54849,12 +71075,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(2540), + [anon_sym_RPAREN] = ACTIONS(2935), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1096] = { - [sym_expr] = STATE(2034), + [1497] = { + [sym_expr] = STATE(2443), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -54890,36 +71116,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1097] = { - [ts_builtin_sym_end] = ACTIONS(709), - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), + [1498] = { + [sym_rewrite_equations] = STATE(2446), + [sym_with_expressions] = STATE(2447), + [sym__layout_semicolon] = ACTIONS(1711), + [sym__layout_close_brace] = ACTIONS(1711), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [anon_sym_SEMI] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_in] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(2949), + [anon_sym_with] = ACTIONS(2951), }, - [1098] = { - [ts_builtin_sym_end] = ACTIONS(164), + [1499] = { + [sym__layout_semicolon] = ACTIONS(284), + [sym__layout_close_brace] = ACTIONS(284), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + [anon_sym_rewrite] = ACTIONS(158), + [anon_sym_with] = ACTIONS(158), + }, + [1500] = { + [sym__layout_semicolon] = ACTIONS(286), + [sym__layout_close_brace] = ACTIONS(286), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [anon_sym_SEMI] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + [anon_sym_rewrite] = ACTIONS(160), + [anon_sym_with] = ACTIONS(160), + }, + [1501] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -54936,6 +71236,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -54945,10 +71246,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), [anon_sym_module] = ACTIONS(164), + [anon_sym_rewrite] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [1099] = { - [ts_builtin_sym_end] = ACTIONS(168), + [1502] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -54965,6 +71270,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -54974,793 +71280,567 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), [anon_sym_module] = ACTIONS(168), + [anon_sym_rewrite] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [1100] = { - [sym__expr2] = STATE(1101), - [sym_atomic_expr] = STATE(1098), - [sym__atomic_expr_curly] = STATE(1099), - [sym__atomic_expr_no_curly] = STATE(1099), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1358), - [sym_set_n] = ACTIONS(1358), - [sym_name_at] = ACTIONS(1360), - [sym_qualified_name] = ACTIONS(1358), - [anon_sym__] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1364), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(660), - [anon_sym_forall] = ACTIONS(662), - [anon_sym_let] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_Prop] = ACTIONS(1358), - [anon_sym_Set] = ACTIONS(1358), - [anon_sym_quote] = ACTIONS(1358), - [anon_sym_quoteTerm] = ACTIONS(1358), - [anon_sym_unquote] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LPAREN_PIPE] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1358), - }, - [1101] = { - [ts_builtin_sym_end] = ACTIONS(729), - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - }, - [1102] = { - [sym__expr1] = STATE(486), - [sym__application] = STATE(487), - [sym__expr2] = STATE(488), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(489), - [sym__atomic_expr_curly] = STATE(490), - [sym__atomic_expr_no_curly] = STATE(490), - [aux_sym__expr1_repeat1] = STATE(2036), - [aux_sym__application_repeat1] = STATE(2037), - [sym_literal] = ACTIONS(610), - [sym_set_n] = ACTIONS(610), - [sym_name_at] = ACTIONS(2542), - [sym_qualified_name] = ACTIONS(610), - [anon_sym__] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_LBRACE_LBRACE] = ACTIONS(616), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_Prop] = ACTIONS(610), - [anon_sym_Set] = ACTIONS(610), - [anon_sym_quote] = ACTIONS(610), - [anon_sym_quoteTerm] = ACTIONS(610), - [anon_sym_unquote] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_LPAREN_PIPE] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(610), - }, - [1103] = { - [sym__expr1] = STATE(502), - [sym__application] = STATE(503), - [sym__expr2] = STATE(504), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(505), - [sym__atomic_expr_curly] = STATE(506), - [sym__atomic_expr_no_curly] = STATE(506), - [aux_sym__expr1_repeat1] = STATE(2039), - [aux_sym__application_repeat1] = STATE(2040), - [sym_literal] = ACTIONS(628), - [sym_set_n] = ACTIONS(628), - [sym_name_at] = ACTIONS(2544), - [sym_qualified_name] = ACTIONS(628), - [anon_sym__] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(2544), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LBRACE_LBRACE] = ACTIONS(634), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_Prop] = ACTIONS(628), - [anon_sym_Set] = ACTIONS(628), - [anon_sym_quote] = ACTIONS(628), - [anon_sym_quoteTerm] = ACTIONS(628), - [anon_sym_unquote] = ACTIONS(628), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LPAREN_PIPE] = ACTIONS(644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - }, - [1104] = { - [sym_with_expressions] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(646), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(1372), - }, - [1105] = { - [sym_expr] = STATE(520), - [sym__expr1] = STATE(2043), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(2044), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(2045), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2046), - [aux_sym__application_repeat1] = STATE(2047), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(2546), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), - }, - [1106] = { - [sym_literal] = ACTIONS(1893), - [sym_set_n] = ACTIONS(1893), - [sym_name_at] = ACTIONS(1893), - [sym_qualified_name] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1893), + [1503] = { + [sym_where_clause] = STATE(2451), + [sym_rhs] = STATE(2452), + [sym__layout_semicolon] = ACTIONS(1717), + [sym__layout_close_brace] = ACTIONS(1717), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1893), - [anon_sym_forall] = ACTIONS(1893), - [anon_sym_let] = ACTIONS(1893), - [anon_sym_QMARK] = ACTIONS(1893), - [anon_sym_Prop] = ACTIONS(1893), - [anon_sym_Set] = ACTIONS(1893), - [anon_sym_quote] = ACTIONS(1893), - [anon_sym_quoteTerm] = ACTIONS(1893), - [anon_sym_unquote] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_LPAREN_PIPE] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(2953), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(2955), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(2953), + [anon_sym_module] = ACTIONS(2957), }, - [1107] = { - [sym__expr1] = STATE(531), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(16), - [sym__atomic_expr_curly] = STATE(17), - [sym__atomic_expr_no_curly] = STATE(17), - [sym_lhs] = STATE(532), - [sym__declaration] = STATE(2048), - [sym_function_clause] = STATE(20), - [aux_sym__expr1_repeat1] = STATE(535), - [aux_sym__application_repeat1] = STATE(536), - [sym_literal] = ACTIONS(10), - [sym_set_n] = ACTIONS(10), - [sym_name_at] = ACTIONS(672), - [sym_qualified_name] = ACTIONS(10), - [anon_sym__] = ACTIONS(10), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(14), - [anon_sym_LBRACE_LBRACE] = ACTIONS(16), + [1504] = { + [sym__layout_semicolon] = ACTIONS(1725), + [sym__layout_close_brace] = ACTIONS(1725), + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [anon_sym_SEMI] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(10), - [anon_sym_Prop] = ACTIONS(10), - [anon_sym_Set] = ACTIONS(10), - [anon_sym_quote] = ACTIONS(10), - [anon_sym_quoteTerm] = ACTIONS(10), - [anon_sym_unquote] = ACTIONS(10), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LPAREN_PIPE] = ACTIONS(28), - [anon_sym_DOT_DOT_DOT] = ACTIONS(10), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), }, - [1108] = { - [sym_semi] = STATE(1107), - [aux_sym__declarations1_repeat1] = STATE(2049), - [ts_builtin_sym_end] = ACTIONS(2550), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), + [1505] = { + [sym__layout_semicolon] = ACTIONS(1727), + [sym__layout_close_brace] = ACTIONS(1727), + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [anon_sym_SEMI] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), }, - [1109] = { - [sym__expr1] = STATE(531), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), + [1506] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(16), - [sym__atomic_expr_curly] = STATE(17), - [sym__atomic_expr_no_curly] = STATE(17), - [sym_lhs] = STATE(532), - [sym__declaration] = STATE(533), - [sym_function_clause] = STATE(20), - [sym__declarations1] = STATE(2050), - [aux_sym__expr1_repeat1] = STATE(535), - [aux_sym__application_repeat1] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(2552), - [sym_literal] = ACTIONS(10), - [sym_set_n] = ACTIONS(10), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(672), - [sym_qualified_name] = ACTIONS(10), - [anon_sym__] = ACTIONS(10), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(14), - [anon_sym_LBRACE_LBRACE] = ACTIONS(16), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(10), - [anon_sym_Prop] = ACTIONS(10), - [anon_sym_Set] = ACTIONS(10), - [anon_sym_quote] = ACTIONS(10), - [anon_sym_quoteTerm] = ACTIONS(10), - [anon_sym_unquote] = ACTIONS(10), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LPAREN_PIPE] = ACTIONS(28), - [anon_sym_DOT_DOT_DOT] = ACTIONS(10), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(1503), + [sym__declaration] = STATE(1504), + [sym_function_clause] = STATE(1505), + [aux_sym_source_file_repeat1] = STATE(2453), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_in] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), }, - [1110] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [1507] = { + [sym__application] = STATE(2454), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(1508), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), }, - [1111] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [1508] = { + [sym__expr2] = STATE(2455), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), }, - [1112] = { - [anon_sym_RBRACE] = ACTIONS(2554), + [1509] = { [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(2877), }, - [1113] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2556), + [1510] = { [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(2877), }, - [1114] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2556), + [1511] = { + [sym_expr] = STATE(2456), + [sym__expr1] = STATE(1472), + [sym__application] = STATE(1473), + [sym__expr2] = STATE(1474), + [sym__atomic_exprs1] = STATE(1475), + [sym_atomic_expr] = STATE(1476), + [sym__atomic_expr_curly] = STATE(1477), + [sym__atomic_expr_no_curly] = STATE(1477), + [sym_tele_arrow] = STATE(1478), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1479), + [aux_sym__application_repeat1] = STATE(1480), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1829), + [sym_set_n] = ACTIONS(1829), + [sym_name_at] = ACTIONS(1831), + [sym_qualified_name] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1837), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1839), + [anon_sym_forall] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(1829), + [anon_sym_Prop] = ACTIONS(1829), + [anon_sym_Set] = ACTIONS(1829), + [anon_sym_quote] = ACTIONS(1829), + [anon_sym_quoteTerm] = ACTIONS(1829), + [anon_sym_unquote] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_LPAREN_PIPE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), }, - [1115] = { + [1512] = { + [sym__layout_semicolon] = ACTIONS(1755), + [sym__layout_close_brace] = ACTIONS(1755), + [anon_sym_SEMI] = ACTIONS(1755), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(2556), - }, - [1116] = { - [sym_atomic_expr] = STATE(546), - [sym__atomic_expr_curly] = STATE(547), - [sym__atomic_expr_no_curly] = STATE(547), - [aux_sym__application_repeat1] = STATE(1116), - [sym_literal] = ACTIONS(2558), - [sym_set_n] = ACTIONS(2558), - [sym_name_at] = ACTIONS(2561), - [sym_qualified_name] = ACTIONS(2558), - [anon_sym__] = ACTIONS(2558), - [anon_sym_DOT] = ACTIONS(2561), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2567), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(2558), - [anon_sym_Prop] = ACTIONS(2558), - [anon_sym_Set] = ACTIONS(2558), - [anon_sym_quote] = ACTIONS(2558), - [anon_sym_quoteTerm] = ACTIONS(2558), - [anon_sym_unquote] = ACTIONS(2558), - [anon_sym_LPAREN] = ACTIONS(2570), - [anon_sym_LPAREN_PIPE] = ACTIONS(2573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2558), }, - [1117] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [1513] = { + [sym__expr2] = STATE(1518), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [aux_sym__application_repeat1] = STATE(767), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2961), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), }, - [1118] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [1514] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(2458), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), }, - [1119] = { - [anon_sym_RBRACE] = ACTIONS(2576), + [1515] = { + [sym_semi] = STATE(1514), + [aux_sym_lambda_where_clauses_repeat1] = STATE(2459), + [sym__layout_semicolon] = ACTIONS(968), + [sym__layout_close_brace] = ACTIONS(2963), + [anon_sym_SEMI] = ACTIONS(968), [sym_comment] = ACTIONS(86), }, - [1120] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2578), - [sym_comment] = ACTIONS(86), + [1516] = { + [ts_builtin_sym_end] = ACTIONS(2244), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_rewrite] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), }, - [1121] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2578), + [1517] = { + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + [anon_sym_rewrite] = ACTIONS(2965), + [anon_sym_with] = ACTIONS(2965), }, - [1122] = { + [1518] = { + [sym__layout_semicolon] = ACTIONS(789), + [sym__layout_close_brace] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(2578), }, - [1123] = { - [sym_expr] = STATE(2055), - [sym__expr1] = STATE(38), + [1519] = { + [sym_expr] = STATE(1086), + [sym__expr1] = STATE(1525), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), + [sym__atomic_exprs1] = STATE(1526), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(1527), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), + [aux_sym__expr1_repeat1] = STATE(1528), + [aux_sym__application_repeat1] = STATE(1529), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(1889), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(1891), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(1893), + [anon_sym_forall] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1124] = { - [sym_expr] = STATE(2056), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [1520] = { + [sym_atomic_expr] = STATE(547), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(1889), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_LBRACE_LBRACE] = ACTIONS(717), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1125] = { - [sym_expr] = STATE(2057), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [1521] = { + [sym_atomic_expr] = STATE(547), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(1889), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_LBRACE_LBRACE] = ACTIONS(723), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1126] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), + [1522] = { + [sym_lambda_bindings] = STATE(2460), + [sym_untyped_bindings] = STATE(2461), + [sym_typed_bindings] = STATE(2461), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(252), + [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(256), + [anon_sym_LPAREN] = ACTIONS(258), }, - [1127] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), + [1523] = { + [sym_forall_bindings] = STATE(2462), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), }, - [1128] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [1524] = { + [sym__expr1] = STATE(809), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(557), + [sym__declaration] = STATE(558), + [sym_function_clause] = STATE(559), + [aux_sym_source_file_repeat1] = STATE(2463), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(1006), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - }, - [1129] = { - [sym_atomic_expr] = STATE(2058), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(1432), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [1130] = { - [sym_expr] = STATE(2060), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(2580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [1525] = { + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2967), + [anon_sym_COLON] = ACTIONS(280), }, - [1131] = { - [sym_expr] = STATE(2061), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [1526] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(2967), + [anon_sym_PIPE] = ACTIONS(162), }, - [1132] = { - [sym_expr] = STATE(756), - [sym__expr1] = STATE(2062), + [1527] = { + [sym_expr] = STATE(218), + [sym__expr1] = STATE(1525), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2063), + [sym__atomic_exprs1] = STATE(1526), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2064), + [sym_tele_arrow] = STATE(1527), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1479), - [aux_sym__application_repeat1] = STATE(1480), + [aux_sym__expr1_repeat1] = STATE(1528), + [aux_sym__application_repeat1] = STATE(1529), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), + [sym_name_at] = ACTIONS(1889), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1891), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), + [anon_sym_BSLASH] = ACTIONS(1893), + [anon_sym_forall] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1897), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -55771,280 +71851,462 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1133] = { - [sym_lambda_bindings] = STATE(2065), - [sym_untyped_bindings] = STATE(2066), - [sym_typed_bindings] = STATE(2066), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(767), - [anon_sym_LPAREN] = ACTIONS(258), + [1528] = { + [sym__application] = STATE(225), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1872), + [sym__atomic_expr_curly] = STATE(1873), + [sym__atomic_expr_no_curly] = STATE(1873), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(2466), + [sym_literal] = ACTIONS(2306), + [sym_set_n] = ACTIONS(2306), + [sym_name_at] = ACTIONS(2969), + [sym_qualified_name] = ACTIONS(2306), + [anon_sym__] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2312), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1893), + [anon_sym_forall] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_QMARK] = ACTIONS(2306), + [anon_sym_Prop] = ACTIONS(2306), + [anon_sym_Set] = ACTIONS(2306), + [anon_sym_quote] = ACTIONS(2306), + [anon_sym_quoteTerm] = ACTIONS(2306), + [anon_sym_unquote] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_LPAREN_PIPE] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), + }, + [1529] = { + [sym__expr2] = STATE(229), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(1889), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_LBRACE_LBRACE] = ACTIONS(717), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1893), + [anon_sym_forall] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [1530] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [1531] = { + [sym_lambda_bindings] = STATE(852), + [sym_untyped_bindings] = STATE(1531), + [sym_typed_bindings] = STATE(1531), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1083), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_rewrite] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), }, - [1134] = { - [sym_forall_bindings] = STATE(2067), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [1532] = { + [sym_expr] = STATE(868), + [sym__expr1] = STATE(2470), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(2471), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(2472), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(2473), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(2973), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), }, - [1135] = { - [sym__expr1] = STATE(770), + [1533] = { + [sym__expr1] = STATE(93), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2068), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(2069), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [sym_lhs] = STATE(98), + [sym__declaration] = STATE(99), + [sym_function_clause] = STATE(100), + [aux_sym_source_file_repeat1] = STATE(2477), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [1136] = { - [sym_expr] = STATE(2070), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [1534] = { + [sym__expr1] = STATE(1109), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [aux_sym__expr1_repeat1] = STATE(2482), + [aux_sym__application_repeat1] = STATE(2483), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(2977), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(2582), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(2979), + [anon_sym_forall] = ACTIONS(2981), + [anon_sym_let] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [1137] = { - [sym_expr] = STATE(2071), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [1535] = { + [sym__expr1] = STATE(1125), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1128), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), + [aux_sym__expr1_repeat1] = STATE(2488), + [aux_sym__application_repeat1] = STATE(2489), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(2985), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [anon_sym_BSLASH] = ACTIONS(2987), + [anon_sym_forall] = ACTIONS(2989), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), }, - [1138] = { - [sym__application] = STATE(789), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(1139), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [aux_sym__application_repeat1] = STATE(2073), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(1432), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2584), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), + [1536] = { + [sym_with_expressions] = STATE(1132), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(1901), }, - [1139] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), + [1537] = { + [sym_expr] = STATE(2362), + [sym__expr1] = STATE(2492), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2493), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2494), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2488), + [aux_sym__application_repeat1] = STATE(2495), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2993), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2987), + [anon_sym_forall] = ACTIONS(2989), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [1140] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [1538] = { + [sym__expr1] = STATE(809), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(810), + [sym__declaration] = STATE(776), + [sym_function_clause] = STATE(777), + [aux_sym_source_file_repeat1] = STATE(1538), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(2997), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(3000), + [anon_sym_forall] = ACTIONS(3003), + [anon_sym_let] = ACTIONS(3006), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), }, - [1141] = { - [sym_semi] = STATE(2074), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2075), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1510), + [1539] = { [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_COLON] = ACTIONS(1510), + [anon_sym_RPAREN] = ACTIONS(2835), }, - [1142] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(1139), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(1432), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2584), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), + [1540] = { + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_DOT_DOT] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3011), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_RPAREN] = ACTIONS(3011), + [anon_sym_PIPE_RPAREN] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3011), }, - [1143] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(1144), + [1541] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + }, + [1542] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + }, + [1543] = { + [sym_expr] = STATE(1086), + [sym__expr1] = STATE(1544), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1145), + [sym__atomic_exprs1] = STATE(1545), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1146), + [sym_tele_arrow] = STATE(1546), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1147), + [aux_sym__expr1_repeat1] = STATE(1064), [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), @@ -56070,29 +72332,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1144] = { + [1544] = { [anon_sym_RBRACE] = ACTIONS(280), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_EQ] = ACTIONS(3013), [anon_sym_COLON] = ACTIONS(280), }, - [1145] = { + [1545] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2586), + [anon_sym_DASH_GT] = ACTIONS(3013), [anon_sym_PIPE] = ACTIONS(162), }, - [1146] = { + [1546] = { [sym_expr] = STATE(218), - [sym__expr1] = STATE(1144), + [sym__expr1] = STATE(1544), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1145), + [sym__atomic_exprs1] = STATE(1545), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1146), + [sym_tele_arrow] = STATE(1546), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1147), + [aux_sym__expr1_repeat1] = STATE(1064), [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), @@ -56118,182 +72380,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1147] = { - [sym__application] = STATE(225), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2083), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2085), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(2590), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), - }, - [1148] = { - [sym_expr] = STATE(2093), - [sym__expr1] = STATE(2094), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2095), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2098), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1254), - [aux_sym__application_repeat1] = STATE(2099), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2602), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2604), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1564), - [anon_sym_forall] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [1547] = { + [sym_expr] = STATE(2497), + [sym__expr1] = STATE(2498), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2499), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2500), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1130), + [aux_sym__application_repeat1] = STATE(1888), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2320), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2322), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_forall] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [1149] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2068), - [sym__declaration] = STATE(2100), - [sym_function_clause] = STATE(579), - [sym__declarations1] = STATE(2101), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), + [1548] = { + [sym_vopen] = STATE(2501), + [sym_declarations] = STATE(2502), + [sym__declarations0] = STATE(2503), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [1150] = { - [sym_anonymous_name] = STATE(2102), - [sym_name] = ACTIONS(2614), - [anon_sym__] = ACTIONS(676), + [1549] = { + [sym_anonymous_name] = STATE(2504), + [sym_name] = ACTIONS(3015), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), }, - [1151] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), + [1550] = { + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), }, - [1152] = { - [sym_where_clause] = STATE(2103), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(1456), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(1458), + [1551] = { + [sym_where_clause] = STATE(2505), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(1917), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(1919), }, - [1153] = { + [1552] = { [sym__expr1] = STATE(200), [sym__application] = STATE(94), [sym__expr2] = STATE(95), @@ -56301,153 +72493,186 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(577), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(1153), + [sym_lhs] = STATE(826), + [sym__declaration] = STATE(827), + [sym_function_clause] = STATE(828), + [aux_sym_source_file_repeat1] = STATE(1552), [aux_sym__expr1_repeat1] = STATE(205), [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(1596), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1599), - [anon_sym_forall] = ACTIONS(1602), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(1428), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1431), + [anon_sym_forall] = ACTIONS(1434), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), }, - [1154] = { - [anon_sym_RBRACE] = ACTIONS(2616), + [1553] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_rewrite] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [1554] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_rewrite] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [1555] = { + [ts_builtin_sym_end] = ACTIONS(3017), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + [anon_sym_rewrite] = ACTIONS(3017), + [anon_sym_with] = ACTIONS(3017), + }, + [1556] = { + [anon_sym_RBRACE] = ACTIONS(3019), [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3021), }, - [1155] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), + [1557] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3019), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3023), }, - [1156] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), + [1558] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3019), }, - [1157] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), + [1559] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3025), }, - [1158] = { - [sym_atomic_expr] = STATE(2105), - [sym__atomic_expr_curly] = STATE(1169), - [sym__atomic_expr_no_curly] = STATE(1169), - [sym_literal] = ACTIONS(1466), - [sym_set_n] = ACTIONS(1466), - [sym_name_at] = ACTIONS(1468), - [sym_qualified_name] = ACTIONS(1466), - [anon_sym__] = ACTIONS(1466), - [anon_sym_DOT] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1472), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1466), - [anon_sym_Prop] = ACTIONS(1466), - [anon_sym_Set] = ACTIONS(1466), - [anon_sym_quote] = ACTIONS(1466), - [anon_sym_quoteTerm] = ACTIONS(1466), - [anon_sym_unquote] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_LPAREN_PIPE] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1466), + [1560] = { + [ts_builtin_sym_end] = ACTIONS(1759), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_RPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_rewrite] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), }, - [1159] = { - [sym_expr] = STATE(2107), + [1561] = { + [sym_expr] = STATE(2510), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -56468,7 +72693,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(2618), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -56484,8 +72708,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1160] = { - [sym_expr] = STATE(2108), + [1562] = { + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_rewrite] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), + }, + [1563] = { + [sym_expr] = STATE(2511), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -56507,7 +72764,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2620), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -56522,106 +72778,131 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1161] = { - [sym_expr] = STATE(1322), - [sym__expr1] = STATE(2111), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(2112), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(2113), + [1564] = { + [sym_vclose] = STATE(2512), + [sym__layout_close_brace] = ACTIONS(1963), + [sym_comment] = ACTIONS(86), + }, + [1565] = { + [sym_expr] = STATE(2513), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2114), - [aux_sym__application_repeat1] = STATE(2115), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2624), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1162] = { - [sym_lambda_bindings] = STATE(2116), - [sym_untyped_bindings] = STATE(2117), - [sym_typed_bindings] = STATE(2117), - [anon_sym_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LBRACE_LBRACE] = ACTIONS(338), + [1566] = { + [anon_sym_RBRACE] = ACTIONS(1933), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_COLON] = ACTIONS(1935), }, - [1163] = { - [sym_forall_bindings] = STATE(2118), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [1567] = { + [sym_expr] = STATE(1575), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1164] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2119), - [sym__declaration] = STATE(600), - [sym_function_clause] = STATE(601), - [aux_sym_source_file_repeat1] = STATE(2120), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [1568] = { + [sym_expr] = STATE(1576), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1957), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1165] = { - [sym_expr] = STATE(2121), + [1569] = { + [sym_expr] = STATE(1577), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -56654,183 +72935,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(2620), + [anon_sym_RPAREN] = ACTIONS(1957), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1166] = { - [sym_expr] = STATE(2122), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), + [1570] = { + [ts_builtin_sym_end] = ACTIONS(186), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_RPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_rewrite] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), + }, + [1571] = { + [sym_expr] = STATE(1575), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [1167] = { - [sym__application] = STATE(1343), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(1168), - [sym__atomic_expr_curly] = STATE(1169), - [sym__atomic_expr_no_curly] = STATE(1169), - [aux_sym__application_repeat1] = STATE(2124), - [sym_literal] = ACTIONS(1466), - [sym_set_n] = ACTIONS(1466), - [sym_name_at] = ACTIONS(1468), - [sym_qualified_name] = ACTIONS(1466), - [anon_sym__] = ACTIONS(1466), - [anon_sym_DOT] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1472), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(1466), - [anon_sym_Prop] = ACTIONS(1466), - [anon_sym_Set] = ACTIONS(1466), - [anon_sym_quote] = ACTIONS(1466), - [anon_sym_quoteTerm] = ACTIONS(1466), - [anon_sym_unquote] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_LPAREN_PIPE] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1466), - }, - [1168] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - }, - [1169] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - }, - [1170] = { - [sym_semi] = STATE(2125), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2126), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1510), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_COLON] = ACTIONS(1510), - }, - [1171] = { - [sym__expr2] = STATE(289), - [sym_atomic_expr] = STATE(1168), - [sym__atomic_expr_curly] = STATE(1169), - [sym__atomic_expr_no_curly] = STATE(1169), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1466), - [sym_set_n] = ACTIONS(1466), - [sym_name_at] = ACTIONS(1468), - [sym_qualified_name] = ACTIONS(1466), - [anon_sym__] = ACTIONS(1466), - [anon_sym_DOT] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1472), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(1466), - [anon_sym_Prop] = ACTIONS(1466), - [anon_sym_Set] = ACTIONS(1466), - [anon_sym_quote] = ACTIONS(1466), - [anon_sym_quoteTerm] = ACTIONS(1466), - [anon_sym_unquote] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_LPAREN_PIPE] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1466), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1172] = { - [sym_expr] = STATE(1314), - [sym__expr1] = STATE(1173), - [sym__application] = STATE(61), + [1572] = { + [sym_expr] = STATE(1576), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(1174), + [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), [sym__atomic_expr_curly] = STATE(187), [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(1175), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1176), + [aux_sym__expr1_repeat1] = STATE(67), [aux_sym__application_repeat1] = STATE(188), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(230), @@ -56842,6 +73035,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1957), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -56856,313 +73050,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1173] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(280), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_COLON] = ACTIONS(280), - }, - [1174] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2628), - [anon_sym_PIPE] = ACTIONS(162), - }, - [1175] = { - [sym_expr] = STATE(278), - [sym__expr1] = STATE(1173), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(1174), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(1175), + [1573] = { + [sym_expr] = STATE(1577), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1176), - [aux_sym__application_repeat1] = STATE(188), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), - }, - [1176] = { - [sym__application] = STATE(285), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2134), - [sym__atomic_expr_curly] = STATE(2135), - [sym__atomic_expr_no_curly] = STATE(2135), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2136), - [sym_literal] = ACTIONS(2630), - [sym_set_n] = ACTIONS(2630), - [sym_name_at] = ACTIONS(2632), - [sym_qualified_name] = ACTIONS(2630), - [anon_sym__] = ACTIONS(2630), - [anon_sym_DOT] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2636), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(2630), - [anon_sym_Prop] = ACTIONS(2630), - [anon_sym_Set] = ACTIONS(2630), - [anon_sym_quote] = ACTIONS(2630), - [anon_sym_quoteTerm] = ACTIONS(2630), - [anon_sym_unquote] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2638), - [anon_sym_LPAREN_PIPE] = ACTIONS(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2630), - }, - [1177] = { - [sym_expr] = STATE(2144), - [sym__expr1] = STATE(2145), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(2146), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(2149), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1431), - [aux_sym__application_repeat1] = STATE(2150), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(2644), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2646), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1770), - [anon_sym_forall] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - }, - [1178] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2119), - [sym__declaration] = STATE(2151), - [sym_function_clause] = STATE(601), - [sym__declarations1] = STATE(2152), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(670), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(670), - }, - [1179] = { - [sym_anonymous_name] = STATE(2153), - [sym_name] = ACTIONS(2656), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), - }, - [1180] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE_RBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - }, - [1181] = { - [sym_where_clause] = STATE(2154), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE_RBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(1492), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(1494), - }, - [1182] = { - [sym__expr1] = STATE(263), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(599), - [sym__declaration] = STATE(600), - [sym_function_clause] = STATE(601), - [aux_sym_source_file_repeat1] = STATE(1182), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(1802), - [sym_set_n] = ACTIONS(1802), - [sym_name_at] = ACTIONS(1805), - [sym_qualified_name] = ACTIONS(1802), - [anon_sym__] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE_RBRACE] = ACTIONS(680), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1814), - [anon_sym_forall] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1802), - [anon_sym_Prop] = ACTIONS(1802), - [anon_sym_Set] = ACTIONS(1802), - [anon_sym_quote] = ACTIONS(1802), - [anon_sym_quoteTerm] = ACTIONS(1802), - [anon_sym_unquote] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LPAREN_PIPE] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON] = ACTIONS(680), - }, - [1183] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2616), - [sym_comment] = ACTIONS(86), - }, - [1184] = { - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_RBRACE] = ACTIONS(2658), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_PIPE_RPAREN] = ACTIONS(2658), - [anon_sym_COLON] = ACTIONS(2658), - }, - [1185] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(1957), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1186] = { + [1574] = { + [ts_builtin_sym_end] = ACTIONS(228), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), [sym_name_at] = ACTIONS(228), [sym_qualified_name] = ACTIONS(228), [anon_sym__] = ACTIONS(228), @@ -57173,9 +73102,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(228), [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), [anon_sym_Prop] = ACTIONS(228), [anon_sym_Set] = ACTIONS(228), @@ -57186,337 +73118,202 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_rewrite] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [1187] = { - [anon_sym_RBRACE] = ACTIONS(2660), - [sym_comment] = ACTIONS(86), - }, - [1188] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2662), - [sym_comment] = ACTIONS(86), - }, - [1189] = { - [anon_sym_SEMI] = ACTIONS(280), - [anon_sym_RBRACE] = ACTIONS(280), + [1575] = { + [anon_sym_RBRACE] = ACTIONS(3027), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2664), }, - [1190] = { + [1576] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3029), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(162), - }, - [1191] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(1189), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1190), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(1191), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(760), - [aux_sym__application_repeat1] = STATE(761), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1192] = { - [anon_sym_SEMI] = ACTIONS(819), - [anon_sym_RBRACE] = ACTIONS(819), + [1577] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2666), - [anon_sym_EQ] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(3029), }, - [1193] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(1193), - [sym_typed_bindings] = STATE(1193), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [1578] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), - }, - [1194] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(1189), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1190), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(1191), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(760), - [aux_sym__application_repeat1] = STATE(761), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [1195] = { - [sym_where_clause] = STATE(647), - [sym_rhs] = STATE(648), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2668), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(835), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(2668), - [anon_sym_module] = ACTIONS(837), + [anon_sym_PIPE_RPAREN] = ACTIONS(3029), }, - [1196] = { - [sym__expr1] = STATE(770), + [1579] = { + [sym_expr] = STATE(2516), + [sym__expr1] = STATE(869), [sym__application] = STATE(94), [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1195), - [sym__declaration] = STATE(202), - [sym_function_clause] = STATE(203), - [aux_sym_source_file_repeat1] = STATE(2160), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(2670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [1197] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2662), - }, - [1198] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(2662), - }, - [1199] = { - [sym_expr] = STATE(1500), - [sym__expr1] = STATE(1189), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1190), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(1191), + [sym__atomic_exprs1] = STATE(870), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(873), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(760), - [aux_sym__application_repeat1] = STATE(761), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(874), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(974), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1089), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1091), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), }, - [1200] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(622), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(799), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2672), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), + [1580] = { + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_RPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_rewrite] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), + }, + [1581] = { + [ts_builtin_sym_end] = ACTIONS(2244), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_RPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_rewrite] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + }, + [1582] = { + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_RPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + [anon_sym_rewrite] = ACTIONS(2262), + [anon_sym_with] = ACTIONS(2262), }, - [1201] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(622), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(2162), - [aux_sym__application_repeat1] = STATE(627), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(799), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(805), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), - [sym_catchall_pragma] = ACTIONS(817), + [1583] = { + [sym_vclose] = STATE(2517), + [sym__layout_close_brace] = ACTIONS(1963), + [sym_comment] = ACTIONS(86), }, - [1202] = { - [sym_semi] = STATE(1201), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2163), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(2674), + [1584] = { + [sym_vopen] = STATE(879), + [sym_declarations] = STATE(880), + [sym__declarations0] = STATE(2518), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2674), }, - [1203] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(630), + [1585] = { + [sym_expr] = STATE(615), + [sym__expr1] = STATE(885), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(631), + [sym__atomic_exprs1] = STATE(886), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(632), + [sym_tele_arrow] = STATE(887), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), + [sym_name_at] = ACTIONS(120), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -57527,367 +73324,214 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1204] = { - [sym_atomic_expr] = STATE(1637), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(1516), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - }, - [1205] = { - [sym_expr] = STATE(1643), - [sym__expr1] = STATE(2166), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2167), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2168), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(2169), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2676), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1206] = { - [sym__application] = STATE(1651), - [sym__expr2] = STATE(95), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [aux_sym__application_repeat1] = STATE(2171), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(1516), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - }, - [1207] = { - [sym_semi] = STATE(2172), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2173), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_rewrite] = ACTIONS(1048), - [anon_sym_with] = ACTIONS(1048), - }, - [1208] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(1516), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - }, - [1209] = { - [sym_expr] = STATE(1635), - [sym__expr1] = STATE(1212), + [1586] = { + [sym_expr] = STATE(1562), + [sym__expr1] = STATE(1589), [sym__application] = STATE(94), [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1213), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1214), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(1215), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1524), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1526), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [sym__atomic_exprs1] = STATE(1590), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(1591), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(1592), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1971), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), }, - [1210] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1524), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [1587] = { + [sym_atomic_expr] = STATE(1570), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1971), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1945), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), }, - [1211] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1524), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2091), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [1588] = { + [sym_atomic_expr] = STATE(1570), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1971), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1951), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), }, - [1212] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2682), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_rewrite] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), + [1589] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3031), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_rewrite] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), }, - [1213] = { + [1590] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2684), + [anon_sym_DASH_GT] = ACTIONS(3033), [anon_sym_PIPE] = ACTIONS(162), }, - [1214] = { - [sym_expr] = STATE(1670), - [sym__expr1] = STATE(1212), + [1591] = { + [sym_expr] = STATE(1580), + [sym__expr1] = STATE(1589), [sym__application] = STATE(94), [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1213), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1214), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(1215), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1524), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1526), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [sym__atomic_exprs1] = STATE(1590), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(1591), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(1592), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1971), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), }, - [1215] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), + [1592] = { + [sym__expr2] = STATE(400), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1524), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1971), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1945), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), }, - [1216] = { - [sym__expr1] = STATE(930), + [1593] = { + [sym__expr1] = STATE(875), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), [sym_literal] = ACTIONS(102), [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(260), + [sym_name_at] = ACTIONS(516), [sym_qualified_name] = ACTIONS(102), [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(260), + [anon_sym_DOT] = ACTIONS(516), [anon_sym_LBRACE] = ACTIONS(106), [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), [anon_sym_QMARK] = ACTIONS(102), [anon_sym_Prop] = ACTIONS(102), [anon_sym_Set] = ACTIONS(102), @@ -57898,28 +73542,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(118), [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [1217] = { - [sym__expr1] = STATE(931), + [1594] = { + [sym__expr1] = STATE(876), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), [sym_literal] = ACTIONS(102), [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(260), + [sym_name_at] = ACTIONS(516), [sym_qualified_name] = ACTIONS(102), [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(260), + [anon_sym_DOT] = ACTIONS(516), [anon_sym_LBRACE] = ACTIONS(106), [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), [anon_sym_QMARK] = ACTIONS(102), [anon_sym_Prop] = ACTIONS(102), [anon_sym_Set] = ACTIONS(102), @@ -57930,350 +73574,124 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(118), [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [1218] = { - [sym_with_expressions] = STATE(932), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_rewrite] = ACTIONS(646), - [anon_sym_with] = ACTIONS(1530), - }, - [1219] = { - [sym_expr] = STATE(933), - [sym__expr1] = STATE(1212), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1213), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1214), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(1215), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1524), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1526), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1220] = { - [sym__expr1] = STATE(1484), + [1595] = { + [sym_expr] = STATE(878), + [sym__expr1] = STATE(1589), [sym__application] = STATE(94), [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1485), - [sym__declaration] = STATE(2175), - [sym_function_clause] = STATE(100), - [sym__declarations1] = STATE(935), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), - [anon_sym_rewrite] = ACTIONS(670), - [anon_sym_with] = ACTIONS(670), - }, - [1221] = { - [sym_anonymous_name] = STATE(2176), - [sym_name] = ACTIONS(2686), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), - }, - [1222] = { - [sym_where_clause] = STATE(937), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(1534), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(1536), - [anon_sym_rewrite] = ACTIONS(678), - [anon_sym_with] = ACTIONS(678), + [sym__atomic_exprs1] = STATE(1590), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(1591), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(1592), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1971), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), }, - [1223] = { - [sym__expr1] = STATE(637), + [1596] = { + [sym__expr1] = STATE(93), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(638), + [sym_lhs] = STATE(98), [sym__declaration] = STATE(99), [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(1223), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(1596), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1599), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(1602), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_rewrite] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), - }, - [1224] = { - [ts_builtin_sym_end] = ACTIONS(30), - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), - }, - [1225] = { - [sym_atomic_expr] = STATE(2177), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(1540), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [1226] = { - [sym_expr] = STATE(2179), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(2688), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [aux_sym_source_file_repeat1] = STATE(1596), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(2001), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2004), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_rewrite] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), }, - [1227] = { - [sym_expr] = STATE(2180), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2690), + [1597] = { + [sym_atomic_expr] = STATE(1927), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(1975), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [1228] = { - [sym_lambda_bindings] = STATE(2186), - [sym_untyped_bindings] = STATE(2187), - [sym_typed_bindings] = STATE(2187), - [anon_sym_DOT] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2698), + [1598] = { + [sym_lambda_bindings] = STATE(2520), + [sym_untyped_bindings] = STATE(2521), + [sym_typed_bindings] = STATE(2521), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2382), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2384), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_where] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2388), }, - [1229] = { - [sym_forall_bindings] = STATE(2188), + [1599] = { + [sym_forall_bindings] = STATE(2522), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -58285,490 +73703,306 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [1230] = { - [sym__expr1] = STATE(2189), + [1600] = { + [sym__expr1] = STATE(2523), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2190), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(2191), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(260), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [1231] = { - [sym_expr] = STATE(2192), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(2690), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [1232] = { - [sym_expr] = STATE(2193), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [1233] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_literal] = ACTIONS(1302), - [sym_set_n] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [sym_name_at] = ACTIONS(1302), - [sym_qualified_name] = ACTIONS(1302), - [anon_sym__] = ACTIONS(1302), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1302), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_BSLASH] = ACTIONS(1302), - [anon_sym_where] = ACTIONS(1302), - [anon_sym_forall] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1302), - [anon_sym_Prop] = ACTIONS(1302), - [anon_sym_Set] = ACTIONS(1302), - [anon_sym_quote] = ACTIONS(1302), - [anon_sym_quoteTerm] = ACTIONS(1302), - [anon_sym_unquote] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_LPAREN_PIPE] = ACTIONS(1302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_COLON] = ACTIONS(1302), - [anon_sym_module] = ACTIONS(1302), - [anon_sym_with] = ACTIONS(1302), - }, - [1234] = { - [ts_builtin_sym_end] = ACTIONS(158), - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_in] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), - [anon_sym_with] = ACTIONS(158), - }, - [1235] = { - [ts_builtin_sym_end] = ACTIONS(160), - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_in] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), - [anon_sym_with] = ACTIONS(160), - }, - [1236] = { - [ts_builtin_sym_end] = ACTIONS(164), - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), - }, - [1237] = { - [ts_builtin_sym_end] = ACTIONS(168), - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), + [sym_lhs] = STATE(953), + [sym__declaration] = STATE(954), + [sym_function_clause] = STATE(955), + [aux_sym_source_file_repeat1] = STATE(2524), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(516), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [1238] = { - [sym__application] = STATE(2194), - [sym__expr2] = STATE(1235), + [1601] = { + [sym__application] = STATE(1943), + [sym__expr2] = STATE(1111), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(1239), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(1540), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1546), - [anon_sym_forall] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [aux_sym__application_repeat1] = STATE(1602), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(1975), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1977), + [anon_sym_forall] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [1239] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), + [1602] = { + [sym__expr2] = STATE(1944), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(1540), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(1975), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), [sym_comment] = ACTIONS(18), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1546), - [anon_sym_forall] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [anon_sym_BSLASH] = ACTIONS(1977), + [anon_sym_forall] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [1240] = { - [ts_builtin_sym_end] = ACTIONS(30), - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [1603] = { + [sym_atomic_expr] = STATE(1945), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(1983), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), }, - [1241] = { - [sym_atomic_expr] = STATE(2196), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(1558), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [1604] = { + [sym_lambda_bindings] = STATE(2525), + [sym_untyped_bindings] = STATE(2526), + [sym_typed_bindings] = STATE(2526), + [anon_sym_DOT] = ACTIONS(2394), + [anon_sym_DOT_DOT] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2400), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2404), }, - [1242] = { - [sym_expr] = STATE(2198), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [1605] = { + [sym_forall_bindings] = STATE(2527), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [1606] = { + [sym__expr1] = STATE(408), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(974), + [sym__declaration] = STATE(975), + [sym_function_clause] = STATE(976), + [aux_sym_source_file_repeat1] = STATE(2528), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(516), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [1243] = { - [sym_expr] = STATE(2199), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2706), + [1607] = { + [sym__application] = STATE(1960), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1128), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(1608), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(1983), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_BSLASH] = ACTIONS(1985), + [anon_sym_forall] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), }, - [1244] = { - [sym_lambda_bindings] = STATE(2205), - [sym_untyped_bindings] = STATE(2206), - [sym_typed_bindings] = STATE(2206), - [anon_sym_DOT] = ACTIONS(2708), - [anon_sym_DOT_DOT] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2714), + [1608] = { + [sym__expr2] = STATE(1961), + [sym_atomic_expr] = STATE(1128), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(1983), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1985), + [anon_sym_forall] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + }, + [1609] = { + [sym_atomic_expr] = STATE(1965), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1991), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2408), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), + }, + [1610] = { + [sym_atomic_expr] = STATE(1965), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1991), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(2412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2414), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), + }, + [1611] = { + [sym_lambda_bindings] = STATE(2529), + [sym_untyped_bindings] = STATE(2530), + [sym_typed_bindings] = STATE(2530), + [anon_sym_DOT] = ACTIONS(2422), + [anon_sym_DOT_DOT] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2428), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_where] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2432), }, - [1245] = { - [sym_forall_bindings] = STATE(2207), + [1612] = { + [sym_forall_bindings] = STATE(2531), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -58780,32 +74014,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [1246] = { - [sym__expr1] = STATE(200), + [1613] = { + [sym__expr1] = STATE(408), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2208), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(2209), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), + [sym_lhs] = STATE(2532), + [sym__declaration] = STATE(1001), + [sym_function_clause] = STATE(1002), + [aux_sym_source_file_repeat1] = STATE(2533), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), [sym_literal] = ACTIONS(102), [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(260), + [sym_name_at] = ACTIONS(516), [sym_qualified_name] = ACTIONS(102), [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(260), + [anon_sym_DOT] = ACTIONS(516), [anon_sym_LBRACE] = ACTIONS(106), [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), [anon_sym_QMARK] = ACTIONS(102), [anon_sym_Prop] = ACTIONS(102), [anon_sym_Set] = ACTIONS(102), @@ -58816,54 +74050,147 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(118), [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [1247] = { - [sym_expr] = STATE(2210), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [1614] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3035), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [1615] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3037), + [anon_sym_PIPE] = ACTIONS(162), + }, + [1616] = { + [sym_expr] = STATE(1985), + [sym__expr1] = STATE(1614), + [sym__application] = STATE(1145), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(1615), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_tele_arrow] = STATE(1616), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1617), + [aux_sym__application_repeat1] = STATE(1618), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1991), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1993), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1995), + [anon_sym_forall] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), + }, + [1617] = { + [sym__application] = STATE(1992), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1993), + [sym__atomic_expr_curly] = STATE(1994), + [sym__atomic_expr_no_curly] = STATE(1994), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(2536), + [sym_literal] = ACTIONS(2438), + [sym_set_n] = ACTIONS(2438), + [sym_name_at] = ACTIONS(3039), + [sym_qualified_name] = ACTIONS(2438), + [anon_sym__] = ACTIONS(2438), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2444), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1995), + [anon_sym_forall] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_QMARK] = ACTIONS(2438), + [anon_sym_Prop] = ACTIONS(2438), + [anon_sym_Set] = ACTIONS(2438), + [anon_sym_quote] = ACTIONS(2438), + [anon_sym_quoteTerm] = ACTIONS(2438), + [anon_sym_unquote] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_LPAREN_PIPE] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2438), + }, + [1618] = { + [sym__expr2] = STATE(1996), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1991), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2408), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1995), + [anon_sym_forall] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), }, - [1248] = { - [sym_expr] = STATE(2211), - [sym__expr1] = STATE(126), + [1619] = { + [sym_expr] = STATE(615), + [sym__expr1] = STATE(900), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), + [sym__atomic_exprs1] = STATE(901), [sym_atomic_expr] = STATE(128), [sym__atomic_expr_curly] = STATE(129), [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), + [sym_tele_arrow] = STATE(902), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(131), [aux_sym__application_repeat1] = STATE(132), @@ -58891,271 +74218,328 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1249] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_literal] = ACTIONS(1320), - [sym_set_n] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_name_at] = ACTIONS(1320), - [sym_qualified_name] = ACTIONS(1320), - [anon_sym__] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1320), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_BSLASH] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_forall] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_Prop] = ACTIONS(1320), - [anon_sym_Set] = ACTIONS(1320), - [anon_sym_quote] = ACTIONS(1320), - [anon_sym_quoteTerm] = ACTIONS(1320), - [anon_sym_unquote] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_RPAREN] = ACTIONS(1320), - [anon_sym_LPAREN_PIPE] = ACTIONS(1320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1320), - [anon_sym_COLON] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), + [1620] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_PIPE_RPAREN] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_rewrite] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), }, - [1250] = { - [ts_builtin_sym_end] = ACTIONS(158), - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_in] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), + [1621] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_PIPE_RPAREN] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_rewrite] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), }, - [1251] = { - [ts_builtin_sym_end] = ACTIONS(160), - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [1622] = { + [sym__application] = STATE(2537), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_in] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [1252] = { - [ts_builtin_sym_end] = ACTIONS(164), - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [1623] = { + [sym__application] = STATE(2538), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1253] = { - [ts_builtin_sym_end] = ACTIONS(168), - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [1624] = { + [sym_binding_name] = STATE(2539), + [sym__application] = STATE(2540), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1254] = { - [sym__application] = STATE(2212), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(1255), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(1558), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1564), - [anon_sym_forall] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [1625] = { + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_PIPE_RPAREN] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + [anon_sym_rewrite] = ACTIONS(882), + [anon_sym_with] = ACTIONS(882), }, - [1255] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(1558), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1564), - [anon_sym_forall] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [1626] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(3041), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3043), + }, + [1627] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(3045), + [sym_comment] = ACTIONS(86), + }, + [1628] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3041), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3047), + }, + [1629] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(2545), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [1630] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3041), }, - [1256] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_literal] = ACTIONS(1322), - [sym_set_n] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [sym_name_at] = ACTIONS(1322), - [sym_qualified_name] = ACTIONS(1322), - [anon_sym__] = ACTIONS(1322), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1322), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_BSLASH] = ACTIONS(1322), - [anon_sym_where] = ACTIONS(1322), - [anon_sym_forall] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_in] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_Prop] = ACTIONS(1322), - [anon_sym_Set] = ACTIONS(1322), - [anon_sym_quote] = ACTIONS(1322), - [anon_sym_quoteTerm] = ACTIONS(1322), - [anon_sym_unquote] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_LPAREN_PIPE] = ACTIONS(1322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_module] = ACTIONS(1322), + [1631] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3049), }, - [1257] = { - [ts_builtin_sym_end] = ACTIONS(30), + [1632] = { + [sym_expr] = STATE(2543), + [sym__expr1] = STATE(1642), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(1643), + [sym_atomic_expr] = STATE(1644), + [sym__atomic_expr_curly] = STATE(1645), + [sym__atomic_expr_no_curly] = STATE(1645), + [sym_tele_arrow] = STATE(1646), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(1647), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2037), + [sym_set_n] = ACTIONS(2037), + [sym_name_at] = ACTIONS(2039), + [sym_qualified_name] = ACTIONS(2037), + [anon_sym__] = ACTIONS(2037), + [anon_sym_DOT] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2043), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2045), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(2037), + [anon_sym_Prop] = ACTIONS(2037), + [anon_sym_Set] = ACTIONS(2037), + [anon_sym_quote] = ACTIONS(2037), + [anon_sym_quoteTerm] = ACTIONS(2037), + [anon_sym_unquote] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_LPAREN_PIPE] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2037), + }, + [1633] = { + [sym__application] = STATE(2547), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(2025), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [1634] = { [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(30), @@ -59173,59 +74557,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(30), [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_PIPE_RPAREN] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), [anon_sym_module] = ACTIONS(30), + [anon_sym_rewrite] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), }, - [1258] = { - [sym_atomic_expr] = STATE(2217), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(1576), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2722), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [1635] = { + [sym_atomic_expr] = STATE(2551), + [sym__atomic_expr_curly] = STATE(1645), + [sym__atomic_expr_no_curly] = STATE(1645), + [sym_literal] = ACTIONS(2037), + [sym_set_n] = ACTIONS(2037), + [sym_name_at] = ACTIONS(2039), + [sym_qualified_name] = ACTIONS(2037), + [anon_sym__] = ACTIONS(2037), + [anon_sym_DOT] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3053), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2037), + [anon_sym_Prop] = ACTIONS(2037), + [anon_sym_Set] = ACTIONS(2037), + [anon_sym_quote] = ACTIONS(2037), + [anon_sym_quoteTerm] = ACTIONS(2037), + [anon_sym_unquote] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LPAREN_PIPE] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2037), }, - [1259] = { - [sym_atomic_expr] = STATE(2217), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(1576), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2728), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [1636] = { + [sym_atomic_expr] = STATE(2551), + [sym__atomic_expr_curly] = STATE(1645), + [sym__atomic_expr_no_curly] = STATE(1645), + [sym_literal] = ACTIONS(2037), + [sym_set_n] = ACTIONS(2037), + [sym_name_at] = ACTIONS(2039), + [sym_qualified_name] = ACTIONS(2037), + [anon_sym__] = ACTIONS(2037), + [anon_sym_DOT] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3059), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2037), + [anon_sym_Prop] = ACTIONS(2037), + [anon_sym_Set] = ACTIONS(2037), + [anon_sym_quote] = ACTIONS(2037), + [anon_sym_quoteTerm] = ACTIONS(2037), + [anon_sym_unquote] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LPAREN_PIPE] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2037), }, - [1260] = { - [sym_expr] = STATE(2222), + [1637] = { + [sym_expr] = STATE(2556), [sym__expr1] = STATE(38), [sym__application] = STATE(170), [sym__expr2] = STATE(40), @@ -59246,7 +74633,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(2732), + [anon_sym_RBRACE] = ACTIONS(3063), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -59262,8 +74649,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1261] = { - [sym_expr] = STATE(2223), + [1638] = { + [sym_expr] = STATE(2557), [sym__expr1] = STATE(60), [sym__application] = STATE(185), [sym__expr2] = STATE(62), @@ -59285,7 +74672,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2734), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3065), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -59300,69 +74687,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1262] = { - [sym_lambda_bindings] = STATE(2229), - [sym_untyped_bindings] = STATE(2230), - [sym_typed_bindings] = STATE(2230), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_DOT_DOT] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2742), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2746), - }, - [1263] = { - [sym_forall_bindings] = STATE(2231), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [1264] = { - [sym__expr1] = STATE(200), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2232), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(2233), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(260), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [1265] = { - [sym_expr] = STATE(2234), + [1639] = { + [sym_expr] = STATE(2558), [sym__expr1] = STATE(110), [sym__application] = STATE(213), [sym__expr2] = STATE(40), @@ -59395,12 +74721,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(3065), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1266] = { - [sym_expr] = STATE(2235), + [1640] = { + [sym_expr] = STATE(2559), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -59436,143 +74762,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1267] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - }, - [1268] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2748), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [1269] = { - [ts_builtin_sym_end] = ACTIONS(158), - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_in] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), + [1641] = { + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_PIPE_RPAREN] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_rewrite] = ACTIONS(1038), + [anon_sym_with] = ACTIONS(1038), }, - [1270] = { - [ts_builtin_sym_end] = ACTIONS(160), - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_in] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), + [1642] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3067), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_PIPE_RPAREN] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_rewrite] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), }, - [1271] = { + [1643] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2750), + [anon_sym_DASH_GT] = ACTIONS(3069), [anon_sym_PIPE] = ACTIONS(162), }, - [1272] = { - [ts_builtin_sym_end] = ACTIONS(164), + [1644] = { [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(166), @@ -59590,22 +74854,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(166), [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_PIPE_RPAREN] = ACTIONS(164), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), [anon_sym_module] = ACTIONS(164), + [anon_sym_rewrite] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [1273] = { - [ts_builtin_sym_end] = ACTIONS(168), + [1645] = { [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(168), @@ -59623,817 +74887,421 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(168), [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_PIPE_RPAREN] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), [anon_sym_module] = ACTIONS(168), + [anon_sym_rewrite] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [1274] = { - [sym_expr] = STATE(2237), - [sym__expr1] = STATE(1268), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(1271), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(1274), + [1646] = { + [sym_expr] = STATE(2561), + [sym__expr1] = STATE(1642), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(1643), + [sym_atomic_expr] = STATE(1644), + [sym__atomic_expr_curly] = STATE(1645), + [sym__atomic_expr_no_curly] = STATE(1645), + [sym_tele_arrow] = STATE(1646), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1275), - [aux_sym__application_repeat1] = STATE(1276), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(1647), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(1576), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(1578), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1584), - [anon_sym_forall] = ACTIONS(1586), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [sym_literal] = ACTIONS(2037), + [sym_set_n] = ACTIONS(2037), + [sym_name_at] = ACTIONS(2039), + [sym_qualified_name] = ACTIONS(2037), + [anon_sym__] = ACTIONS(2037), + [anon_sym_DOT] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2043), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2045), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(2037), + [anon_sym_Prop] = ACTIONS(2037), + [anon_sym_Set] = ACTIONS(2037), + [anon_sym_quote] = ACTIONS(2037), + [anon_sym_quoteTerm] = ACTIONS(2037), + [anon_sym_unquote] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_LPAREN_PIPE] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2037), }, - [1275] = { - [sym__application] = STATE(2244), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2245), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2247), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(2754), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1584), - [anon_sym_forall] = ACTIONS(1586), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - }, - [1276] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), + [1647] = { + [sym__expr2] = STATE(933), + [sym_atomic_expr] = STATE(1644), + [sym__atomic_expr_curly] = STATE(1645), + [sym__atomic_expr_no_curly] = STATE(1645), [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(1576), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2722), + [sym_literal] = ACTIONS(2037), + [sym_set_n] = ACTIONS(2037), + [sym_name_at] = ACTIONS(2039), + [sym_qualified_name] = ACTIONS(2037), + [anon_sym__] = ACTIONS(2037), + [anon_sym_DOT] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3053), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1584), - [anon_sym_forall] = ACTIONS(1586), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [1277] = { - [sym_semi] = STATE(2249), - [aux_sym__declarations1_repeat1] = STATE(2250), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - }, - [1278] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_RPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - }, - [1279] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2764), - }, - [1280] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - }, - [1281] = { - [sym_atomic_expr] = STATE(2058), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(1608), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), - }, - [1282] = { - [sym_expr] = STATE(756), - [sym__expr1] = STATE(2254), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2255), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2256), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2257), - [aux_sym__application_repeat1] = STATE(2258), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2766), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1612), - [anon_sym_forall] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [1283] = { - [sym_lambda_bindings] = STATE(2259), - [sym_untyped_bindings] = STATE(2260), - [sym_typed_bindings] = STATE(2260), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(841), - [anon_sym_LPAREN] = ACTIONS(258), - }, - [1284] = { - [sym_forall_bindings] = STATE(2261), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [1285] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2262), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(2263), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [1286] = { - [sym__application] = STATE(789), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(1139), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [aux_sym__application_repeat1] = STATE(2265), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(1608), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2770), - [anon_sym_BSLASH] = ACTIONS(1612), - [anon_sym_forall] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), - }, - [1287] = { - [sym_semi] = STATE(2266), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2267), - [anon_sym_SEMI] = ACTIONS(1014), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_COLON] = ACTIONS(1510), - }, - [1288] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(1139), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(1608), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2770), - [anon_sym_BSLASH] = ACTIONS(1612), - [anon_sym_forall] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), - }, - [1289] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(1290), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1291), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1292), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1293), - [aux_sym__application_repeat1] = STATE(214), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [1290] = { - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(280), - }, - [1291] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(162), - }, - [1292] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(1290), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1291), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1292), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1293), - [aux_sym__application_repeat1] = STATE(214), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [1293] = { - [sym__application] = STATE(225), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2083), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2270), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(2774), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), - }, - [1294] = { - [sym_expr] = STATE(2093), - [sym__expr1] = STATE(2273), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2274), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2275), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1728), - [aux_sym__application_repeat1] = STATE(2276), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2776), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2153), - [anon_sym_forall] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [1295] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2262), - [sym__declaration] = STATE(2277), - [sym_function_clause] = STATE(579), - [sym__declarations1] = STATE(2101), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), - }, - [1296] = { - [sym_anonymous_name] = STATE(2278), - [sym_name] = ACTIONS(2780), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), - }, - [1297] = { - [sym_where_clause] = STATE(2103), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(1624), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(1626), - }, - [1298] = { - [sym__expr1] = STATE(423), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(654), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(1298), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(2171), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2174), - [anon_sym_forall] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2180), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - }, - [1299] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2616), - }, - [1300] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - }, - [1301] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - }, - [1302] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - }, - [1303] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(2037), + [anon_sym_Prop] = ACTIONS(2037), + [anon_sym_Set] = ACTIONS(2037), + [anon_sym_quote] = ACTIONS(2037), + [anon_sym_quoteTerm] = ACTIONS(2037), + [anon_sym_unquote] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LPAREN_PIPE] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2037), }, - [1304] = { - [anon_sym_RBRACE] = ACTIONS(2782), - [sym_comment] = ACTIONS(86), + [1648] = { + [sym__expr1] = STATE(2562), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(544), + [sym_set_n] = ACTIONS(544), + [sym_name_at] = ACTIONS(546), + [sym_qualified_name] = ACTIONS(544), + [anon_sym__] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_LBRACE_LBRACE] = ACTIONS(550), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_Prop] = ACTIONS(544), + [anon_sym_Set] = ACTIONS(544), + [anon_sym_quote] = ACTIONS(544), + [anon_sym_quoteTerm] = ACTIONS(544), + [anon_sym_unquote] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LPAREN_PIPE] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), }, - [1305] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2784), - [sym_comment] = ACTIONS(86), + [1649] = { + [sym__expr1] = STATE(2563), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(544), + [sym_set_n] = ACTIONS(544), + [sym_name_at] = ACTIONS(546), + [sym_qualified_name] = ACTIONS(544), + [anon_sym__] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_LBRACE_LBRACE] = ACTIONS(550), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_Prop] = ACTIONS(544), + [anon_sym_Set] = ACTIONS(544), + [anon_sym_quote] = ACTIONS(544), + [anon_sym_quoteTerm] = ACTIONS(544), + [anon_sym_unquote] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LPAREN_PIPE] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), }, - [1306] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2784), + [1650] = { + [sym_with_expressions] = STATE(2564), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_PIPE_RPAREN] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_rewrite] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), }, - [1307] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(2784), + [1651] = { + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_PIPE_RPAREN] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_rewrite] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), }, - [1308] = { - [anon_sym_RBRACE] = ACTIONS(2786), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2788), + [1652] = { + [sym_expr] = STATE(2565), + [sym__expr1] = STATE(1642), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(1643), + [sym_atomic_expr] = STATE(1644), + [sym__atomic_expr_curly] = STATE(1645), + [sym__atomic_expr_no_curly] = STATE(1645), + [sym_tele_arrow] = STATE(1646), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(1647), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2037), + [sym_set_n] = ACTIONS(2037), + [sym_name_at] = ACTIONS(2039), + [sym_qualified_name] = ACTIONS(2037), + [anon_sym__] = ACTIONS(2037), + [anon_sym_DOT] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2043), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2045), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(2037), + [anon_sym_Prop] = ACTIONS(2037), + [anon_sym_Set] = ACTIONS(2037), + [anon_sym_quote] = ACTIONS(2037), + [anon_sym_quoteTerm] = ACTIONS(2037), + [anon_sym_unquote] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_LPAREN_PIPE] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2037), }, - [1309] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2786), + [1653] = { + [sym_vopen] = STATE(2566), + [sym_declarations] = STATE(2567), + [sym__declarations0] = STATE(2568), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2790), }, - [1310] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2786), + [1654] = { + [sym_anonymous_name] = STATE(2569), + [sym_name] = ACTIONS(3071), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), }, - [1311] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2792), + [1655] = { + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_PIPE_RPAREN] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_rewrite] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), }, - [1312] = { - [anon_sym_SEMI] = ACTIONS(2053), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_DOT_DOT] = ACTIONS(2053), + [1656] = { + [sym_where_clause] = STATE(2570), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_PIPE_RPAREN] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_rewrite] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), + }, + [1657] = { + [sym__expr1] = STATE(915), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_lhs] = STATE(916), + [sym__declaration] = STATE(917), + [sym_function_clause] = STATE(918), + [aux_sym_source_file_repeat1] = STATE(1657), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(2109), + [sym_set_n] = ACTIONS(2109), + [sym_name_at] = ACTIONS(2112), + [sym_qualified_name] = ACTIONS(2109), + [anon_sym__] = ACTIONS(2109), + [anon_sym_DOT] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2118), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2121), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2109), + [anon_sym_Prop] = ACTIONS(2109), + [anon_sym_Set] = ACTIONS(2109), + [anon_sym_quote] = ACTIONS(2109), + [anon_sym_quoteTerm] = ACTIONS(2109), + [anon_sym_unquote] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2130), + [anon_sym_LPAREN_PIPE] = ACTIONS(2133), + [anon_sym_PIPE_RPAREN] = ACTIONS(644), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2109), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_rewrite] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), + }, + [1658] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_PIPE_RPAREN] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), + }, + [1659] = { + [sym_atomic_expr] = STATE(2571), + [sym__atomic_expr_curly] = STATE(1671), + [sym__atomic_expr_no_curly] = STATE(1671), + [sym_literal] = ACTIONS(2051), + [sym_set_n] = ACTIONS(2051), + [sym_name_at] = ACTIONS(2053), + [sym_qualified_name] = ACTIONS(2051), + [anon_sym__] = ACTIONS(2051), + [anon_sym_DOT] = ACTIONS(2053), [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2053), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2053), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2053), - [anon_sym_EQ] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2053), - [anon_sym_COLON] = ACTIONS(2053), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2057), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2051), + [anon_sym_Prop] = ACTIONS(2051), + [anon_sym_Set] = ACTIONS(2051), + [anon_sym_quote] = ACTIONS(2051), + [anon_sym_quoteTerm] = ACTIONS(2051), + [anon_sym_unquote] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LPAREN_PIPE] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2051), }, - [1313] = { - [sym_expr] = STATE(2285), + [1660] = { + [sym_expr] = STATE(2573), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -60454,6 +75322,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(3073), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -60469,15 +75338,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1314] = { - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2658), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2658), - [anon_sym_COLON] = ACTIONS(2658), - }, - [1315] = { - [sym_expr] = STATE(2286), + [1661] = { + [sym_expr] = STATE(2574), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -60499,6 +75361,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3075), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -60513,279 +75376,473 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1316] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - }, - [1317] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - }, - [1318] = { - [anon_sym_RBRACE] = ACTIONS(2794), + [1662] = { + [sym_lambda_bindings] = STATE(2580), + [sym_untyped_bindings] = STATE(2581), + [sym_typed_bindings] = STATE(2581), + [anon_sym_DOT] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3083), [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3087), }, - [1319] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2796), + [1663] = { + [sym_forall_bindings] = STATE(2582), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), }, - [1320] = { - [sym_atomic_expr] = STATE(239), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(1664), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LBRACE_LBRACE] = ACTIONS(318), + [1664] = { + [sym__expr1] = STATE(2583), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_lhs] = STATE(2584), + [sym__declaration] = STATE(2585), + [sym_function_clause] = STATE(2586), + [aux_sym_source_file_repeat1] = STATE(2587), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(544), + [sym_set_n] = ACTIONS(544), + [sym_name_at] = ACTIONS(546), + [sym_qualified_name] = ACTIONS(544), + [anon_sym__] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_LBRACE_LBRACE] = ACTIONS(550), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_Prop] = ACTIONS(544), + [anon_sym_Set] = ACTIONS(544), + [anon_sym_quote] = ACTIONS(544), + [anon_sym_quoteTerm] = ACTIONS(544), + [anon_sym_unquote] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LPAREN_PIPE] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), + }, + [1665] = { + [sym_expr] = STATE(2588), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(320), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(3075), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1321] = { - [sym_atomic_expr] = STATE(239), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(1664), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(322), - [anon_sym_LBRACE_LBRACE] = ACTIONS(324), + [1666] = { + [sym_expr] = STATE(2589), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1322] = { - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1845), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1845), + [1667] = { + [sym_literal] = ACTIONS(1194), + [sym_set_n] = ACTIONS(1194), + [sym_name_at] = ACTIONS(1194), + [sym_qualified_name] = ACTIONS(1194), + [anon_sym__] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1194), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1194), + [anon_sym_where] = ACTIONS(1194), + [anon_sym_forall] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_in] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(1194), + [anon_sym_Prop] = ACTIONS(1194), + [anon_sym_Set] = ACTIONS(1194), + [anon_sym_quote] = ACTIONS(1194), + [anon_sym_quoteTerm] = ACTIONS(1194), + [anon_sym_unquote] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LPAREN_PIPE] = ACTIONS(1194), + [anon_sym_PIPE_RPAREN] = ACTIONS(1194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), }, - [1323] = { - [anon_sym_SEMI] = ACTIONS(280), - [anon_sym_RBRACE_RBRACE] = ACTIONS(280), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2798), + [1668] = { + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_PIPE_RPAREN] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + [anon_sym_with] = ACTIONS(158), }, - [1324] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(162), + [1669] = { + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_PIPE_RPAREN] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + [anon_sym_with] = ACTIONS(160), }, - [1325] = { - [sym_expr] = STATE(278), - [sym__expr1] = STATE(1323), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(1324), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(1325), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1326), - [aux_sym__application_repeat1] = STATE(1327), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(1664), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(1666), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [1670] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_forall] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_PIPE_RPAREN] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [1326] = { - [sym__application] = STATE(285), - [sym__expr2] = STATE(62), + [1671] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_PIPE_RPAREN] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), + }, + [1672] = { + [sym__application] = STATE(2590), + [sym__expr2] = STATE(1669), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(286), - [sym__atomic_expr_curly] = STATE(287), - [sym__atomic_expr_no_curly] = STATE(287), + [sym_atomic_expr] = STATE(1670), + [sym__atomic_expr_curly] = STATE(1671), + [sym__atomic_expr_no_curly] = STATE(1671), [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2291), - [sym_literal] = ACTIONS(366), - [sym_set_n] = ACTIONS(366), - [sym_name_at] = ACTIONS(2800), - [sym_qualified_name] = ACTIONS(366), - [anon_sym__] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(370), - [anon_sym_LBRACE_LBRACE] = ACTIONS(372), + [aux_sym__application_repeat1] = STATE(1673), + [sym_literal] = ACTIONS(2051), + [sym_set_n] = ACTIONS(2051), + [sym_name_at] = ACTIONS(2053), + [sym_qualified_name] = ACTIONS(2051), + [anon_sym__] = ACTIONS(2051), + [anon_sym_DOT] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2057), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_forall] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_QMARK] = ACTIONS(366), - [anon_sym_Prop] = ACTIONS(366), - [anon_sym_Set] = ACTIONS(366), - [anon_sym_quote] = ACTIONS(366), - [anon_sym_quoteTerm] = ACTIONS(366), - [anon_sym_unquote] = ACTIONS(366), - [anon_sym_LPAREN] = ACTIONS(374), - [anon_sym_LPAREN_PIPE] = ACTIONS(376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(366), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_forall] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_QMARK] = ACTIONS(2051), + [anon_sym_Prop] = ACTIONS(2051), + [anon_sym_Set] = ACTIONS(2051), + [anon_sym_quote] = ACTIONS(2051), + [anon_sym_quoteTerm] = ACTIONS(2051), + [anon_sym_unquote] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LPAREN_PIPE] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2051), }, - [1327] = { - [sym__expr2] = STATE(289), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(1664), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LBRACE_LBRACE] = ACTIONS(318), + [1673] = { + [sym__expr2] = STATE(2591), + [sym_atomic_expr] = STATE(1670), + [sym__atomic_expr_curly] = STATE(1671), + [sym__atomic_expr_no_curly] = STATE(1671), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(2051), + [sym_set_n] = ACTIONS(2051), + [sym_name_at] = ACTIONS(2053), + [sym_qualified_name] = ACTIONS(2051), + [anon_sym__] = ACTIONS(2051), + [anon_sym_DOT] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2057), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_forall] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(320), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_forall] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_QMARK] = ACTIONS(2051), + [anon_sym_Prop] = ACTIONS(2051), + [anon_sym_Set] = ACTIONS(2051), + [anon_sym_quote] = ACTIONS(2051), + [anon_sym_quoteTerm] = ACTIONS(2051), + [anon_sym_unquote] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LPAREN_PIPE] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2051), }, - [1328] = { - [anon_sym_SEMI] = ACTIONS(819), - [anon_sym_RBRACE_RBRACE] = ACTIONS(819), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(819), + [1674] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_PIPE_RPAREN] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), }, - [1329] = { - [sym_lambda_bindings] = STATE(679), - [sym_untyped_bindings] = STATE(1329), - [sym_typed_bindings] = STATE(1329), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_LBRACE_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE_RBRACE] = ACTIONS(825), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(342), + [1675] = { + [sym_atomic_expr] = STATE(2592), + [sym__atomic_expr_curly] = STATE(1687), + [sym__atomic_expr_no_curly] = STATE(1687), + [sym_literal] = ACTIONS(2069), + [sym_set_n] = ACTIONS(2069), + [sym_name_at] = ACTIONS(2071), + [sym_qualified_name] = ACTIONS(2069), + [anon_sym__] = ACTIONS(2069), + [anon_sym_DOT] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2075), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2069), + [anon_sym_Prop] = ACTIONS(2069), + [anon_sym_Set] = ACTIONS(2069), + [anon_sym_quote] = ACTIONS(2069), + [anon_sym_quoteTerm] = ACTIONS(2069), + [anon_sym_unquote] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_LPAREN_PIPE] = ACTIONS(2085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2069), + }, + [1676] = { + [sym_expr] = STATE(2594), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1330] = { - [sym_expr] = STATE(699), - [sym__expr1] = STATE(1323), + [1677] = { + [sym_expr] = STATE(2595), + [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(1324), + [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(64), [sym__atomic_expr_curly] = STATE(65), [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(1325), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1326), - [aux_sym__application_repeat1] = STATE(1327), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(56), [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(1664), + [sym_name_at] = ACTIONS(58), [sym_qualified_name] = ACTIONS(56), [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(1666), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3091), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_forall] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), [anon_sym_QMARK] = ACTIONS(56), [anon_sym_Prop] = ACTIONS(56), [anon_sym_Set] = ACTIONS(56), @@ -60796,43 +75853,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1331] = { - [sym_atomic_expr] = STATE(708), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [1332] = { - [sym_lambda_bindings] = STATE(2293), - [sym_untyped_bindings] = STATE(2294), - [sym_typed_bindings] = STATE(2294), - [anon_sym_DOT] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_LBRACE_LBRACE] = ACTIONS(942), + [1678] = { + [sym_lambda_bindings] = STATE(2601), + [sym_untyped_bindings] = STATE(2602), + [sym_typed_bindings] = STATE(2602), + [anon_sym_DOT] = ACTIONS(3093), + [anon_sym_DOT_DOT] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3099), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_where] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3103), }, - [1333] = { - [sym_forall_bindings] = STATE(2295), + [1679] = { + [sym_forall_bindings] = STATE(2603), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -60844,512 +75878,1184 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [1334] = { - [sym__expr1] = STATE(2296), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), + [1680] = { + [sym__expr1] = STATE(438), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2297), - [sym__declaration] = STATE(722), - [sym_function_clause] = STATE(723), - [aux_sym_source_file_repeat1] = STATE(2298), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_lhs] = STATE(2604), + [sym__declaration] = STATE(2605), + [sym_function_clause] = STATE(2606), + [aux_sym_source_file_repeat1] = STATE(2607), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(544), + [sym_set_n] = ACTIONS(544), + [sym_name_at] = ACTIONS(546), + [sym_qualified_name] = ACTIONS(544), + [anon_sym__] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_LBRACE_LBRACE] = ACTIONS(550), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_Prop] = ACTIONS(544), + [anon_sym_Set] = ACTIONS(544), + [anon_sym_quote] = ACTIONS(544), + [anon_sym_quoteTerm] = ACTIONS(544), + [anon_sym_unquote] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LPAREN_PIPE] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), + }, + [1681] = { + [sym_expr] = STATE(2608), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1335] = { - [sym_rewrite_equations] = STATE(2301), - [sym_with_expressions] = STATE(730), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE_RBRACE] = ACTIONS(152), + [1682] = { + [sym_expr] = STATE(2609), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2806), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1336] = { - [sym_where_clause] = STATE(734), - [sym_rhs] = STATE(735), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE_RBRACE] = ACTIONS(170), + [1683] = { + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_PIPE_RPAREN] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + }, + [1684] = { + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(954), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(2808), - [anon_sym_module] = ACTIONS(956), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_PIPE_RPAREN] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), }, - [1337] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(1336), - [sym__declaration] = STATE(269), - [sym_function_clause] = STATE(270), - [aux_sym_source_file_repeat1] = STATE(2303), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), + [1685] = { + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_PIPE_RPAREN] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), }, - [1338] = { - [sym__application] = STATE(737), - [sym__expr2] = STATE(265), + [1686] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_PIPE_RPAREN] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + }, + [1687] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_PIPE_RPAREN] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + }, + [1688] = { + [sym__application] = STATE(2610), + [sym__expr2] = STATE(1685), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), + [sym_atomic_expr] = STATE(1686), + [sym__atomic_expr_curly] = STATE(1687), + [sym__atomic_expr_no_curly] = STATE(1687), [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [aux_sym__application_repeat1] = STATE(1689), + [sym_literal] = ACTIONS(2069), + [sym_set_n] = ACTIONS(2069), + [sym_name_at] = ACTIONS(2071), + [sym_qualified_name] = ACTIONS(2069), + [anon_sym__] = ACTIONS(2069), + [anon_sym_DOT] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2075), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2077), + [anon_sym_forall] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_QMARK] = ACTIONS(2069), + [anon_sym_Prop] = ACTIONS(2069), + [anon_sym_Set] = ACTIONS(2069), + [anon_sym_quote] = ACTIONS(2069), + [anon_sym_quoteTerm] = ACTIONS(2069), + [anon_sym_unquote] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_LPAREN_PIPE] = ACTIONS(2085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2069), }, - [1339] = { - [sym__expr2] = STATE(738), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), + [1689] = { + [sym__expr2] = STATE(2611), + [sym_atomic_expr] = STATE(1686), + [sym__atomic_expr_curly] = STATE(1687), + [sym__atomic_expr_no_curly] = STATE(1687), [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [sym_literal] = ACTIONS(2069), + [sym_set_n] = ACTIONS(2069), + [sym_name_at] = ACTIONS(2071), + [sym_qualified_name] = ACTIONS(2069), + [anon_sym__] = ACTIONS(2069), + [anon_sym_DOT] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2075), [sym_comment] = ACTIONS(18), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [anon_sym_BSLASH] = ACTIONS(2077), + [anon_sym_forall] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_QMARK] = ACTIONS(2069), + [anon_sym_Prop] = ACTIONS(2069), + [anon_sym_Set] = ACTIONS(2069), + [anon_sym_quote] = ACTIONS(2069), + [anon_sym_quoteTerm] = ACTIONS(2069), + [anon_sym_unquote] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_LPAREN_PIPE] = ACTIONS(2085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2069), }, - [1340] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2796), + [1690] = { + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_PIPE_RPAREN] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), }, - [1341] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(2796), + [1691] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_PIPE_RPAREN] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), }, - [1342] = { - [sym_expr] = STATE(2304), - [sym__expr1] = STATE(1323), - [sym__application] = STATE(61), + [1692] = { + [sym_atomic_expr] = STATE(2615), + [sym__atomic_expr_curly] = STATE(1707), + [sym__atomic_expr_no_curly] = STATE(1707), + [sym_literal] = ACTIONS(2087), + [sym_set_n] = ACTIONS(2087), + [sym_name_at] = ACTIONS(2089), + [sym_qualified_name] = ACTIONS(2087), + [anon_sym__] = ACTIONS(2087), + [anon_sym_DOT] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3107), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2087), + [anon_sym_Prop] = ACTIONS(2087), + [anon_sym_Set] = ACTIONS(2087), + [anon_sym_quote] = ACTIONS(2087), + [anon_sym_quoteTerm] = ACTIONS(2087), + [anon_sym_unquote] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LPAREN_PIPE] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2087), + }, + [1693] = { + [sym_atomic_expr] = STATE(2615), + [sym__atomic_expr_curly] = STATE(1707), + [sym__atomic_expr_no_curly] = STATE(1707), + [sym_literal] = ACTIONS(2087), + [sym_set_n] = ACTIONS(2087), + [sym_name_at] = ACTIONS(2089), + [sym_qualified_name] = ACTIONS(2087), + [anon_sym__] = ACTIONS(2087), + [anon_sym_DOT] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3113), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2087), + [anon_sym_Prop] = ACTIONS(2087), + [anon_sym_Set] = ACTIONS(2087), + [anon_sym_quote] = ACTIONS(2087), + [anon_sym_quoteTerm] = ACTIONS(2087), + [anon_sym_unquote] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_LPAREN_PIPE] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2087), + }, + [1694] = { + [sym_expr] = STATE(2620), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [1695] = { + [sym_expr] = STATE(2621), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(1324), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(1325), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1326), - [aux_sym__application_repeat1] = STATE(1327), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(1664), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(1666), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3119), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_forall] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1343] = { - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1887), + [1696] = { + [sym_lambda_bindings] = STATE(2627), + [sym_untyped_bindings] = STATE(2628), + [sym_typed_bindings] = STATE(2628), + [anon_sym_DOT] = ACTIONS(3121), + [anon_sym_DOT_DOT] = ACTIONS(3123), + [anon_sym_LBRACE] = ACTIONS(3125), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3127), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_COLON] = ACTIONS(1887), - }, - [1344] = { - [sym__expr2] = STATE(289), - [sym_atomic_expr] = STATE(695), - [sym__atomic_expr_curly] = STATE(696), - [sym__atomic_expr_no_curly] = STATE(696), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(906), - [sym_set_n] = ACTIONS(906), - [sym_name_at] = ACTIONS(908), - [sym_qualified_name] = ACTIONS(906), - [anon_sym__] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_LBRACE_LBRACE] = ACTIONS(912), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2812), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_forall] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_QMARK] = ACTIONS(906), - [anon_sym_Prop] = ACTIONS(906), - [anon_sym_Set] = ACTIONS(906), - [anon_sym_quote] = ACTIONS(906), - [anon_sym_quoteTerm] = ACTIONS(906), - [anon_sym_unquote] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_LPAREN_PIPE] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(906), - }, - [1345] = { - [sym__application] = STATE(694), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(695), - [sym__atomic_expr_curly] = STATE(696), - [sym__atomic_expr_no_curly] = STATE(696), - [sym_non_absurd_lambda_clause] = STATE(697), - [sym_absurd_lambda_clause] = STATE(697), - [sym_lambda_clause] = STATE(2306), - [aux_sym__application_repeat1] = STATE(700), - [sym_literal] = ACTIONS(906), - [sym_set_n] = ACTIONS(906), - [sym_name_at] = ACTIONS(908), - [sym_qualified_name] = ACTIONS(906), - [anon_sym__] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_LBRACE_LBRACE] = ACTIONS(912), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(914), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_forall] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_QMARK] = ACTIONS(906), - [anon_sym_Prop] = ACTIONS(906), - [anon_sym_Set] = ACTIONS(906), - [anon_sym_quote] = ACTIONS(906), - [anon_sym_quoteTerm] = ACTIONS(906), - [anon_sym_unquote] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_LPAREN_PIPE] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(906), - [sym_catchall_pragma] = ACTIONS(926), + [anon_sym_where] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), }, - [1346] = { - [sym_semi] = STATE(1345), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2307), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2674), + [1697] = { + [sym_forall_bindings] = STATE(2629), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_LPAREN] = ACTIONS(100), }, - [1347] = { - [sym_expr] = STATE(2308), + [1698] = { + [sym__expr1] = STATE(438), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_lhs] = STATE(2630), + [sym__declaration] = STATE(2631), + [sym_function_clause] = STATE(2632), + [aux_sym_source_file_repeat1] = STATE(2633), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(544), + [sym_set_n] = ACTIONS(544), + [sym_name_at] = ACTIONS(546), + [sym_qualified_name] = ACTIONS(544), + [anon_sym__] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_LBRACE_LBRACE] = ACTIONS(550), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_Prop] = ACTIONS(544), + [anon_sym_Set] = ACTIONS(544), + [anon_sym_quote] = ACTIONS(544), + [anon_sym_quoteTerm] = ACTIONS(544), + [anon_sym_unquote] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LPAREN_PIPE] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), + }, + [1699] = { + [sym_expr] = STATE(2634), [sym__expr1] = STATE(110), - [sym__application] = STATE(39), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [1348] = { - [anon_sym_RBRACE] = ACTIONS(1652), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1654), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1349] = { - [sym_expr] = STATE(739), - [sym__expr1] = STATE(705), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(706), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(707), + [1700] = { + [sym_expr] = STATE(2635), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1350] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_rewrite] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), + [1701] = { + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_PIPE_RPAREN] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), }, - [1351] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_rewrite] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), + [1702] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_PIPE_RPAREN] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), }, - [1352] = { - [sym__application] = STATE(2309), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [1703] = { + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_PIPE_RPAREN] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), }, - [1353] = { - [sym__application] = STATE(2310), + [1704] = { + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_PIPE_RPAREN] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + }, + [1705] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3135), + [anon_sym_PIPE] = ACTIONS(162), + }, + [1706] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_PIPE_RPAREN] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_module] = ACTIONS(164), + }, + [1707] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_PIPE_RPAREN] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + }, + [1708] = { + [sym_expr] = STATE(2637), + [sym__expr1] = STATE(1702), + [sym__application] = STATE(1703), + [sym__expr2] = STATE(1704), + [sym__atomic_exprs1] = STATE(1705), + [sym_atomic_expr] = STATE(1706), + [sym__atomic_expr_curly] = STATE(1707), + [sym__atomic_expr_no_curly] = STATE(1707), + [sym_tele_arrow] = STATE(1708), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1709), + [aux_sym__application_repeat1] = STATE(1710), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2087), + [sym_set_n] = ACTIONS(2087), + [sym_name_at] = ACTIONS(2089), + [sym_qualified_name] = ACTIONS(2087), + [anon_sym__] = ACTIONS(2087), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2097), + [anon_sym_forall] = ACTIONS(2099), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_QMARK] = ACTIONS(2087), + [anon_sym_Prop] = ACTIONS(2087), + [anon_sym_Set] = ACTIONS(2087), + [anon_sym_quote] = ACTIONS(2087), + [anon_sym_quoteTerm] = ACTIONS(2087), + [anon_sym_unquote] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_LPAREN_PIPE] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2087), + }, + [1709] = { + [sym__application] = STATE(2644), + [sym__expr2] = STATE(1704), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(2645), + [sym__atomic_expr_curly] = STATE(2646), + [sym__atomic_expr_no_curly] = STATE(2646), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(2647), + [sym_literal] = ACTIONS(3137), + [sym_set_n] = ACTIONS(3137), + [sym_name_at] = ACTIONS(3139), + [sym_qualified_name] = ACTIONS(3137), + [anon_sym__] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3139), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3143), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2097), + [anon_sym_forall] = ACTIONS(2099), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_QMARK] = ACTIONS(3137), + [anon_sym_Prop] = ACTIONS(3137), + [anon_sym_Set] = ACTIONS(3137), + [anon_sym_quote] = ACTIONS(3137), + [anon_sym_quoteTerm] = ACTIONS(3137), + [anon_sym_unquote] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LPAREN_PIPE] = ACTIONS(3147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3137), + }, + [1710] = { + [sym__expr2] = STATE(2648), + [sym_atomic_expr] = STATE(1706), + [sym__atomic_expr_curly] = STATE(1707), + [sym__atomic_expr_no_curly] = STATE(1707), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(2087), + [sym_set_n] = ACTIONS(2087), + [sym_name_at] = ACTIONS(2089), + [sym_qualified_name] = ACTIONS(2087), + [anon_sym__] = ACTIONS(2087), + [anon_sym_DOT] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3107), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(2097), + [anon_sym_forall] = ACTIONS(2099), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_QMARK] = ACTIONS(2087), + [anon_sym_Prop] = ACTIONS(2087), + [anon_sym_Set] = ACTIONS(2087), + [anon_sym_quote] = ACTIONS(2087), + [anon_sym_quoteTerm] = ACTIONS(2087), + [anon_sym_unquote] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LPAREN_PIPE] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2087), + }, + [1711] = { + [sym_vclose] = STATE(2650), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(2651), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(3149), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [1712] = { + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_PIPE_RPAREN] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + }, + [1713] = { + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_PIPE_RPAREN] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + }, + [1714] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(3151), + }, + [1715] = { + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_PIPE_RPAREN] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + }, + [1716] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_PIPE_RPAREN] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + }, + [1717] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_PIPE_RPAREN] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + }, + [1718] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [1719] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [1720] = { + [sym__application] = STATE(2653), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [1721] = { + [sym__application] = STATE(2654), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), [sym_name_at] = ACTIONS(410), @@ -61372,27 +77078,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1354] = { - [sym_binding_name] = STATE(2311), - [sym__application] = STATE(2312), + [1722] = { + [sym_binding_name] = STATE(2655), + [sym__application] = STATE(2656), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), [anon_sym_QMARK] = ACTIONS(408), [anon_sym_Prop] = ACTIONS(408), [anon_sym_Set] = ACTIONS(408), @@ -61403,75 +77109,183 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1355] = { - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), + [1723] = { + [ts_builtin_sym_end] = ACTIONS(882), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + [anon_sym_with] = ACTIONS(882), + }, + [1724] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(3153), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3155), + }, + [1725] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE_RBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), - [anon_sym_rewrite] = ACTIONS(968), - [anon_sym_with] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(3157), + [sym_comment] = ACTIONS(86), }, - [1356] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(2814), + [1726] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3153), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2816), + [anon_sym_COLON] = ACTIONS(3159), }, - [1357] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(2818), + [1727] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(2661), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [1728] = { [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3153), }, - [1358] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2814), + [1729] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2820), + [anon_sym_COLON] = ACTIONS(3161), }, - [1359] = { + [1730] = { + [sym_expr] = STATE(2659), + [sym__expr1] = STATE(1740), + [sym__application] = STATE(471), + [sym__expr2] = STATE(472), + [sym__atomic_exprs1] = STATE(1741), + [sym_atomic_expr] = STATE(1742), + [sym__atomic_expr_curly] = STATE(1743), + [sym__atomic_expr_no_curly] = STATE(1743), + [sym_tele_arrow] = STATE(1744), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(475), + [aux_sym__application_repeat1] = STATE(1745), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2162), + [sym_set_n] = ACTIONS(2162), + [sym_name_at] = ACTIONS(2164), + [sym_qualified_name] = ACTIONS(2162), + [anon_sym__] = ACTIONS(2162), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2170), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(584), + [anon_sym_forall] = ACTIONS(586), + [anon_sym_let] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_Prop] = ACTIONS(2162), + [anon_sym_Set] = ACTIONS(2162), + [anon_sym_quote] = ACTIONS(2162), + [anon_sym_quoteTerm] = ACTIONS(2162), + [anon_sym_unquote] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_LPAREN_PIPE] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2162), + }, + [1731] = { + [sym__application] = STATE(2663), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [1732] = { + [ts_builtin_sym_end] = ACTIONS(30), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), [anon_sym_Prop] = ACTIONS(30), [anon_sym_Set] = ACTIONS(30), @@ -61483,185 +77297,170 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(30), [anon_sym_COLON] = ACTIONS(30), [anon_sym_module] = ACTIONS(30), - [anon_sym_rewrite] = ACTIONS(30), [anon_sym_with] = ACTIONS(30), }, - [1360] = { - [sym_atomic_expr] = STATE(2317), - [sym__atomic_expr_curly] = STATE(1369), - [sym__atomic_expr_no_curly] = STATE(1369), - [sym_literal] = ACTIONS(1694), - [sym_set_n] = ACTIONS(1694), - [sym_name_at] = ACTIONS(1696), - [sym_qualified_name] = ACTIONS(1694), - [anon_sym__] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1700), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1694), - [anon_sym_Prop] = ACTIONS(1694), - [anon_sym_Set] = ACTIONS(1694), - [anon_sym_quote] = ACTIONS(1694), - [anon_sym_quoteTerm] = ACTIONS(1694), - [anon_sym_unquote] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1704), - [anon_sym_LPAREN_PIPE] = ACTIONS(1706), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1694), + [1733] = { + [sym_atomic_expr] = STATE(2667), + [sym__atomic_expr_curly] = STATE(1743), + [sym__atomic_expr_no_curly] = STATE(1743), + [sym_literal] = ACTIONS(2162), + [sym_set_n] = ACTIONS(2162), + [sym_name_at] = ACTIONS(2164), + [sym_qualified_name] = ACTIONS(2162), + [anon_sym__] = ACTIONS(2162), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3165), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_Prop] = ACTIONS(2162), + [anon_sym_Set] = ACTIONS(2162), + [anon_sym_quote] = ACTIONS(2162), + [anon_sym_quoteTerm] = ACTIONS(2162), + [anon_sym_unquote] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2162), }, - [1361] = { - [sym_expr] = STATE(2319), + [1734] = { + [sym_atomic_expr] = STATE(2667), + [sym__atomic_expr_curly] = STATE(1743), + [sym__atomic_expr_no_curly] = STATE(1743), + [sym_literal] = ACTIONS(2162), + [sym_set_n] = ACTIONS(2162), + [sym_name_at] = ACTIONS(2164), + [sym_qualified_name] = ACTIONS(2162), + [anon_sym__] = ACTIONS(2162), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3171), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_Prop] = ACTIONS(2162), + [anon_sym_Set] = ACTIONS(2162), + [anon_sym_quote] = ACTIONS(2162), + [anon_sym_quoteTerm] = ACTIONS(2162), + [anon_sym_unquote] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LPAREN_PIPE] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2162), + }, + [1735] = { + [sym_expr] = STATE(2672), [sym__expr1] = STATE(38), - [sym__application] = STATE(39), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(2822), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(3175), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1362] = { - [sym_expr] = STATE(2320), + [1736] = { + [sym_expr] = STATE(2673), [sym__expr1] = STATE(60), - [sym__application] = STATE(61), + [sym__application] = STATE(185), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), + [aux_sym__application_repeat1] = STATE(188), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3177), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), - }, - [1363] = { - [sym_expr] = STATE(2323), - [sym__expr1] = STATE(2324), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(2325), - [sym_atomic_expr] = STATE(1387), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_tele_arrow] = STATE(2326), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(2327), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(2826), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1728), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1364] = { - [sym_expr] = STATE(2328), + [1737] = { + [sym_expr] = STATE(2674), [sym__expr1] = STATE(110), - [sym__application] = STATE(39), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(2824), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(3177), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1365] = { - [sym_expr] = STATE(2329), + [1738] = { + [sym_expr] = STATE(2675), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -61697,87 +77496,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1366] = { - [sym__application] = STATE(2331), - [sym__expr2] = STATE(265), - [sym_atomic_expr] = STATE(1368), - [sym__atomic_expr_curly] = STATE(1369), - [sym__atomic_expr_no_curly] = STATE(1369), - [aux_sym__application_repeat1] = STATE(2332), - [sym_literal] = ACTIONS(1694), - [sym_set_n] = ACTIONS(1694), - [sym_name_at] = ACTIONS(1696), - [sym_qualified_name] = ACTIONS(1694), - [anon_sym__] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1700), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2830), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(1694), - [anon_sym_Prop] = ACTIONS(1694), - [anon_sym_Set] = ACTIONS(1694), - [anon_sym_quote] = ACTIONS(1694), - [anon_sym_quoteTerm] = ACTIONS(1694), - [anon_sym_unquote] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1704), - [anon_sym_LPAREN_PIPE] = ACTIONS(1706), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1694), + [1739] = { + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_with] = ACTIONS(1038), }, - [1367] = { - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_rewrite] = ACTIONS(1044), - [anon_sym_with] = ACTIONS(1044), + [1740] = { + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3179), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), }, - [1368] = { + [1741] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3181), + [anon_sym_PIPE] = ACTIONS(162), + }, + [1742] = { + [ts_builtin_sym_end] = ACTIONS(164), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -61789,28 +77588,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(166), [anon_sym_COLON] = ACTIONS(164), [anon_sym_module] = ACTIONS(164), - [anon_sym_rewrite] = ACTIONS(164), [anon_sym_with] = ACTIONS(164), }, - [1369] = { + [1743] = { + [ts_builtin_sym_end] = ACTIONS(168), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -61822,222 +77619,677 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(168), [anon_sym_COLON] = ACTIONS(168), [anon_sym_module] = ACTIONS(168), - [anon_sym_rewrite] = ACTIONS(168), [anon_sym_with] = ACTIONS(168), }, - [1370] = { - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1046), + [1744] = { + [sym_expr] = STATE(2677), + [sym__expr1] = STATE(1740), + [sym__application] = STATE(471), + [sym__expr2] = STATE(472), + [sym__atomic_exprs1] = STATE(1741), + [sym_atomic_expr] = STATE(1742), + [sym__atomic_expr_curly] = STATE(1743), + [sym__atomic_expr_no_curly] = STATE(1743), + [sym_tele_arrow] = STATE(1744), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(475), + [aux_sym__application_repeat1] = STATE(1745), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2162), + [sym_set_n] = ACTIONS(2162), + [sym_name_at] = ACTIONS(2164), + [sym_qualified_name] = ACTIONS(2162), + [anon_sym__] = ACTIONS(2162), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2170), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(584), + [anon_sym_forall] = ACTIONS(586), + [anon_sym_let] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_Prop] = ACTIONS(2162), + [anon_sym_Set] = ACTIONS(2162), + [anon_sym_quote] = ACTIONS(2162), + [anon_sym_quoteTerm] = ACTIONS(2162), + [anon_sym_unquote] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_LPAREN_PIPE] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2162), + }, + [1745] = { + [sym__expr2] = STATE(960), + [sym_atomic_expr] = STATE(1742), + [sym__atomic_expr_curly] = STATE(1743), + [sym__atomic_expr_no_curly] = STATE(1743), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(2162), + [sym_set_n] = ACTIONS(2162), + [sym_name_at] = ACTIONS(2164), + [sym_qualified_name] = ACTIONS(2162), + [anon_sym__] = ACTIONS(2162), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3165), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_rewrite] = ACTIONS(1046), - [anon_sym_with] = ACTIONS(1046), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(584), + [anon_sym_forall] = ACTIONS(586), + [anon_sym_let] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_Prop] = ACTIONS(2162), + [anon_sym_Set] = ACTIONS(2162), + [anon_sym_quote] = ACTIONS(2162), + [anon_sym_quoteTerm] = ACTIONS(2162), + [anon_sym_unquote] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_LPAREN_PIPE] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2162), }, - [1371] = { - [sym_semi] = STATE(2333), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2334), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_rewrite] = ACTIONS(1048), - [anon_sym_with] = ACTIONS(1048), + [1746] = { + [sym__expr1] = STATE(1109), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [aux_sym__expr1_repeat1] = STATE(2682), + [aux_sym__application_repeat1] = STATE(2683), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(3183), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3185), + [anon_sym_forall] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [1372] = { - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_COLON] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_rewrite] = ACTIONS(1052), - [anon_sym_with] = ACTIONS(1052), + [1747] = { + [sym__expr1] = STATE(2684), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [aux_sym__expr1_repeat1] = STATE(2682), + [aux_sym__application_repeat1] = STATE(2683), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(3183), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3185), + [anon_sym_forall] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [1373] = { - [sym__expr2] = STATE(738), - [sym_atomic_expr] = STATE(1368), - [sym__atomic_expr_curly] = STATE(1369), - [sym__atomic_expr_no_curly] = STATE(1369), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1694), - [sym_set_n] = ACTIONS(1694), - [sym_name_at] = ACTIONS(1696), - [sym_qualified_name] = ACTIONS(1694), - [anon_sym__] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1700), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2830), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(1694), - [anon_sym_Prop] = ACTIONS(1694), - [anon_sym_Set] = ACTIONS(1694), - [anon_sym_quote] = ACTIONS(1694), - [anon_sym_quoteTerm] = ACTIONS(1694), - [anon_sym_unquote] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1704), - [anon_sym_LPAREN_PIPE] = ACTIONS(1706), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1694), + [1748] = { + [sym_with_expressions] = STATE(2685), + [ts_builtin_sym_end] = ACTIONS(612), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), }, - [1374] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2814), + [1749] = { + [ts_builtin_sym_end] = ACTIONS(612), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), }, - [1375] = { + [1750] = { + [sym_expr] = STATE(2693), + [sym__expr1] = STATE(2694), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(2695), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(2698), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2682), + [aux_sym__application_repeat1] = STATE(2699), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3193), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3185), + [anon_sym_forall] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [1751] = { + [sym_vopen] = STATE(2700), + [sym_declarations] = STATE(2701), + [sym__declarations0] = STATE(2702), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2832), }, - [1376] = { - [sym_expr] = STATE(2315), - [sym__expr1] = STATE(1385), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(1386), - [sym_atomic_expr] = STATE(1387), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_tele_arrow] = STATE(1389), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(1390), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(1722), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(1724), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1728), + [1752] = { + [sym_anonymous_name] = STATE(2703), + [sym_name] = ACTIONS(3205), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), }, - [1377] = { - [sym__application] = STATE(2336), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(1692), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [1753] = { + [ts_builtin_sym_end] = ACTIONS(642), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), + }, + [1754] = { + [sym_where_clause] = STATE(2704), + [ts_builtin_sym_end] = ACTIONS(642), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), + }, + [1755] = { + [sym__expr1] = STATE(952), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(953), + [sym__declaration] = STATE(954), + [sym_function_clause] = STATE(955), + [aux_sym_source_file_repeat1] = STATE(1755), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(644), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(1106), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1115), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(1118), + [anon_sym_let] = ACTIONS(1121), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), + }, + [1756] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [1757] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [1758] = { + [sym__application] = STATE(2705), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [1378] = { + [1759] = { + [sym__application] = STATE(2706), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [1760] = { + [sym_binding_name] = STATE(2707), + [sym__application] = STATE(2708), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [1761] = { + [ts_builtin_sym_end] = ACTIONS(882), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + }, + [1762] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(3207), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3209), + }, + [1763] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(3211), + [sym_comment] = ACTIONS(86), + }, + [1764] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3207), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3213), + }, + [1765] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(2713), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [1766] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3207), + }, + [1767] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3215), + }, + [1768] = { + [sym_expr] = STATE(2711), + [sym__expr1] = STATE(1778), + [sym__application] = STATE(487), + [sym__expr2] = STATE(488), + [sym__atomic_exprs1] = STATE(1779), + [sym_atomic_expr] = STATE(1780), + [sym__atomic_expr_curly] = STATE(1781), + [sym__atomic_expr_no_curly] = STATE(1781), + [sym_tele_arrow] = STATE(1782), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(491), + [aux_sym__application_repeat1] = STATE(1783), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2200), + [sym_set_n] = ACTIONS(2200), + [sym_name_at] = ACTIONS(2202), + [sym_qualified_name] = ACTIONS(2200), + [anon_sym__] = ACTIONS(2200), + [anon_sym_DOT] = ACTIONS(2204), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2206), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2208), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(602), + [anon_sym_forall] = ACTIONS(604), + [anon_sym_let] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(2200), + [anon_sym_Prop] = ACTIONS(2200), + [anon_sym_Set] = ACTIONS(2200), + [anon_sym_quote] = ACTIONS(2200), + [anon_sym_quoteTerm] = ACTIONS(2200), + [anon_sym_unquote] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2210), + [anon_sym_LPAREN_PIPE] = ACTIONS(2212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2200), + }, + [1769] = { + [sym__application] = STATE(2715), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [1770] = { + [ts_builtin_sym_end] = ACTIONS(30), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), @@ -62046,7 +78298,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), [anon_sym_Prop] = ACTIONS(30), [anon_sym_Set] = ACTIONS(30), @@ -62058,57 +78309,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(30), [anon_sym_COLON] = ACTIONS(30), [anon_sym_module] = ACTIONS(30), - [anon_sym_rewrite] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), }, - [1379] = { - [sym_atomic_expr] = STATE(2340), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(1722), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2836), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), + [1771] = { + [sym_atomic_expr] = STATE(2719), + [sym__atomic_expr_curly] = STATE(1781), + [sym__atomic_expr_no_curly] = STATE(1781), + [sym_literal] = ACTIONS(2200), + [sym_set_n] = ACTIONS(2200), + [sym_name_at] = ACTIONS(2202), + [sym_qualified_name] = ACTIONS(2200), + [anon_sym__] = ACTIONS(2200), + [anon_sym_DOT] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3219), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2200), + [anon_sym_Prop] = ACTIONS(2200), + [anon_sym_Set] = ACTIONS(2200), + [anon_sym_quote] = ACTIONS(2200), + [anon_sym_quoteTerm] = ACTIONS(2200), + [anon_sym_unquote] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_LPAREN_PIPE] = ACTIONS(2212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2200), }, - [1380] = { - [sym_atomic_expr] = STATE(2340), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(1722), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2842), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), + [1772] = { + [sym_atomic_expr] = STATE(2719), + [sym__atomic_expr_curly] = STATE(1781), + [sym__atomic_expr_no_curly] = STATE(1781), + [sym_literal] = ACTIONS(2200), + [sym_set_n] = ACTIONS(2200), + [sym_name_at] = ACTIONS(2202), + [sym_qualified_name] = ACTIONS(2200), + [anon_sym__] = ACTIONS(2200), + [anon_sym_DOT] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(3223), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3225), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2200), + [anon_sym_Prop] = ACTIONS(2200), + [anon_sym_Set] = ACTIONS(2200), + [anon_sym_quote] = ACTIONS(2200), + [anon_sym_quoteTerm] = ACTIONS(2200), + [anon_sym_unquote] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_LPAREN_PIPE] = ACTIONS(2212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2200), }, - [1381] = { - [sym_expr] = STATE(2345), + [1773] = { + [sym_expr] = STATE(2724), [sym__expr1] = STATE(38), [sym__application] = STATE(170), [sym__expr2] = STATE(40), @@ -62129,7 +78378,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(3229), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -62145,8 +78394,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1382] = { - [sym_expr] = STATE(2346), + [1774] = { + [sym_expr] = STATE(2725), [sym__expr1] = STATE(60), [sym__application] = STATE(185), [sym__expr2] = STATE(62), @@ -62168,7 +78417,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2848), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3231), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -62183,8 +78432,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1383] = { - [sym_expr] = STATE(2347), + [1775] = { + [sym_expr] = STATE(2726), [sym__expr1] = STATE(110), [sym__application] = STATE(213), [sym__expr2] = STATE(40), @@ -62217,12 +78466,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_RPAREN] = ACTIONS(3231), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1384] = { - [sym_expr] = STATE(2348), + [1776] = { + [sym_expr] = STATE(2727), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -62258,53 +78507,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1385] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2850), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_rewrite] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), + [1777] = { + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), }, - [1386] = { + [1778] = { + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [1779] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2852), + [anon_sym_DASH_GT] = ACTIONS(3235), [anon_sym_PIPE] = ACTIONS(162), }, - [1387] = { + [1780] = { + [ts_builtin_sym_end] = ACTIONS(164), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), @@ -62313,7 +78586,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -62325,20 +78597,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(166), [anon_sym_COLON] = ACTIONS(164), [anon_sym_module] = ACTIONS(164), - [anon_sym_rewrite] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), }, - [1388] = { + [1781] = { + [ts_builtin_sym_end] = ACTIONS(168), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), @@ -62347,7 +78616,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -62359,904 +78627,1829 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(168), [anon_sym_COLON] = ACTIONS(168), [anon_sym_module] = ACTIONS(168), - [anon_sym_rewrite] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), }, - [1389] = { - [sym_expr] = STATE(2350), - [sym__expr1] = STATE(1385), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(1386), - [sym_atomic_expr] = STATE(1387), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_tele_arrow] = STATE(1389), + [1782] = { + [sym_expr] = STATE(2729), + [sym__expr1] = STATE(1778), + [sym__application] = STATE(487), + [sym__expr2] = STATE(488), + [sym__atomic_exprs1] = STATE(1779), + [sym_atomic_expr] = STATE(1780), + [sym__atomic_expr_curly] = STATE(1781), + [sym__atomic_expr_no_curly] = STATE(1781), + [sym_tele_arrow] = STATE(1782), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(1390), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(1722), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(1724), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1728), + [aux_sym__expr1_repeat1] = STATE(491), + [aux_sym__application_repeat1] = STATE(1783), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2200), + [sym_set_n] = ACTIONS(2200), + [sym_name_at] = ACTIONS(2202), + [sym_qualified_name] = ACTIONS(2200), + [anon_sym__] = ACTIONS(2200), + [anon_sym_DOT] = ACTIONS(2204), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2206), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2208), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(602), + [anon_sym_forall] = ACTIONS(604), + [anon_sym_let] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(2200), + [anon_sym_Prop] = ACTIONS(2200), + [anon_sym_Set] = ACTIONS(2200), + [anon_sym_quote] = ACTIONS(2200), + [anon_sym_quoteTerm] = ACTIONS(2200), + [anon_sym_unquote] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2210), + [anon_sym_LPAREN_PIPE] = ACTIONS(2212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2200), + }, + [1783] = { + [sym__expr2] = STATE(981), + [sym_atomic_expr] = STATE(1780), + [sym__atomic_expr_curly] = STATE(1781), + [sym__atomic_expr_no_curly] = STATE(1781), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(2200), + [sym_set_n] = ACTIONS(2200), + [sym_name_at] = ACTIONS(2202), + [sym_qualified_name] = ACTIONS(2200), + [anon_sym__] = ACTIONS(2200), + [anon_sym_DOT] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3219), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(602), + [anon_sym_forall] = ACTIONS(604), + [anon_sym_let] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(2200), + [anon_sym_Prop] = ACTIONS(2200), + [anon_sym_Set] = ACTIONS(2200), + [anon_sym_quote] = ACTIONS(2200), + [anon_sym_quoteTerm] = ACTIONS(2200), + [anon_sym_unquote] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_LPAREN_PIPE] = ACTIONS(2212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2200), + }, + [1784] = { + [sym__expr1] = STATE(1125), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1128), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), + [aux_sym__expr1_repeat1] = STATE(2734), + [aux_sym__application_repeat1] = STATE(2735), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(3237), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3239), + [anon_sym_forall] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + }, + [1785] = { + [sym_with_expressions] = STATE(1132), + [ts_builtin_sym_end] = ACTIONS(612), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(2214), + }, + [1786] = { + [sym_expr] = STATE(1882), + [sym__expr1] = STATE(2738), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2739), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2740), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2734), + [aux_sym__application_repeat1] = STATE(2741), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(3245), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3247), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3239), + [anon_sym_forall] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), + }, + [1787] = { + [sym_vopen] = STATE(2742), + [sym_declarations] = STATE(2743), + [sym__declarations0] = STATE(2744), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [1788] = { + [sym_anonymous_name] = STATE(2745), + [sym_name] = ACTIONS(3249), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), + }, + [1789] = { + [ts_builtin_sym_end] = ACTIONS(642), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + }, + [1790] = { + [sym_where_clause] = STATE(2746), + [ts_builtin_sym_end] = ACTIONS(642), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + }, + [1791] = { + [sym__expr1] = STATE(973), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(974), + [sym__declaration] = STATE(975), + [sym_function_clause] = STATE(976), + [aux_sym_source_file_repeat1] = STATE(1791), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(644), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(1106), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1115), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(1118), + [anon_sym_let] = ACTIONS(1121), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + }, + [1792] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [1793] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [1794] = { + [sym__application] = STATE(2747), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [1795] = { + [sym__application] = STATE(2748), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [1796] = { + [sym_binding_name] = STATE(2749), + [sym__application] = STATE(2750), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [1797] = { + [ts_builtin_sym_end] = ACTIONS(882), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + }, + [1798] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(3251), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3253), + }, + [1799] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(3255), + [sym_comment] = ACTIONS(86), + }, + [1800] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3251), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3257), + }, + [1801] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(2755), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [1802] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3251), + }, + [1803] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3259), + }, + [1804] = { + [sym_expr] = STATE(2753), + [sym__expr1] = STATE(1807), + [sym__application] = STATE(506), + [sym__expr2] = STATE(507), + [sym__atomic_exprs1] = STATE(1808), + [sym_atomic_expr] = STATE(509), + [sym__atomic_expr_curly] = STATE(510), + [sym__atomic_expr_no_curly] = STATE(510), + [sym_tele_arrow] = STATE(1809), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(512), + [aux_sym__application_repeat1] = STATE(513), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(616), + [sym_set_n] = ACTIONS(616), + [sym_name_at] = ACTIONS(618), + [sym_qualified_name] = ACTIONS(616), + [anon_sym__] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_LBRACE_LBRACE] = ACTIONS(624), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_forall] = ACTIONS(628), + [anon_sym_let] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_Prop] = ACTIONS(616), + [anon_sym_Set] = ACTIONS(616), + [anon_sym_quote] = ACTIONS(616), + [anon_sym_quoteTerm] = ACTIONS(616), + [anon_sym_unquote] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_LPAREN_PIPE] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + }, + [1805] = { + [sym__application] = STATE(2757), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [1806] = { + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + }, + [1807] = { + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3261), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [1808] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3263), + [anon_sym_PIPE] = ACTIONS(162), + }, + [1809] = { + [sym_expr] = STATE(2759), + [sym__expr1] = STATE(1807), + [sym__application] = STATE(506), + [sym__expr2] = STATE(507), + [sym__atomic_exprs1] = STATE(1808), + [sym_atomic_expr] = STATE(509), + [sym__atomic_expr_curly] = STATE(510), + [sym__atomic_expr_no_curly] = STATE(510), + [sym_tele_arrow] = STATE(1809), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(512), + [aux_sym__application_repeat1] = STATE(513), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(616), + [sym_set_n] = ACTIONS(616), + [sym_name_at] = ACTIONS(618), + [sym_qualified_name] = ACTIONS(616), + [anon_sym__] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_LBRACE_LBRACE] = ACTIONS(624), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_forall] = ACTIONS(628), + [anon_sym_let] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_Prop] = ACTIONS(616), + [anon_sym_Set] = ACTIONS(616), + [anon_sym_quote] = ACTIONS(616), + [anon_sym_quoteTerm] = ACTIONS(616), + [anon_sym_unquote] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_LPAREN_PIPE] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + }, + [1810] = { + [sym_expr] = STATE(1143), + [sym__expr1] = STATE(2765), + [sym__application] = STATE(1145), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(2766), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_tele_arrow] = STATE(2767), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2768), + [aux_sym__application_repeat1] = STATE(2769), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(3265), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3269), + [anon_sym_forall] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), + }, + [1811] = { + [sym_vopen] = STATE(2770), + [sym_declarations] = STATE(2771), + [sym__declarations0] = STATE(2772), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [1812] = { + [sym_anonymous_name] = STATE(2773), + [sym_name] = ACTIONS(3275), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), + }, + [1813] = { + [ts_builtin_sym_end] = ACTIONS(642), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + }, + [1814] = { + [sym_where_clause] = STATE(2774), + [ts_builtin_sym_end] = ACTIONS(642), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + }, + [1815] = { + [sym__expr1] = STATE(973), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(1000), + [sym__declaration] = STATE(1001), + [sym_function_clause] = STATE(1002), + [aux_sym_source_file_repeat1] = STATE(1815), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(644), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(1106), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1115), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(1118), + [anon_sym_let] = ACTIONS(1121), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_module] = ACTIONS(644), + }, + [1816] = { + [ts_builtin_sym_end] = ACTIONS(3017), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + }, + [1817] = { + [ts_builtin_sym_end] = ACTIONS(186), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [1390] = { - [sym__expr2] = STATE(738), - [sym_atomic_expr] = STATE(1387), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(1722), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2836), + [1818] = { + [ts_builtin_sym_end] = ACTIONS(228), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [1391] = { - [sym__expr1] = STATE(2351), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(346), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [1819] = { + [anon_sym_RBRACE] = ACTIONS(3277), + [sym_comment] = ACTIONS(86), + }, + [1820] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3279), + [sym_comment] = ACTIONS(86), + }, + [1821] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3279), + }, + [1822] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(3279), + }, + [1823] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_rewrite] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [1392] = { - [sym__expr1] = STATE(2352), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(346), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [1824] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_rewrite] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [1393] = { - [sym_with_expressions] = STATE(2353), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE_RBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_rewrite] = ACTIONS(646), - [anon_sym_with] = ACTIONS(1736), + [1825] = { + [anon_sym_RBRACE] = ACTIONS(3281), + [sym_comment] = ACTIONS(86), }, - [1394] = { - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE_RBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_rewrite] = ACTIONS(646), - [anon_sym_with] = ACTIONS(646), + [1826] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3283), + [sym_comment] = ACTIONS(86), }, - [1395] = { - [sym_expr] = STATE(2354), - [sym__expr1] = STATE(1385), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(1386), - [sym_atomic_expr] = STATE(1387), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_tele_arrow] = STATE(1389), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(1390), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(1722), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(1724), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1728), + [1827] = { + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3287), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(3289), + }, + [1828] = { + [sym__application] = STATE(2783), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(2784), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [1396] = { - [sym__expr1] = STATE(2296), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2297), - [sym__declaration] = STATE(2355), - [sym_function_clause] = STATE(723), - [sym__declarations1] = STATE(2356), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(670), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), - [anon_sym_rewrite] = ACTIONS(670), - [anon_sym_with] = ACTIONS(670), + [1829] = { + [sym__application] = STATE(2785), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3291), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1397] = { - [sym_anonymous_name] = STATE(2357), - [sym_name] = ACTIONS(2854), - [anon_sym__] = ACTIONS(676), + [1830] = { + [sym_vopen] = STATE(2786), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), + }, + [1831] = { + [sym_binding_name] = STATE(2787), + [sym__application] = STATE(2788), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(3291), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1398] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE_RBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(678), - [anon_sym_rewrite] = ACTIONS(678), - [anon_sym_with] = ACTIONS(678), + [1832] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3293), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_where] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), + [anon_sym_rewrite] = ACTIONS(757), + [anon_sym_with] = ACTIONS(757), }, - [1399] = { - [sym_where_clause] = STATE(2358), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE_RBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(1740), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(1742), - [anon_sym_rewrite] = ACTIONS(678), - [anon_sym_with] = ACTIONS(678), + [1833] = { + [sym_lambda_bindings] = STATE(2782), + [sym_untyped_bindings] = STATE(1833), + [sym_typed_bindings] = STATE(1833), + [sym__layout_semicolon] = ACTIONS(763), + [sym__layout_close_brace] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_DOT_DOT] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2256), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_where] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_module] = ACTIONS(763), + [anon_sym_rewrite] = ACTIONS(763), + [anon_sym_with] = ACTIONS(763), }, - [1400] = { - [sym__expr1] = STATE(720), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(721), - [sym__declaration] = STATE(722), - [sym_function_clause] = STATE(723), - [aux_sym_source_file_repeat1] = STATE(1400), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(1802), - [sym_set_n] = ACTIONS(1802), - [sym_name_at] = ACTIONS(1805), - [sym_qualified_name] = ACTIONS(1802), - [anon_sym__] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE_RBRACE] = ACTIONS(680), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1814), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1802), - [anon_sym_Prop] = ACTIONS(1802), - [anon_sym_Set] = ACTIONS(1802), - [anon_sym_quote] = ACTIONS(1802), - [anon_sym_quoteTerm] = ACTIONS(1802), - [anon_sym_unquote] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LPAREN_PIPE] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_rewrite] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), + [1834] = { + [sym_expr] = STATE(2798), + [sym__expr1] = STATE(2799), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(2800), + [sym_atomic_expr] = STATE(2801), + [sym__atomic_expr_curly] = STATE(2802), + [sym__atomic_expr_no_curly] = STATE(2802), + [sym_tele_arrow] = STATE(2803), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(2804), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3297), + [sym_set_n] = ACTIONS(3297), + [sym_name_at] = ACTIONS(3299), + [sym_qualified_name] = ACTIONS(3297), + [anon_sym__] = ACTIONS(3297), + [anon_sym_DOT] = ACTIONS(3301), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3305), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_Prop] = ACTIONS(3297), + [anon_sym_Set] = ACTIONS(3297), + [anon_sym_quote] = ACTIONS(3297), + [anon_sym_quoteTerm] = ACTIONS(3297), + [anon_sym_unquote] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_LPAREN_PIPE] = ACTIONS(3309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), }, - [1401] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), + [1835] = { + [sym_rewrite_equations] = STATE(2807), + [sym_with_expressions] = STATE(2808), + [sym__layout_semicolon] = ACTIONS(1711), + [sym__layout_close_brace] = ACTIONS(1711), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [anon_sym_SEMI] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_in] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(152), + [anon_sym_with] = ACTIONS(152), }, - [1402] = { - [sym_atomic_expr] = STATE(2359), - [sym__atomic_expr_curly] = STATE(1414), - [sym__atomic_expr_no_curly] = STATE(1414), - [sym_literal] = ACTIONS(1744), - [sym_set_n] = ACTIONS(1744), - [sym_name_at] = ACTIONS(1746), - [sym_qualified_name] = ACTIONS(1744), - [anon_sym__] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1750), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1744), - [anon_sym_Prop] = ACTIONS(1744), - [anon_sym_Set] = ACTIONS(1744), - [anon_sym_quote] = ACTIONS(1744), - [anon_sym_quoteTerm] = ACTIONS(1744), - [anon_sym_unquote] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1744), + [1836] = { + [sym_where_clause] = STATE(2812), + [sym_rhs] = STATE(2813), + [sym__layout_semicolon] = ACTIONS(1717), + [sym__layout_close_brace] = ACTIONS(1717), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(170), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(170), + [anon_sym_rewrite] = ACTIONS(170), + [anon_sym_with] = ACTIONS(170), }, - [1403] = { - [sym_expr] = STATE(2361), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(2856), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [1837] = { + [sym__layout_semicolon] = ACTIONS(1725), + [sym__layout_close_brace] = ACTIONS(1725), + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [anon_sym_SEMI] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), + [anon_sym_rewrite] = ACTIONS(178), + [anon_sym_with] = ACTIONS(178), }, - [1404] = { - [sym_expr] = STATE(2362), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2858), + [1838] = { + [sym__layout_semicolon] = ACTIONS(1727), + [sym__layout_close_brace] = ACTIONS(1727), + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [anon_sym_SEMI] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), + [anon_sym_rewrite] = ACTIONS(180), + [anon_sym_with] = ACTIONS(180), }, - [1405] = { - [sym_lambda_bindings] = STATE(2368), - [sym_untyped_bindings] = STATE(2369), - [sym_typed_bindings] = STATE(2369), - [anon_sym_DOT] = ACTIONS(2860), - [anon_sym_DOT_DOT] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2866), + [1839] = { + [sym__expr1] = STATE(1835), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(1836), + [sym__declaration] = STATE(1837), + [sym_function_clause] = STATE(1838), + [aux_sym_source_file_repeat1] = STATE(2814), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_in] = ACTIONS(3311), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [1840] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_RPAREN] = ACTIONS(3283), }, - [1406] = { - [sym_forall_bindings] = STATE(2370), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [1841] = { [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [anon_sym_PIPE_RPAREN] = ACTIONS(3283), }, - [1407] = { - [sym__expr1] = STATE(2371), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), + [1842] = { + [sym__expr1] = STATE(2824), + [sym__application] = STATE(2825), + [sym__expr2] = STATE(2826), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2372), - [sym__declaration] = STATE(2373), - [sym_function_clause] = STATE(2374), - [aux_sym_source_file_repeat1] = STATE(2375), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(346), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [sym_atomic_expr] = STATE(2827), + [sym__atomic_expr_curly] = STATE(2828), + [sym__atomic_expr_no_curly] = STATE(2828), + [aux_sym__expr1_repeat1] = STATE(2829), + [aux_sym__application_repeat1] = STATE(2830), + [sym_literal] = ACTIONS(3313), + [sym_set_n] = ACTIONS(3313), + [sym_name_at] = ACTIONS(3315), + [sym_qualified_name] = ACTIONS(3313), + [anon_sym__] = ACTIONS(3313), + [anon_sym_DOT] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3319), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3321), + [anon_sym_forall] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_QMARK] = ACTIONS(3313), + [anon_sym_Prop] = ACTIONS(3313), + [anon_sym_Set] = ACTIONS(3313), + [anon_sym_quote] = ACTIONS(3313), + [anon_sym_quoteTerm] = ACTIONS(3313), + [anon_sym_unquote] = ACTIONS(3313), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_LPAREN_PIPE] = ACTIONS(3329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3313), }, - [1408] = { - [sym_expr] = STATE(2376), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(2858), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [1843] = { + [sym__expr1] = STATE(2840), + [sym__application] = STATE(2841), + [sym__expr2] = STATE(2842), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(2843), + [sym__atomic_expr_curly] = STATE(2844), + [sym__atomic_expr_no_curly] = STATE(2844), + [aux_sym__expr1_repeat1] = STATE(2845), + [aux_sym__application_repeat1] = STATE(2846), + [sym_literal] = ACTIONS(3331), + [sym_set_n] = ACTIONS(3331), + [sym_name_at] = ACTIONS(3333), + [sym_qualified_name] = ACTIONS(3331), + [anon_sym__] = ACTIONS(3331), + [anon_sym_DOT] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3335), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3337), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3339), + [anon_sym_forall] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_QMARK] = ACTIONS(3331), + [anon_sym_Prop] = ACTIONS(3331), + [anon_sym_Set] = ACTIONS(3331), + [anon_sym_quote] = ACTIONS(3331), + [anon_sym_quoteTerm] = ACTIONS(3331), + [anon_sym_unquote] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_LPAREN_PIPE] = ACTIONS(3347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3331), }, - [1409] = { - [sym_expr] = STATE(2377), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [1844] = { + [sym_with_expressions] = STATE(2847), + [sym__layout_semicolon] = ACTIONS(2746), + [sym__layout_close_brace] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2746), + [anon_sym_where] = ACTIONS(2746), + [anon_sym_COLON] = ACTIONS(2746), + [anon_sym_module] = ACTIONS(2746), + [anon_sym_with] = ACTIONS(2266), }, - [1410] = { - [sym_literal] = ACTIONS(1302), - [sym_set_n] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [sym_name_at] = ACTIONS(1302), - [sym_qualified_name] = ACTIONS(1302), - [anon_sym__] = ACTIONS(1302), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1302), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_BSLASH] = ACTIONS(1302), - [anon_sym_where] = ACTIONS(1302), - [anon_sym_forall] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1302), - [anon_sym_Prop] = ACTIONS(1302), - [anon_sym_Set] = ACTIONS(1302), - [anon_sym_quote] = ACTIONS(1302), - [anon_sym_quoteTerm] = ACTIONS(1302), - [anon_sym_unquote] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LPAREN_PIPE] = ACTIONS(1302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_COLON] = ACTIONS(1302), - [anon_sym_module] = ACTIONS(1302), - [anon_sym_with] = ACTIONS(1302), + [1845] = { + [sym__layout_semicolon] = ACTIONS(2746), + [sym__layout_close_brace] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2746), + [anon_sym_where] = ACTIONS(2746), + [anon_sym_COLON] = ACTIONS(2746), + [anon_sym_module] = ACTIONS(2746), }, - [1411] = { - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [anon_sym_RBRACE_RBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_in] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), - [anon_sym_with] = ACTIONS(158), + [1846] = { + [sym_expr] = STATE(2858), + [sym__expr1] = STATE(2859), + [sym__application] = STATE(2860), + [sym__expr2] = STATE(2861), + [sym__atomic_exprs1] = STATE(2862), + [sym_atomic_expr] = STATE(2863), + [sym__atomic_expr_curly] = STATE(2864), + [sym__atomic_expr_no_curly] = STATE(2864), + [sym_tele_arrow] = STATE(2865), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2866), + [aux_sym__application_repeat1] = STATE(2867), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3349), + [sym_set_n] = ACTIONS(3349), + [sym_name_at] = ACTIONS(3351), + [sym_qualified_name] = ACTIONS(3349), + [anon_sym__] = ACTIONS(3349), + [anon_sym_DOT] = ACTIONS(3353), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3357), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3359), + [anon_sym_forall] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_QMARK] = ACTIONS(3349), + [anon_sym_Prop] = ACTIONS(3349), + [anon_sym_Set] = ACTIONS(3349), + [anon_sym_quote] = ACTIONS(3349), + [anon_sym_quoteTerm] = ACTIONS(3349), + [anon_sym_unquote] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_LPAREN_PIPE] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), }, - [1412] = { - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), - [anon_sym_RBRACE_RBRACE] = ACTIONS(160), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_in] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), - [anon_sym_with] = ACTIONS(160), + [1847] = { + [sym_vopen] = STATE(2868), + [sym_declarations] = STATE(2869), + [sym__declarations0] = STATE(2870), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [1413] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), + [1848] = { + [sym_anonymous_name] = STATE(2871), + [sym_name] = ACTIONS(3369), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), }, - [1414] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), + [1849] = { + [sym__layout_semicolon] = ACTIONS(2764), + [sym__layout_close_brace] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [sym_comment] = ACTIONS(86), }, - [1415] = { - [sym__application] = STATE(2378), - [sym__expr2] = STATE(1412), + [1850] = { + [sym_where_clause] = STATE(2872), + [sym__layout_semicolon] = ACTIONS(2764), + [sym__layout_close_brace] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(2270), + [anon_sym_module] = ACTIONS(2272), + }, + [1851] = { + [sym_literal] = ACTIONS(1761), + [sym_set_n] = ACTIONS(1761), + [sym_name_at] = ACTIONS(1761), + [sym_qualified_name] = ACTIONS(1761), + [anon_sym__] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1761), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1761), + [anon_sym_forall] = ACTIONS(1761), + [anon_sym_let] = ACTIONS(1761), + [anon_sym_QMARK] = ACTIONS(1761), + [anon_sym_Prop] = ACTIONS(1761), + [anon_sym_Set] = ACTIONS(1761), + [anon_sym_quote] = ACTIONS(1761), + [anon_sym_quoteTerm] = ACTIONS(1761), + [anon_sym_unquote] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym_LPAREN_PIPE] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1761), + }, + [1852] = { + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1413), - [sym__atomic_expr_curly] = STATE(1414), - [sym__atomic_expr_no_curly] = STATE(1414), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(1416), - [sym_literal] = ACTIONS(1744), - [sym_set_n] = ACTIONS(1744), - [sym_name_at] = ACTIONS(1746), - [sym_qualified_name] = ACTIONS(1744), - [anon_sym__] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1750), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1752), - [anon_sym_forall] = ACTIONS(1754), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_QMARK] = ACTIONS(1744), - [anon_sym_Prop] = ACTIONS(1744), - [anon_sym_Set] = ACTIONS(1744), - [anon_sym_quote] = ACTIONS(1744), - [anon_sym_quoteTerm] = ACTIONS(1744), - [anon_sym_unquote] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1744), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(2873), + [sym_function_clause] = STATE(1037), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [1416] = { - [sym__expr2] = STATE(2379), - [sym_atomic_expr] = STATE(1413), - [sym__atomic_expr_curly] = STATE(1414), - [sym__atomic_expr_no_curly] = STATE(1414), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1744), - [sym_set_n] = ACTIONS(1744), - [sym_name_at] = ACTIONS(1746), - [sym_qualified_name] = ACTIONS(1744), - [anon_sym__] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1750), + [1853] = { + [sym_semi] = STATE(1852), + [aux_sym__declarations1_repeat1] = STATE(2874), + [sym__layout_semicolon] = ACTIONS(2274), + [sym__layout_close_brace] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(2274), + [sym_comment] = ACTIONS(86), + }, + [1854] = { + [ts_builtin_sym_end] = ACTIONS(3373), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + }, + [1855] = { + [sym__layout_semicolon] = ACTIONS(787), + [sym__layout_close_brace] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(787), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_where] = ACTIONS(787), + [anon_sym_COLON] = ACTIONS(787), + [anon_sym_module] = ACTIONS(787), + [anon_sym_rewrite] = ACTIONS(787), + [anon_sym_with] = ACTIONS(787), + }, + [1856] = { + [sym__layout_semicolon] = ACTIONS(789), + [sym__layout_close_brace] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_where] = ACTIONS(789), + [anon_sym_COLON] = ACTIONS(789), + [anon_sym_module] = ACTIONS(789), + [anon_sym_rewrite] = ACTIONS(789), + [anon_sym_with] = ACTIONS(789), + }, + [1857] = { + [ts_builtin_sym_end] = ACTIONS(3375), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + }, + [1858] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + }, + [1859] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + }, + [1860] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + }, + [1861] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + }, + [1862] = { + [anon_sym_RBRACE] = ACTIONS(3377), + [sym_comment] = ACTIONS(86), + }, + [1863] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3377), + [sym_comment] = ACTIONS(86), + }, + [1864] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3377), + }, + [1865] = { + [sym_expr] = STATE(615), + [sym__expr1] = STATE(1061), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(1062), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(1063), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1064), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1752), - [anon_sym_forall] = ACTIONS(1754), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_QMARK] = ACTIONS(1744), - [anon_sym_Prop] = ACTIONS(1744), - [anon_sym_Set] = ACTIONS(1744), - [anon_sym_quote] = ACTIONS(1744), - [anon_sym_quoteTerm] = ACTIONS(1744), - [anon_sym_unquote] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1744), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1417] = { + [1866] = { [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(30), [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), [anon_sym_Prop] = ACTIONS(30), [anon_sym_Set] = ACTIONS(30), @@ -63264,36 +80457,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(30), [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_RPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), }, - [1418] = { - [sym_atomic_expr] = STATE(2380), - [sym__atomic_expr_curly] = STATE(1430), - [sym__atomic_expr_no_curly] = STATE(1430), - [sym_literal] = ACTIONS(1762), - [sym_set_n] = ACTIONS(1762), - [sym_name_at] = ACTIONS(1764), - [sym_qualified_name] = ACTIONS(1762), - [anon_sym__] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1768), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1762), - [anon_sym_Prop] = ACTIONS(1762), - [anon_sym_Set] = ACTIONS(1762), - [anon_sym_quote] = ACTIONS(1762), - [anon_sym_quoteTerm] = ACTIONS(1762), - [anon_sym_unquote] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_LPAREN_PIPE] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), + [1867] = { + [sym_atomic_expr] = STATE(2876), + [sym__atomic_expr_curly] = STATE(1873), + [sym__atomic_expr_no_curly] = STATE(1873), + [sym_literal] = ACTIONS(2306), + [sym_set_n] = ACTIONS(2306), + [sym_name_at] = ACTIONS(2308), + [sym_qualified_name] = ACTIONS(2306), + [anon_sym__] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2312), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2306), + [anon_sym_Prop] = ACTIONS(2306), + [anon_sym_Set] = ACTIONS(2306), + [anon_sym_quote] = ACTIONS(2306), + [anon_sym_quoteTerm] = ACTIONS(2306), + [anon_sym_unquote] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_LPAREN_PIPE] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), }, - [1419] = { - [sym_expr] = STATE(2382), + [1868] = { + [sym_expr] = STATE(2878), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -63314,7 +80507,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(2872), + [anon_sym_RBRACE] = ACTIONS(3379), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -63330,8 +80523,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1420] = { - [sym_expr] = STATE(2383), + [1869] = { + [sym_expr] = STATE(2879), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -63353,7 +80546,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2874), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3381), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -63368,69 +80561,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1421] = { - [sym_lambda_bindings] = STATE(2389), - [sym_untyped_bindings] = STATE(2390), - [sym_typed_bindings] = STATE(2390), - [anon_sym_DOT] = ACTIONS(2876), - [anon_sym_DOT_DOT] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2882), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2886), - }, - [1422] = { - [sym_forall_bindings] = STATE(2391), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [1423] = { - [sym__expr1] = STATE(263), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2392), - [sym__declaration] = STATE(2393), - [sym_function_clause] = STATE(2394), - [aux_sym_source_file_repeat1] = STATE(2395), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(346), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [1424] = { - [sym_expr] = STATE(2396), + [1870] = { + [sym_expr] = STATE(2880), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -63462,157 +80594,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quote] = ACTIONS(32), [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(2874), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [1425] = { - [sym_expr] = STATE(2397), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [1426] = { - [sym_literal] = ACTIONS(1320), - [sym_set_n] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_name_at] = ACTIONS(1320), - [sym_qualified_name] = ACTIONS(1320), - [anon_sym__] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1320), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_BSLASH] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_forall] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_Prop] = ACTIONS(1320), - [anon_sym_Set] = ACTIONS(1320), - [anon_sym_quote] = ACTIONS(1320), - [anon_sym_quoteTerm] = ACTIONS(1320), - [anon_sym_unquote] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_LPAREN_PIPE] = ACTIONS(1320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1320), - [anon_sym_COLON] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - }, - [1427] = { - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [anon_sym_RBRACE_RBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_in] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), - }, - [1428] = { - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), - [anon_sym_RBRACE_RBRACE] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(3381), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [1871] = { + [sym_expr] = STATE(2881), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_in] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1429] = { + [1872] = { [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -63620,30 +80659,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(166), [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(164), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), }, - [1430] = { + [1873] = { [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(168), [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -63651,112 +80687,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(168), [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - }, - [1431] = { - [sym__application] = STATE(2398), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1429), - [sym__atomic_expr_curly] = STATE(1430), - [sym__atomic_expr_no_curly] = STATE(1430), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(1432), - [sym_literal] = ACTIONS(1762), - [sym_set_n] = ACTIONS(1762), - [sym_name_at] = ACTIONS(1764), - [sym_qualified_name] = ACTIONS(1762), - [anon_sym__] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1768), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1770), - [anon_sym_forall] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_QMARK] = ACTIONS(1762), - [anon_sym_Prop] = ACTIONS(1762), - [anon_sym_Set] = ACTIONS(1762), - [anon_sym_quote] = ACTIONS(1762), - [anon_sym_quoteTerm] = ACTIONS(1762), - [anon_sym_unquote] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_LPAREN_PIPE] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), }, - [1432] = { - [sym__expr2] = STATE(2399), - [sym_atomic_expr] = STATE(1429), - [sym__atomic_expr_curly] = STATE(1430), - [sym__atomic_expr_no_curly] = STATE(1430), + [1874] = { + [sym__expr2] = STATE(229), + [sym_atomic_expr] = STATE(1872), + [sym__atomic_expr_curly] = STATE(1873), + [sym__atomic_expr_no_curly] = STATE(1873), [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1762), - [sym_set_n] = ACTIONS(1762), - [sym_name_at] = ACTIONS(1764), - [sym_qualified_name] = ACTIONS(1762), - [anon_sym__] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1768), + [sym_literal] = ACTIONS(2306), + [sym_set_n] = ACTIONS(2306), + [sym_name_at] = ACTIONS(2308), + [sym_qualified_name] = ACTIONS(2306), + [anon_sym__] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2312), [sym_comment] = ACTIONS(18), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1770), - [anon_sym_forall] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_QMARK] = ACTIONS(1762), - [anon_sym_Prop] = ACTIONS(1762), - [anon_sym_Set] = ACTIONS(1762), - [anon_sym_quote] = ACTIONS(1762), - [anon_sym_quoteTerm] = ACTIONS(1762), - [anon_sym_unquote] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_LPAREN_PIPE] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - }, - [1433] = { - [sym_literal] = ACTIONS(1322), - [sym_set_n] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [sym_name_at] = ACTIONS(1322), - [sym_qualified_name] = ACTIONS(1322), - [anon_sym__] = ACTIONS(1322), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1322), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_BSLASH] = ACTIONS(1322), - [anon_sym_where] = ACTIONS(1322), - [anon_sym_forall] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_in] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_Prop] = ACTIONS(1322), - [anon_sym_Set] = ACTIONS(1322), - [anon_sym_quote] = ACTIONS(1322), - [anon_sym_quoteTerm] = ACTIONS(1322), - [anon_sym_unquote] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_LPAREN_PIPE] = ACTIONS(1322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_module] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(2306), + [anon_sym_Prop] = ACTIONS(2306), + [anon_sym_Set] = ACTIONS(2306), + [anon_sym_quote] = ACTIONS(2306), + [anon_sym_quoteTerm] = ACTIONS(2306), + [anon_sym_unquote] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_LPAREN_PIPE] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), }, - [1434] = { + [1875] = { + [ts_builtin_sym_end] = ACTIONS(30), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), @@ -63773,58 +80748,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(30), [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_RPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), [anon_sym_module] = ACTIONS(30), }, - [1435] = { - [sym_atomic_expr] = STATE(2403), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(1782), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(2888), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2890), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), + [1876] = { + [sym_atomic_expr] = STATE(2885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2320), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3385), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [1436] = { - [sym_atomic_expr] = STATE(2403), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(1782), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2896), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), + [1877] = { + [sym_atomic_expr] = STATE(2885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2320), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3391), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [1437] = { - [sym_expr] = STATE(2408), + [1878] = { + [sym_expr] = STATE(2890), [sym__expr1] = STATE(38), [sym__application] = STATE(170), [sym__expr2] = STATE(40), @@ -63845,7 +80822,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(3395), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -63861,8 +80838,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1438] = { - [sym_expr] = STATE(2409), + [1879] = { + [sym_expr] = STATE(2891), [sym__expr1] = STATE(60), [sym__application] = STATE(185), [sym__expr2] = STATE(62), @@ -63884,7 +80861,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2902), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3397), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -63899,69 +80876,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1439] = { - [sym_lambda_bindings] = STATE(2415), - [sym_untyped_bindings] = STATE(2416), - [sym_typed_bindings] = STATE(2416), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_DOT_DOT] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2910), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2914), - }, - [1440] = { - [sym_forall_bindings] = STATE(2417), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [1441] = { - [sym__expr1] = STATE(263), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2418), - [sym__declaration] = STATE(2419), - [sym_function_clause] = STATE(2420), - [aux_sym_source_file_repeat1] = STATE(2421), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(346), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [1442] = { - [sym_expr] = STATE(2422), + [1880] = { + [sym_expr] = STATE(2892), [sym__expr1] = STATE(110), [sym__application] = STATE(213), [sym__expr2] = STATE(40), @@ -63994,12 +80910,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(2902), + [anon_sym_RPAREN] = ACTIONS(3397), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1443] = { - [sym_expr] = STATE(2423), + [1881] = { + [sym_expr] = STATE(2893), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -64035,137 +80951,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1444] = { - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - }, - [1445] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2916), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [1446] = { - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [anon_sym_RBRACE_RBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_in] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), + [1882] = { + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_RPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), }, - [1447] = { - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), - [anon_sym_RBRACE_RBRACE] = ACTIONS(160), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_in] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), + [1883] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3399), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), }, - [1448] = { + [1884] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2918), + [anon_sym_DASH_GT] = ACTIONS(3401), [anon_sym_PIPE] = ACTIONS(162), }, - [1449] = { + [1885] = { + [ts_builtin_sym_end] = ACTIONS(164), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), @@ -64182,21 +81043,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(166), [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(164), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), [anon_sym_module] = ACTIONS(164), }, - [1450] = { + [1886] = { + [ts_builtin_sym_end] = ACTIONS(168), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), @@ -64213,284 +81076,308 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(168), [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), [anon_sym_module] = ACTIONS(168), }, - [1451] = { - [sym_expr] = STATE(2425), - [sym__expr1] = STATE(1445), - [sym__application] = STATE(1446), - [sym__expr2] = STATE(1447), - [sym__atomic_exprs1] = STATE(1448), - [sym_atomic_expr] = STATE(1449), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_tele_arrow] = STATE(1451), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1452), - [aux_sym__application_repeat1] = STATE(1453), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(1782), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1788), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1790), - [anon_sym_forall] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1794), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), - }, - [1452] = { - [sym__application] = STATE(2432), - [sym__expr2] = STATE(1447), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2433), - [sym__atomic_expr_curly] = STATE(2434), - [sym__atomic_expr_no_curly] = STATE(2434), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2435), - [sym_literal] = ACTIONS(2920), - [sym_set_n] = ACTIONS(2920), - [sym_name_at] = ACTIONS(2922), - [sym_qualified_name] = ACTIONS(2920), - [anon_sym__] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2926), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1790), - [anon_sym_forall] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1794), - [anon_sym_QMARK] = ACTIONS(2920), - [anon_sym_Prop] = ACTIONS(2920), - [anon_sym_Set] = ACTIONS(2920), - [anon_sym_quote] = ACTIONS(2920), - [anon_sym_quoteTerm] = ACTIONS(2920), - [anon_sym_unquote] = ACTIONS(2920), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_LPAREN_PIPE] = ACTIONS(2930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2920), + [1887] = { + [sym_expr] = STATE(2895), + [sym__expr1] = STATE(1883), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(1884), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(1887), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1130), + [aux_sym__application_repeat1] = STATE(1888), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2320), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2322), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_forall] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [1453] = { - [sym__expr2] = STATE(2436), - [sym_atomic_expr] = STATE(1449), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), + [1888] = { + [sym__expr2] = STATE(1961), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(1782), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(2888), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2890), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2320), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3385), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1790), - [anon_sym_forall] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1794), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_forall] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [1454] = { - [sym_semi] = STATE(2437), - [aux_sym__declarations1_repeat1] = STATE(2438), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), + [1889] = { + [sym_vclose] = STATE(2897), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(2898), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(3403), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [1455] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), + [1890] = { + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_RPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), }, - [1456] = { + [1891] = { + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + }, + [1892] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2932), + [anon_sym_where] = ACTIONS(3405), }, - [1457] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), + [1893] = { + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), }, - [1458] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), + [1894] = { + [anon_sym_DOT] = ACTIONS(3407), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_RBRACE] = ACTIONS(3409), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3409), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3409), + [anon_sym_EQ] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_RPAREN] = ACTIONS(3409), + [anon_sym_PIPE_RPAREN] = ACTIONS(3409), + [anon_sym_COLON] = ACTIONS(3409), }, - [1459] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), + [1895] = { + [sym_expr] = STATE(681), + [sym__expr1] = STATE(1075), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(1076), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(1077), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1078), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1460] = { - [ts_builtin_sym_end] = ACTIONS(2934), - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), - [anon_sym_rewrite] = ACTIONS(2934), - [anon_sym_with] = ACTIONS(2934), + [1896] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE_RBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), }, - [1461] = { - [sym_expr] = STATE(2440), + [1897] = { + [sym_atomic_expr] = STATE(2900), + [sym__atomic_expr_curly] = STATE(1903), + [sym__atomic_expr_no_curly] = STATE(1903), + [sym_literal] = ACTIONS(2338), + [sym_set_n] = ACTIONS(2338), + [sym_name_at] = ACTIONS(2340), + [sym_qualified_name] = ACTIONS(2338), + [anon_sym__] = ACTIONS(2338), + [anon_sym_DOT] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2344), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2338), + [anon_sym_Prop] = ACTIONS(2338), + [anon_sym_Set] = ACTIONS(2338), + [anon_sym_quote] = ACTIONS(2338), + [anon_sym_quoteTerm] = ACTIONS(2338), + [anon_sym_unquote] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_LPAREN_PIPE] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2338), + }, + [1898] = { + [sym_expr] = STATE(2902), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -64511,6 +81398,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(3411), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -64526,8 +81414,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1462] = { - [sym_expr] = STATE(2441), + [1899] = { + [sym_expr] = STATE(2903), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -64549,6 +81437,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3413), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -64563,8 +81452,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1463] = { - [sym_expr] = STATE(2442), + [1900] = { + [sym_expr] = STATE(2904), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -64597,179 +81486,235 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(3413), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1464] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - }, - [1465] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - }, - [1466] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(757), + [1901] = { + [sym_expr] = STATE(2905), + [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(758), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(759), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(760), - [aux_sym__application_repeat1] = STATE(761), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(974), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1467] = { - [sym_atomic_expr] = STATE(658), - [sym__atomic_expr_curly] = STATE(227), - [sym__atomic_expr_no_curly] = STATE(227), - [sym_literal] = ACTIONS(292), - [sym_set_n] = ACTIONS(292), - [sym_name_at] = ACTIONS(1849), - [sym_qualified_name] = ACTIONS(292), - [anon_sym__] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_LBRACE] = ACTIONS(296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(298), + [1902] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE_RBRACE] = ACTIONS(164), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_Prop] = ACTIONS(292), - [anon_sym_Set] = ACTIONS(292), - [anon_sym_quote] = ACTIONS(292), - [anon_sym_quoteTerm] = ACTIONS(292), - [anon_sym_unquote] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LPAREN_PIPE] = ACTIONS(302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), }, - [1468] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(226), - [sym__atomic_expr_curly] = STATE(227), - [sym__atomic_expr_no_curly] = STATE(227), + [1903] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE_RBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + }, + [1904] = { + [sym__expr2] = STATE(289), + [sym_atomic_expr] = STATE(1902), + [sym__atomic_expr_curly] = STATE(1903), + [sym__atomic_expr_no_curly] = STATE(1903), [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(292), - [sym_set_n] = ACTIONS(292), - [sym_name_at] = ACTIONS(1849), - [sym_qualified_name] = ACTIONS(292), - [anon_sym__] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_LBRACE] = ACTIONS(296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(298), + [sym_literal] = ACTIONS(2338), + [sym_set_n] = ACTIONS(2338), + [sym_name_at] = ACTIONS(2340), + [sym_qualified_name] = ACTIONS(2338), + [anon_sym__] = ACTIONS(2338), + [anon_sym_DOT] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2344), [sym_comment] = ACTIONS(18), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_Prop] = ACTIONS(292), - [anon_sym_Set] = ACTIONS(292), - [anon_sym_quote] = ACTIONS(292), - [anon_sym_quoteTerm] = ACTIONS(292), - [anon_sym_unquote] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LPAREN_PIPE] = ACTIONS(302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(2338), + [anon_sym_Prop] = ACTIONS(2338), + [anon_sym_Set] = ACTIONS(2338), + [anon_sym_quote] = ACTIONS(2338), + [anon_sym_quoteTerm] = ACTIONS(2338), + [anon_sym_unquote] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_LPAREN_PIPE] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2338), + }, + [1905] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE_RBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), }, - [1469] = { - [sym_expr] = STATE(756), - [sym__expr1] = STATE(1476), - [sym__application] = STATE(39), + [1906] = { + [sym_atomic_expr] = STATE(2909), + [sym__atomic_expr_curly] = STATE(1916), + [sym__atomic_expr_no_curly] = STATE(1916), + [sym_literal] = ACTIONS(2350), + [sym_set_n] = ACTIONS(2350), + [sym_name_at] = ACTIONS(2352), + [sym_qualified_name] = ACTIONS(2350), + [anon_sym__] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2352), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3417), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2350), + [anon_sym_Prop] = ACTIONS(2350), + [anon_sym_Set] = ACTIONS(2350), + [anon_sym_quote] = ACTIONS(2350), + [anon_sym_quoteTerm] = ACTIONS(2350), + [anon_sym_unquote] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_LPAREN_PIPE] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2350), + }, + [1907] = { + [sym_atomic_expr] = STATE(2909), + [sym__atomic_expr_curly] = STATE(1916), + [sym__atomic_expr_no_curly] = STATE(1916), + [sym_literal] = ACTIONS(2350), + [sym_set_n] = ACTIONS(2350), + [sym_name_at] = ACTIONS(2352), + [sym_qualified_name] = ACTIONS(2350), + [anon_sym__] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2352), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3423), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2350), + [anon_sym_Prop] = ACTIONS(2350), + [anon_sym_Set] = ACTIONS(2350), + [anon_sym_quote] = ACTIONS(2350), + [anon_sym_quoteTerm] = ACTIONS(2350), + [anon_sym_unquote] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(3425), + [anon_sym_LPAREN_PIPE] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2350), + }, + [1908] = { + [sym_expr] = STATE(2914), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1477), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1478), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1479), - [aux_sym__application_repeat1] = STATE(1480), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), + [sym_name_at] = ACTIONS(208), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(3427), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -64780,100 +81725,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1470] = { - [sym__application] = STATE(789), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [aux_sym__application_repeat1] = STATE(2444), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2936), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - }, - [1471] = { - [sym_semi] = STATE(2445), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2446), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1510), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1510), - }, - [1472] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [1909] = { + [sym_expr] = STATE(2915), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3429), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2936), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1473] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(1476), - [sym__application] = STATE(39), + [1910] = { + [sym_expr] = STATE(2916), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1477), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1478), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1479), - [aux_sym__application_repeat1] = STATE(1480), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), + [sym_name_at] = ACTIONS(268), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -64881,665 +81797,419 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(3429), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1474] = { - [sym_atomic_expr] = STATE(566), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_LBRACE_LBRACE] = ACTIONS(753), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [1475] = { - [sym_atomic_expr] = STATE(566), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_LBRACE_LBRACE] = ACTIONS(759), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(761), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [1476] = { - [anon_sym_SEMI] = ACTIONS(280), - [anon_sym_RBRACE] = ACTIONS(280), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2938), - [anon_sym_COLON] = ACTIONS(280), - }, - [1477] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(162), - }, - [1478] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(1476), + [1911] = { + [sym_expr] = STATE(2917), + [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1477), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1478), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1479), - [aux_sym__application_repeat1] = STATE(1480), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1859), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [1479] = { - [sym__application] = STATE(225), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2083), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2449), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(2940), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(2940), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), - }, - [1480] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_LBRACE_LBRACE] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1481] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2942), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [1912] = { + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), }, - [1482] = { - [sym_lambda_bindings] = STATE(894), - [sym_untyped_bindings] = STATE(1482), - [sym_typed_bindings] = STATE(1482), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_DOT_DOT] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_RBRACE] = ACTIONS(464), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(1153), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_rewrite] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), + [1913] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3431), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), }, - [1483] = { - [sym_expr] = STATE(911), - [sym__expr1] = STATE(2166), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2167), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2168), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(2169), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2676), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [1914] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(162), }, - [1484] = { - [sym_rewrite_equations] = STATE(2453), - [sym_with_expressions] = STATE(406), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [1915] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE_RBRACE] = ACTIONS(164), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(2944), - [anon_sym_with] = ACTIONS(2946), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), }, - [1485] = { - [sym_where_clause] = STATE(410), - [sym_rhs] = STATE(1222), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [1916] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE_RBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1534), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(2948), - [anon_sym_module] = ACTIONS(1536), - [anon_sym_rewrite] = ACTIONS(170), - [anon_sym_with] = ACTIONS(170), - }, - [1486] = { - [sym__expr1] = STATE(1484), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1485), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(2455), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [1487] = { - [sym__expr1] = STATE(1233), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(2460), - [aux_sym__application_repeat1] = STATE(2461), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(2950), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), }, - [1488] = { - [sym__expr1] = STATE(1249), + [1917] = { + [sym_expr] = STATE(2919), + [sym__expr1] = STATE(1913), [sym__application] = STATE(1250), [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(2466), - [aux_sym__application_repeat1] = STATE(2467), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(2958), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), - }, - [1489] = { - [sym_with_expressions] = STATE(1256), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(1863), + [sym__atomic_exprs1] = STATE(1914), + [sym_atomic_expr] = STATE(1915), + [sym__atomic_expr_curly] = STATE(1916), + [sym__atomic_expr_no_curly] = STATE(1916), + [sym_tele_arrow] = STATE(1917), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1254), + [aux_sym__application_repeat1] = STATE(1918), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2350), + [sym_set_n] = ACTIONS(2350), + [sym_name_at] = ACTIONS(2352), + [sym_qualified_name] = ACTIONS(2350), + [anon_sym__] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2354), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2358), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_forall] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(2350), + [anon_sym_Prop] = ACTIONS(2350), + [anon_sym_Set] = ACTIONS(2350), + [anon_sym_quote] = ACTIONS(2350), + [anon_sym_quoteTerm] = ACTIONS(2350), + [anon_sym_unquote] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2350), }, - [1490] = { - [sym_expr] = STATE(2470), - [sym__expr1] = STATE(2471), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2472), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2473), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2466), - [aux_sym__application_repeat1] = STATE(2474), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2966), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [1918] = { + [sym__expr2] = STATE(2095), + [sym_atomic_expr] = STATE(1915), + [sym__atomic_expr_curly] = STATE(1916), + [sym__atomic_expr_no_curly] = STATE(1916), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(2350), + [sym_set_n] = ACTIONS(2350), + [sym_name_at] = ACTIONS(2352), + [sym_qualified_name] = ACTIONS(2350), + [anon_sym__] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2352), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3417), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_forall] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(2350), + [anon_sym_Prop] = ACTIONS(2350), + [anon_sym_Set] = ACTIONS(2350), + [anon_sym_quote] = ACTIONS(2350), + [anon_sym_quoteTerm] = ACTIONS(2350), + [anon_sym_unquote] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_LPAREN_PIPE] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2350), }, - [1491] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [1919] = { + [sym_vclose] = STATE(2921), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(771), - [sym__declaration] = STATE(2475), - [sym_function_clause] = STATE(773), - [sym__declarations1] = STATE(2476), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(2922), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(3435), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [1492] = { - [sym_anonymous_name] = STATE(2477), - [sym_name] = ACTIONS(2970), - [anon_sym__] = ACTIONS(676), + [1920] = { + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1284), [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), }, - [1493] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), + [1921] = { + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), }, - [1494] = { - [sym_where_clause] = STATE(2478), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(1867), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(1869), + [1922] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(3437), }, - [1495] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(771), - [sym__declaration] = STATE(772), - [sym_function_clause] = STATE(773), - [aux_sym_source_file_repeat1] = STATE(1495), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(2972), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2975), - [anon_sym_forall] = ACTIONS(2978), - [anon_sym_let] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), + [1923] = { + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + }, + [1924] = { + [anon_sym_RBRACE] = ACTIONS(3439), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3439), + [anon_sym_RPAREN] = ACTIONS(3439), + [anon_sym_PIPE_RPAREN] = ACTIONS(3439), + [anon_sym_COLON] = ACTIONS(3439), + }, + [1925] = { + [anon_sym_RBRACE] = ACTIONS(3441), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3441), + [anon_sym_RPAREN] = ACTIONS(3441), + [anon_sym_PIPE_RPAREN] = ACTIONS(3441), + [anon_sym_COLON] = ACTIONS(3441), + }, + [1926] = { + [sym_expr] = STATE(2516), + [sym__expr1] = STATE(1092), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(1093), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(1094), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(1095), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1366), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(262), + [anon_sym_forall] = ACTIONS(264), + [anon_sym_let] = ACTIONS(266), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), }, - [1496] = { + [1927] = { + [ts_builtin_sym_end] = ACTIONS(186), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), [sym_name_at] = ACTIONS(186), [sym_qualified_name] = ACTIONS(186), [anon_sym__] = ACTIONS(186), @@ -65548,10 +82218,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), [anon_sym_Prop] = ACTIONS(186), [anon_sym_Set] = ACTIONS(186), @@ -65559,13 +82232,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(186), [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_RPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [1497] = { + [1928] = { + [ts_builtin_sym_end] = ACTIONS(228), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), [sym_name_at] = ACTIONS(228), [sym_qualified_name] = ACTIONS(228), [anon_sym__] = ACTIONS(228), @@ -65574,10 +82251,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), [anon_sym_Prop] = ACTIONS(228), [anon_sym_Set] = ACTIONS(228), @@ -65585,211 +82265,243 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(228), [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [1498] = { - [anon_sym_RBRACE] = ACTIONS(2984), + [1929] = { + [anon_sym_RBRACE] = ACTIONS(3443), [sym_comment] = ACTIONS(86), }, - [1499] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2986), + [1930] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3445), [sym_comment] = ACTIONS(86), }, - [1500] = { - [anon_sym_SEMI] = ACTIONS(2988), - [anon_sym_RBRACE] = ACTIONS(2988), + [1931] = { + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3449), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_RPAREN] = ACTIONS(2988), - [anon_sym_PIPE_RPAREN] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(3451), }, - [1501] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(790), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(2483), - [sym_lambda_where_clauses] = STATE(626), - [aux_sym__application_repeat1] = STATE(2484), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(988), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_BSLASH] = ACTIONS(996), - [anon_sym_forall] = ACTIONS(998), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), - [sym_catchall_pragma] = ACTIONS(2992), + [1932] = { + [sym__application] = STATE(2930), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(2931), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(3453), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [1502] = { - [anon_sym_SEMI] = ACTIONS(819), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(2994), + [1933] = { + [sym__application] = STATE(2932), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3453), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1503] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(1503), - [sym_typed_bindings] = STATE(1503), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [1934] = { + [sym_vopen] = STATE(2933), + [sym__layout_open_brace] = ACTIONS(426), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), }, - [1504] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(2491), - [sym__application] = STATE(39), + [1935] = { + [sym_binding_name] = STATE(2934), + [sym__application] = STATE(2935), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2492), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(2493), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2494), - [aux_sym__application_repeat1] = STATE(2495), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [1505] = { - [sym_atomic_expr] = STATE(388), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(3453), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1506] = { - [sym_lambda_bindings] = STATE(2496), - [sym_untyped_bindings] = STATE(2497), - [sym_typed_bindings] = STATE(2497), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACE_LBRACE] = ACTIONS(530), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(534), + [1936] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3455), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [1507] = { - [sym_forall_bindings] = STATE(2498), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [1937] = { + [sym_lambda_bindings] = STATE(2929), + [sym_untyped_bindings] = STATE(1937), + [sym_typed_bindings] = STATE(1937), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DOT_DOT] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3461), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), }, - [1508] = { - [sym__expr1] = STATE(2499), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2500), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(2501), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [1938] = { + [sym_expr] = STATE(2940), + [sym__expr1] = STATE(2941), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(2942), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(2943), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1114), + [aux_sym__application_repeat1] = STATE(2944), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3465), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_forall] = ACTIONS(1380), + [anon_sym_let] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), }, - [1509] = { - [sym_rewrite_equations] = STATE(2504), - [sym_with_expressions] = STATE(643), + [1939] = { + [sym_rewrite_equations] = STATE(1748), + [sym_with_expressions] = STATE(1749), [sym_literal] = ACTIONS(152), [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), [sym_name_at] = ACTIONS(152), [sym_qualified_name] = ACTIONS(152), [anon_sym__] = ACTIONS(152), [anon_sym_DOT] = ACTIONS(152), [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_RBRACE] = ACTIONS(152), [anon_sym_LBRACE_LBRACE] = ACTIONS(152), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(152), @@ -65809,536 +82521,519 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(152), [anon_sym_COLON] = ACTIONS(152), [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(3006), - [anon_sym_with] = ACTIONS(3008), - }, - [1510] = { - [sym_where_clause] = STATE(2508), - [sym_rhs] = STATE(2509), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3010), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3014), - }, - [1511] = { - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_RBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_in] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - }, - [1512] = { - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_RBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_in] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_rewrite] = ACTIONS(765), + [anon_sym_with] = ACTIONS(152), }, - [1513] = { - [sym__expr1] = STATE(1509), + [1940] = { + [sym__expr1] = STATE(1939), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1510), - [sym__declaration] = STATE(1511), - [sym_function_clause] = STATE(1512), - [aux_sym_source_file_repeat1] = STATE(2510), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(3016), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [sym_lhs] = STATE(953), + [sym__declaration] = STATE(954), + [sym_function_clause] = STATE(955), + [aux_sym_source_file_repeat1] = STATE(2947), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [1514] = { - [sym__application] = STATE(413), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [1941] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3445), + }, + [1942] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(3445), + }, + [1943] = { + [ts_builtin_sym_end] = ACTIONS(673), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_RBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_with] = ACTIONS(673), + }, + [1944] = { + [ts_builtin_sym_end] = ACTIONS(693), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_RPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), + [anon_sym_with] = ACTIONS(693), + }, + [1945] = { + [ts_builtin_sym_end] = ACTIONS(186), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_RPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [1515] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [1946] = { + [ts_builtin_sym_end] = ACTIONS(228), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [1516] = { + [1947] = { + [anon_sym_RBRACE] = ACTIONS(3469), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(2986), }, - [1517] = { + [1948] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3471), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(2986), }, - [1518] = { - [sym_expr] = STATE(2511), - [sym__expr1] = STATE(757), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(758), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(759), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(760), - [aux_sym__application_repeat1] = STATE(761), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [1949] = { + [anon_sym_LBRACE] = ACTIONS(3473), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3475), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(3477), + }, + [1950] = { + [sym__application] = STATE(2954), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(2955), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(3479), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [1519] = { - [anon_sym_RBRACE] = ACTIONS(3018), + [1951] = { + [sym__application] = STATE(2956), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3479), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [1952] = { + [sym_vopen] = STATE(2957), + [sym__layout_open_brace] = ACTIONS(426), [sym_comment] = ACTIONS(86), }, - [1520] = { - [sym_atomic_expr] = STATE(1496), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(1895), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), + [1953] = { + [sym_binding_name] = STATE(2958), + [sym__application] = STATE(2959), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(3479), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [1954] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3481), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [1521] = { - [sym_lambda_bindings] = STATE(2514), - [sym_untyped_bindings] = STATE(2515), - [sym_typed_bindings] = STATE(2515), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(258), + [1955] = { + [sym_lambda_bindings] = STATE(2953), + [sym_untyped_bindings] = STATE(1955), + [sym_typed_bindings] = STATE(1955), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_DOT_DOT] = ACTIONS(3483), + [anon_sym_LBRACE] = ACTIONS(3485), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3487), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(3489), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), }, - [1522] = { - [sym_forall_bindings] = STATE(2516), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [1956] = { + [sym_expr] = STATE(2962), + [sym__expr1] = STATE(1883), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(1884), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(1887), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1130), + [aux_sym__application_repeat1] = STATE(1888), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2320), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2322), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_forall] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [1523] = { - [sym__expr1] = STATE(770), + [1957] = { + [sym__expr1] = STATE(200), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2517), - [sym__declaration] = STATE(1511), - [sym_function_clause] = STATE(1512), - [aux_sym_source_file_repeat1] = STATE(2518), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [1524] = { - [sym__application] = STATE(789), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(790), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [aux_sym__application_repeat1] = STATE(2519), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(1895), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(994), - [anon_sym_BSLASH] = ACTIONS(1897), - [anon_sym_forall] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), + [sym_lhs] = STATE(974), + [sym__declaration] = STATE(975), + [sym_function_clause] = STATE(976), + [aux_sym_source_file_repeat1] = STATE(2963), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [1525] = { - [anon_sym_SEMI] = ACTIONS(3022), - [anon_sym_RBRACE] = ACTIONS(3022), + [1958] = { [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3471), }, - [1526] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(790), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(1895), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(994), - [anon_sym_BSLASH] = ACTIONS(1897), - [anon_sym_forall] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), - }, - [1527] = { - [sym_atomic_expr] = STATE(1496), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(3024), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), - }, - [1528] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - }, - [1529] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - }, - [1530] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), + [1959] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(3471), }, - [1531] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), + [1960] = { + [ts_builtin_sym_end] = ACTIONS(673), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_RBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), }, - [1532] = { - [sym_atomic_expr] = STATE(2520), - [sym__atomic_expr_curly] = STATE(1543), - [sym__atomic_expr_no_curly] = STATE(1543), - [sym_literal] = ACTIONS(1929), - [sym_set_n] = ACTIONS(1929), - [sym_name_at] = ACTIONS(1931), - [sym_qualified_name] = ACTIONS(1929), - [anon_sym__] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1935), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1929), - [anon_sym_Prop] = ACTIONS(1929), - [anon_sym_Set] = ACTIONS(1929), - [anon_sym_quote] = ACTIONS(1929), - [anon_sym_quoteTerm] = ACTIONS(1929), - [anon_sym_unquote] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_LPAREN_PIPE] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1929), + [1961] = { + [ts_builtin_sym_end] = ACTIONS(693), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_RPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), }, - [1533] = { - [sym_expr] = STATE(2522), + [1962] = { + [sym_expr] = STATE(1970), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -66359,7 +83054,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_RBRACE] = ACTIONS(2418), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -66375,8 +83070,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1534] = { - [sym_expr] = STATE(2523), + [1963] = { + [sym_expr] = STATE(1971), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -66398,7 +83093,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3028), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2420), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -66413,106 +83108,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1535] = { - [sym_expr] = STATE(1322), - [sym__expr1] = STATE(2524), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(2525), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(2526), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2114), - [aux_sym__application_repeat1] = STATE(2115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2624), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), - }, - [1536] = { - [sym_lambda_bindings] = STATE(2527), - [sym_untyped_bindings] = STATE(2528), - [sym_typed_bindings] = STATE(2528), - [anon_sym_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LBRACE_LBRACE] = ACTIONS(338), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(342), - }, - [1537] = { - [sym_forall_bindings] = STATE(2529), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [1538] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2530), - [sym__declaration] = STATE(808), - [sym_function_clause] = STATE(809), - [aux_sym_source_file_repeat1] = STATE(2531), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [1539] = { - [sym_expr] = STATE(2532), + [1964] = { + [sym_expr] = STATE(1982), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -66545,180 +83142,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3028), + [anon_sym_RPAREN] = ACTIONS(2420), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1540] = { - [sym_expr] = STATE(2533), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), + [1965] = { + [ts_builtin_sym_end] = ACTIONS(186), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_RPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + }, + [1966] = { + [sym_expr] = STATE(1970), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [1541] = { - [sym__application] = STATE(1343), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(1542), - [sym__atomic_expr_curly] = STATE(1543), - [sym__atomic_expr_no_curly] = STATE(1543), - [aux_sym__application_repeat1] = STATE(2535), - [sym_literal] = ACTIONS(1929), - [sym_set_n] = ACTIONS(1929), - [sym_name_at] = ACTIONS(1931), - [sym_qualified_name] = ACTIONS(1929), - [anon_sym__] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1935), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3030), - [anon_sym_BSLASH] = ACTIONS(1939), - [anon_sym_forall] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1943), - [anon_sym_QMARK] = ACTIONS(1929), - [anon_sym_Prop] = ACTIONS(1929), - [anon_sym_Set] = ACTIONS(1929), - [anon_sym_quote] = ACTIONS(1929), - [anon_sym_quoteTerm] = ACTIONS(1929), - [anon_sym_unquote] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_LPAREN_PIPE] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1929), - }, - [1542] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - }, - [1543] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - }, - [1544] = { - [sym_semi] = STATE(2536), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2537), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1510), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1510), - }, - [1545] = { - [sym__expr2] = STATE(289), - [sym_atomic_expr] = STATE(1542), - [sym__atomic_expr_curly] = STATE(1543), - [sym__atomic_expr_no_curly] = STATE(1543), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1929), - [sym_set_n] = ACTIONS(1929), - [sym_name_at] = ACTIONS(1931), - [sym_qualified_name] = ACTIONS(1929), - [anon_sym__] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1935), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3030), - [anon_sym_BSLASH] = ACTIONS(1939), - [anon_sym_forall] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1943), - [anon_sym_QMARK] = ACTIONS(1929), - [anon_sym_Prop] = ACTIONS(1929), - [anon_sym_Set] = ACTIONS(1929), - [anon_sym_quote] = ACTIONS(1929), - [anon_sym_quoteTerm] = ACTIONS(1929), - [anon_sym_unquote] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_LPAREN_PIPE] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1929), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1546] = { - [sym_expr] = STATE(1314), - [sym__expr1] = STATE(1547), - [sym__application] = STATE(61), + [1967] = { + [sym_expr] = STATE(1971), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(1548), + [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), [sym__atomic_expr_curly] = STATE(187), [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(1549), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1176), + [aux_sym__expr1_repeat1] = STATE(67), [aux_sym__application_repeat1] = STATE(188), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(230), @@ -66730,6 +83239,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2420), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -66744,238 +83254,440 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1547] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(280), + [1968] = { + [sym_expr] = STATE(1982), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(2420), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [1969] = { + [ts_builtin_sym_end] = ACTIONS(228), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + }, + [1970] = { + [anon_sym_RBRACE] = ACTIONS(3491), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3032), - [anon_sym_COLON] = ACTIONS(280), }, - [1548] = { + [1971] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3493), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3032), - [anon_sym_PIPE] = ACTIONS(162), }, - [1549] = { - [sym_expr] = STATE(278), - [sym__expr1] = STATE(1547), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(1548), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(1549), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1176), - [aux_sym__application_repeat1] = STATE(188), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [1972] = { + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3497), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(3499), + }, + [1973] = { + [sym__application] = STATE(2970), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(2971), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(3501), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), + }, + [1974] = { + [sym__application] = STATE(2972), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3501), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1550] = { - [sym_expr] = STATE(2539), - [sym__expr1] = STATE(2540), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(2541), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(2542), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1431), - [aux_sym__application_repeat1] = STATE(2150), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(2644), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2646), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1770), - [anon_sym_forall] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [1975] = { + [sym_vopen] = STATE(2973), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), }, - [1551] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2530), - [sym__declaration] = STATE(2543), - [sym_function_clause] = STATE(809), - [sym__declarations1] = STATE(2544), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(670), + [1976] = { + [sym_binding_name] = STATE(2974), + [sym__application] = STATE(2975), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(670), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(3501), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1552] = { - [sym_anonymous_name] = STATE(2545), - [sym_name] = ACTIONS(3034), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), + [1977] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [1553] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE_RBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), + [1978] = { + [sym_lambda_bindings] = STATE(2969), + [sym_untyped_bindings] = STATE(1978), + [sym_typed_bindings] = STATE(1978), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3509), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(3511), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), }, - [1554] = { - [sym_where_clause] = STATE(2546), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE_RBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(1955), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(1957), + [1979] = { + [sym_expr] = STATE(2978), + [sym__expr1] = STATE(1144), + [sym__application] = STATE(1145), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(1147), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_tele_arrow] = STATE(1150), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1151), + [aux_sym__application_repeat1] = STATE(1152), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1408), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_forall] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), }, - [1555] = { - [sym__expr1] = STATE(263), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), + [1980] = { + [sym_where_clause] = STATE(1813), + [sym_rhs] = STATE(1814), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(170), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(771), + [anon_sym_module] = ACTIONS(170), + }, + [1981] = { + [sym__expr1] = STATE(200), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(807), - [sym__declaration] = STATE(808), - [sym_function_clause] = STATE(809), - [aux_sym_source_file_repeat1] = STATE(1555), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(1802), - [sym_set_n] = ACTIONS(1802), - [sym_name_at] = ACTIONS(1805), - [sym_qualified_name] = ACTIONS(1802), - [anon_sym__] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE_RBRACE] = ACTIONS(680), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1814), - [anon_sym_forall] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1802), - [anon_sym_Prop] = ACTIONS(1802), - [anon_sym_Set] = ACTIONS(1802), - [anon_sym_quote] = ACTIONS(1802), - [anon_sym_quoteTerm] = ACTIONS(1802), - [anon_sym_unquote] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LPAREN_PIPE] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON] = ACTIONS(680), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(1980), + [sym__declaration] = STATE(1001), + [sym_function_clause] = STATE(1002), + [aux_sym_source_file_repeat1] = STATE(2979), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [1556] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3018), + [1982] = { [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3493), }, - [1557] = { + [1983] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(3493), + }, + [1984] = { + [sym_expr] = STATE(2980), + [sym__expr1] = STATE(1144), + [sym__application] = STATE(1145), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(1147), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_tele_arrow] = STATE(1150), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1151), + [aux_sym__application_repeat1] = STATE(1152), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1408), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_forall] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), + }, + [1985] = { + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_RPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + }, + [1986] = { + [ts_builtin_sym_end] = ACTIONS(30), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [sym_name_at] = ACTIONS(30), @@ -66983,11 +83695,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), [anon_sym_Prop] = ACTIONS(30), [anon_sym_Set] = ACTIONS(30), @@ -66995,34 +83712,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(30), [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_RPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), }, - [1558] = { - [sym_atomic_expr] = STATE(2547), - [sym__atomic_expr_curly] = STATE(1564), - [sym__atomic_expr_no_curly] = STATE(1564), - [sym_literal] = ACTIONS(3036), - [sym_set_n] = ACTIONS(3036), - [sym_name_at] = ACTIONS(3038), - [sym_qualified_name] = ACTIONS(3036), - [anon_sym__] = ACTIONS(3036), - [anon_sym_DOT] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3042), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3036), - [anon_sym_Prop] = ACTIONS(3036), - [anon_sym_Set] = ACTIONS(3036), - [anon_sym_quote] = ACTIONS(3036), - [anon_sym_quoteTerm] = ACTIONS(3036), - [anon_sym_unquote] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_LPAREN_PIPE] = ACTIONS(3046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3036), + [1987] = { + [sym_atomic_expr] = STATE(2981), + [sym__atomic_expr_curly] = STATE(1994), + [sym__atomic_expr_no_curly] = STATE(1994), + [sym_literal] = ACTIONS(2438), + [sym_set_n] = ACTIONS(2438), + [sym_name_at] = ACTIONS(2440), + [sym_qualified_name] = ACTIONS(2438), + [anon_sym__] = ACTIONS(2438), + [anon_sym_DOT] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2444), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2438), + [anon_sym_Prop] = ACTIONS(2438), + [anon_sym_Set] = ACTIONS(2438), + [anon_sym_quote] = ACTIONS(2438), + [anon_sym_quoteTerm] = ACTIONS(2438), + [anon_sym_unquote] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_LPAREN_PIPE] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2438), }, - [1559] = { - [sym_expr] = STATE(2549), + [1988] = { + [sym_expr] = STATE(2983), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -67043,7 +83762,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3048), + [anon_sym_RBRACE] = ACTIONS(3513), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -67059,8 +83778,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1560] = { - [sym_expr] = STATE(2550), + [1989] = { + [sym_expr] = STATE(2984), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -67082,7 +83801,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3050), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3515), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -67097,8 +83816,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1561] = { - [sym_expr] = STATE(2551), + [1990] = { + [sym_expr] = STATE(2985), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -67131,12 +83850,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_RPAREN] = ACTIONS(3515), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1562] = { - [sym_expr] = STATE(2552), + [1991] = { + [sym_expr] = STATE(2986), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -67172,7 +83891,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1563] = { + [1992] = { + [ts_builtin_sym_end] = ACTIONS(673), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_RBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + }, + [1993] = { + [ts_builtin_sym_end] = ACTIONS(164), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [sym_name_at] = ACTIONS(166), @@ -67180,11 +83930,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -67192,10 +83947,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(166), [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(164), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_module] = ACTIONS(164), }, - [1564] = { + [1994] = { + [ts_builtin_sym_end] = ACTIONS(168), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [sym_name_at] = ACTIONS(168), @@ -67203,990 +83961,180 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - }, - [1565] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_rewrite] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), - }, - [1566] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_rewrite] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), - }, - [1567] = { - [sym_expr] = STATE(1628), - [sym__expr1] = STATE(822), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(823), - [sym_atomic_expr] = STATE(382), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [sym_tele_arrow] = STATE(824), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(535), - [aux_sym__application_repeat1] = STATE(825), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(1030), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(1032), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(506), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), - }, - [1568] = { - [sym_expr] = STATE(797), - [sym__expr1] = STATE(822), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(823), - [sym_atomic_expr] = STATE(382), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [sym_tele_arrow] = STATE(824), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(535), - [aux_sym__application_repeat1] = STATE(825), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(1030), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(1032), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(506), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), - }, - [1569] = { - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [1570] = { - [sym_lambda_bindings] = STATE(894), - [sym_untyped_bindings] = STATE(1570), - [sym_typed_bindings] = STATE(1570), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_DOT_DOT] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(1153), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_rewrite] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), - }, - [1571] = { - [sym_expr] = STATE(911), - [sym__expr1] = STATE(1644), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1645), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1646), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(1647), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2075), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1572] = { - [sym__expr1] = STATE(833), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(834), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(1577), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [1573] = { - [sym__expr1] = STATE(930), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [1574] = { - [sym__expr1] = STATE(931), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [1575] = { - [sym_with_expressions] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(646), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_rewrite] = ACTIONS(646), - [anon_sym_with] = ACTIONS(1993), - }, - [1576] = { - [sym_expr] = STATE(933), - [sym__expr1] = STATE(1644), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1645), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1646), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(1647), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2075), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1577] = { - [sym__expr1] = STATE(833), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(834), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(1577), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(680), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(3054), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(3057), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_rewrite] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), - }, - [1578] = { - [ts_builtin_sym_end] = ACTIONS(3066), - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_rewrite] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), - }, - [1579] = { - [sym_expr] = STATE(2554), - [sym__expr1] = STATE(822), - [sym__application] = STATE(13), - [sym__expr2] = STATE(14), - [sym__atomic_exprs1] = STATE(823), - [sym_atomic_expr] = STATE(382), - [sym__atomic_expr_curly] = STATE(383), - [sym__atomic_expr_no_curly] = STATE(383), - [sym_tele_arrow] = STATE(824), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(535), - [aux_sym__application_repeat1] = STATE(825), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(498), - [sym_set_n] = ACTIONS(498), - [sym_name_at] = ACTIONS(1030), - [sym_qualified_name] = ACTIONS(498), - [anon_sym__] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(1032), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(506), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_forall] = ACTIONS(438), - [anon_sym_let] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_Prop] = ACTIONS(498), - [anon_sym_Set] = ACTIONS(498), - [anon_sym_quote] = ACTIONS(498), - [anon_sym_quoteTerm] = ACTIONS(498), - [anon_sym_unquote] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_LPAREN_PIPE] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), - }, - [1580] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_rewrite] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - }, - [1581] = { - [sym_semi] = STATE(843), - [aux_sym_lambda_where_clauses_repeat1] = STATE(1581), - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_rewrite] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - }, - [1582] = { - [sym_atomic_expr] = STATE(750), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(2003), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - }, - [1583] = { - [sym_expr] = STATE(756), - [sym__expr1] = STATE(2560), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2561), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2562), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2563), - [aux_sym__application_repeat1] = STATE(2564), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [1584] = { - [sym_lambda_bindings] = STATE(2565), - [sym_untyped_bindings] = STATE(2566), - [sym_typed_bindings] = STATE(2566), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(258), - }, - [1585] = { - [sym_forall_bindings] = STATE(2567), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [1586] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2568), - [sym__declaration] = STATE(772), - [sym_function_clause] = STATE(773), - [aux_sym_source_file_repeat1] = STATE(2569), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [1587] = { - [sym__application] = STATE(789), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [aux_sym__application_repeat1] = STATE(2571), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(2003), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3083), - [anon_sym_BSLASH] = ACTIONS(2007), - [anon_sym_forall] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - }, - [1588] = { - [sym_semi] = STATE(2572), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2573), - [anon_sym_SEMI] = ACTIONS(1014), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1510), - }, - [1589] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(2003), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3083), - [anon_sym_BSLASH] = ACTIONS(2007), - [anon_sym_forall] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - }, - [1590] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(1596), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1597), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1598), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1599), - [aux_sym__application_repeat1] = STATE(1600), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2017), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2021), - [anon_sym_forall] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [1591] = { - [sym_atomic_expr] = STATE(566), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2017), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_LBRACE_LBRACE] = ACTIONS(753), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), }, - [1592] = { - [sym_atomic_expr] = STATE(566), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2017), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_LBRACE_LBRACE] = ACTIONS(759), + [1995] = { + [sym__expr2] = STATE(1996), + [sym_atomic_expr] = STATE(1993), + [sym__atomic_expr_curly] = STATE(1994), + [sym__atomic_expr_no_curly] = STATE(1994), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(2438), + [sym_set_n] = ACTIONS(2438), + [sym_name_at] = ACTIONS(2440), + [sym_qualified_name] = ACTIONS(2438), + [anon_sym__] = ACTIONS(2438), + [anon_sym_DOT] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2444), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(761), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_forall] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(2438), + [anon_sym_Prop] = ACTIONS(2438), + [anon_sym_Set] = ACTIONS(2438), + [anon_sym_quote] = ACTIONS(2438), + [anon_sym_quoteTerm] = ACTIONS(2438), + [anon_sym_unquote] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_LPAREN_PIPE] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2438), }, - [1593] = { - [sym_lambda_bindings] = STATE(2575), - [sym_untyped_bindings] = STATE(2576), - [sym_typed_bindings] = STATE(2576), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(258), + [1996] = { + [ts_builtin_sym_end] = ACTIONS(693), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_RPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), }, - [1594] = { - [sym_forall_bindings] = STATE(2577), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [1997] = { + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_RPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), }, - [1595] = { - [sym__expr1] = STATE(853), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2578), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(2579), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1060), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [1998] = { + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_RPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), }, - [1596] = { + [1999] = { + [sym_vclose] = STATE(2987), + [sym__layout_close_brace] = ACTIONS(2450), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3087), - [anon_sym_COLON] = ACTIONS(280), }, - [1597] = { + [2000] = { + [sym_vopen] = STATE(1153), + [sym_declarations] = STATE(1154), + [sym__declarations0] = STATE(2988), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(162), }, - [1598] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(1596), + [2001] = { + [sym_expr] = STATE(615), + [sym__expr1] = STATE(1159), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1597), + [sym__atomic_exprs1] = STATE(1160), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1598), + [sym_tele_arrow] = STATE(1161), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1599), - [aux_sym__application_repeat1] = STATE(1600), + [aux_sym__expr1_repeat1] = STATE(1162), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2017), + [sym_name_at] = ACTIONS(268), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2021), - [anon_sym_forall] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2025), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -68197,938 +84145,455 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1599] = { - [sym__application] = STATE(225), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2083), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2582), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(3089), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2021), - [anon_sym_forall] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [2002] = { + [sym_atomic_expr] = STATE(2876), + [sym__atomic_expr_curly] = STATE(1873), + [sym__atomic_expr_no_curly] = STATE(1873), + [sym_literal] = ACTIONS(2306), + [sym_set_n] = ACTIONS(2306), + [sym_name_at] = ACTIONS(2456), + [sym_qualified_name] = ACTIONS(2306), + [anon_sym__] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2312), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2306), + [anon_sym_Prop] = ACTIONS(2306), + [anon_sym_Set] = ACTIONS(2306), + [anon_sym_quote] = ACTIONS(2306), + [anon_sym_quoteTerm] = ACTIONS(2306), + [anon_sym_unquote] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_LPAREN_PIPE] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), }, - [1600] = { + [2003] = { [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2017), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_LBRACE_LBRACE] = ACTIONS(753), + [sym_atomic_expr] = STATE(1872), + [sym__atomic_expr_curly] = STATE(1873), + [sym__atomic_expr_no_curly] = STATE(1873), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(2306), + [sym_set_n] = ACTIONS(2306), + [sym_name_at] = ACTIONS(2456), + [sym_qualified_name] = ACTIONS(2306), + [anon_sym__] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2312), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2021), - [anon_sym_forall] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [1601] = { - [sym__application] = STATE(906), - [sym__expr2] = STATE(95), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [sym_non_absurd_lambda_clause] = STATE(909), - [sym_absurd_lambda_clause] = STATE(909), - [sym_lambda_clause] = STATE(2586), - [sym_lambda_where_clauses] = STATE(911), - [aux_sym__application_repeat1] = STATE(2587), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(3091), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3093), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [sym_catchall_pragma] = ACTIONS(3095), - }, - [1602] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3097), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [1603] = { - [sym_lambda_bindings] = STATE(894), - [sym_untyped_bindings] = STATE(1603), - [sym_typed_bindings] = STATE(1603), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_DOT_DOT] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(1153), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_rewrite] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), - }, - [1604] = { - [sym_expr] = STATE(911), - [sym__expr1] = STATE(2591), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2592), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2593), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(2594), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3099), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1605] = { - [sym_rewrite_equations] = STATE(2597), - [sym_with_expressions] = STATE(406), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(3103), - [anon_sym_with] = ACTIONS(3105), - }, - [1606] = { - [sym_where_clause] = STATE(410), - [sym_rhs] = STATE(2601), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3107), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(3107), - [anon_sym_module] = ACTIONS(3111), - [anon_sym_rewrite] = ACTIONS(170), - [anon_sym_with] = ACTIONS(170), - }, - [1607] = { - [sym__expr1] = STATE(1605), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1606), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(2602), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(2306), + [anon_sym_Prop] = ACTIONS(2306), + [anon_sym_Set] = ACTIONS(2306), + [anon_sym_quote] = ACTIONS(2306), + [anon_sym_quoteTerm] = ACTIONS(2306), + [anon_sym_unquote] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_LPAREN_PIPE] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), }, - [1608] = { - [sym__expr1] = STATE(1233), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(2607), - [aux_sym__application_repeat1] = STATE(2608), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(3113), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3115), - [anon_sym_forall] = ACTIONS(3117), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [2004] = { + [sym_atomic_expr] = STATE(2885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2458), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3385), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [1609] = { - [sym__expr1] = STATE(1249), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(2613), - [aux_sym__application_repeat1] = STATE(2614), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(3121), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3123), - [anon_sym_forall] = ACTIONS(3125), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [2005] = { + [sym_atomic_expr] = STATE(2885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2458), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3391), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [1610] = { - [sym_with_expressions] = STATE(1256), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(2031), + [2006] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3517), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), }, - [1611] = { - [sym_expr] = STATE(2470), - [sym__expr1] = STATE(2617), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2618), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2619), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2613), - [aux_sym__application_repeat1] = STATE(2620), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3129), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3123), - [anon_sym_forall] = ACTIONS(3125), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [2007] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3519), + [anon_sym_PIPE] = ACTIONS(162), }, - [1612] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2568), - [sym__declaration] = STATE(2621), - [sym_function_clause] = STATE(773), - [sym__declarations1] = STATE(2476), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), + [2008] = { + [sym_expr] = STATE(2895), + [sym__expr1] = STATE(2006), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2007), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2008), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1607), + [aux_sym__application_repeat1] = STATE(2009), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2458), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2460), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1985), + [anon_sym_forall] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [1613] = { - [sym_anonymous_name] = STATE(2622), - [sym_name] = ACTIONS(3133), - [anon_sym__] = ACTIONS(676), + [2009] = { + [sym__expr2] = STATE(1961), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2458), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3385), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1985), + [anon_sym_forall] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [1614] = { - [sym_where_clause] = STATE(2478), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(2035), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(2037), + [2010] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), }, - [1615] = { - [sym__expr1] = STATE(853), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(854), - [sym__declaration] = STATE(772), - [sym_function_clause] = STATE(773), - [aux_sym_source_file_repeat1] = STATE(1615), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(3135), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3138), - [anon_sym_forall] = ACTIONS(3141), - [anon_sym_let] = ACTIONS(3144), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), + [2011] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), }, - [1616] = { + [2012] = { + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_DOT_DOT] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3011), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3011), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3018), - }, - [1617] = { - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3147), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_RPAREN] = ACTIONS(3147), - [anon_sym_PIPE_RPAREN] = ACTIONS(3147), - [anon_sym_COLON] = ACTIONS(3147), - }, - [1618] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), + [anon_sym_DASH_GT] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3011), }, - [1619] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - }, - [1620] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(1621), + [2013] = { + [sym_expr] = STATE(2990), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1622), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1623), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1147), - [aux_sym__application_repeat1] = STATE(173), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [1621] = { - [anon_sym_RBRACE] = ACTIONS(280), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3151), - [anon_sym_COLON] = ACTIONS(280), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1622] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(162), + [2014] = { + [sym_expr] = STATE(2991), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1623] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(1621), + [2015] = { + [sym_expr] = STATE(2992), + [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1622), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1623), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1147), - [aux_sym__application_repeat1] = STATE(173), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1624] = { - [sym_expr] = STATE(2470), - [sym__expr1] = STATE(2624), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2625), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2626), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1254), - [aux_sym__application_repeat1] = STATE(2099), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2602), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2604), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1564), - [anon_sym_forall] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [2016] = { + [anon_sym_RBRACE] = ACTIONS(3521), + [sym_comment] = ACTIONS(86), }, - [1625] = { - [sym__expr1] = STATE(200), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(870), - [sym__declaration] = STATE(772), - [sym_function_clause] = STATE(773), - [aux_sym_source_file_repeat1] = STATE(1625), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(1596), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1599), - [anon_sym_forall] = ACTIONS(1602), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), + [2017] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3521), + [sym_comment] = ACTIONS(86), }, - [1626] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_rewrite] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), + [2018] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3439), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3439), + [anon_sym_COLON] = ACTIONS(3439), }, - [1627] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_rewrite] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), + [2019] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3441), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3441), + [anon_sym_COLON] = ACTIONS(3441), }, - [1628] = { - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), - [anon_sym_rewrite] = ACTIONS(3153), - [anon_sym_with] = ACTIONS(3153), + [2020] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3521), }, - [1629] = { - [anon_sym_RBRACE] = ACTIONS(3155), + [2021] = { + [anon_sym_RBRACE] = ACTIONS(3523), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3157), + [anon_sym_COLON] = ACTIONS(3525), }, - [1630] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3155), + [2022] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3523), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3159), + [anon_sym_COLON] = ACTIONS(3527), }, - [1631] = { + [2023] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3155), + [anon_sym_RPAREN] = ACTIONS(3523), }, - [1632] = { + [2024] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3161), + [anon_sym_COLON] = ACTIONS(3529), }, - [1633] = { - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_rewrite] = ACTIONS(1891), - [anon_sym_with] = ACTIONS(1891), + [2025] = { + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_rewrite] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), }, - [1634] = { - [sym_expr] = STATE(2631), + [2026] = { + [sym_expr] = STATE(2998), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -69164,42 +84629,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1635] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_RPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_COLON] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_rewrite] = ACTIONS(1905), - [anon_sym_with] = ACTIONS(1905), + [2027] = { + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_rewrite] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), }, - [1636] = { - [sym_expr] = STATE(2632), + [2028] = { + [sym_expr] = STATE(2999), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -69235,446 +84697,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1637] = { - [ts_builtin_sym_end] = ACTIONS(186), - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_rewrite] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), - }, - [1638] = { - [ts_builtin_sym_end] = ACTIONS(228), - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_rewrite] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), - }, - [1639] = { - [anon_sym_RBRACE] = ACTIONS(3163), - [sym_comment] = ACTIONS(86), - }, - [1640] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3165), - [sym_comment] = ACTIONS(86), - }, - [1641] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2075), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1642] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2075), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2091), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1643] = { - [ts_builtin_sym_end] = ACTIONS(1983), - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_in] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_rewrite] = ACTIONS(1983), - [anon_sym_with] = ACTIONS(1983), - }, - [1644] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_rewrite] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), - }, - [1645] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(162), - }, - [1646] = { - [sym_expr] = STATE(1670), - [sym__expr1] = STATE(1644), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1645), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1646), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(1647), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2075), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1647] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2075), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1648] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3165), - }, - [1649] = { + [2029] = { + [sym_vclose] = STATE(3001), + [sym__layout_close_brace] = ACTIONS(3531), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(3165), - }, - [1650] = { - [sym_expr] = STATE(2636), - [sym__expr1] = STATE(1644), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1645), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1646), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(1647), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2075), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1651] = { - [ts_builtin_sym_end] = ACTIONS(1997), - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_RPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_rewrite] = ACTIONS(1997), - [anon_sym_with] = ACTIONS(1997), - }, - [1652] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(1131), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3171), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - }, - [1653] = { - [sym__application] = STATE(906), - [sym__expr2] = STATE(95), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [sym_non_absurd_lambda_clause] = STATE(909), - [sym_absurd_lambda_clause] = STATE(909), - [sym_lambda_clause] = STATE(2638), - [aux_sym__application_repeat1] = STATE(912), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(1131), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [sym_catchall_pragma] = ACTIONS(1143), - }, - [1654] = { - [sym_semi] = STATE(1653), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2639), - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_rewrite] = ACTIONS(2001), - [anon_sym_with] = ACTIONS(2001), }, - [1655] = { - [sym_expr] = STATE(2640), + [2030] = { + [sym_expr] = STATE(3002), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -69710,13 +84739,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1656] = { - [anon_sym_RBRACE] = ACTIONS(2063), + [2031] = { + [anon_sym_RBRACE] = ACTIONS(2476), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(2478), }, - [1657] = { - [sym_expr] = STATE(1665), + [2032] = { + [sym_expr] = STATE(2040), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -69737,7 +84766,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2498), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -69753,8 +84782,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1658] = { - [sym_expr] = STATE(1666), + [2033] = { + [sym_expr] = STATE(2041), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -69776,7 +84805,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2097), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2500), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -69791,8 +84820,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1659] = { - [sym_expr] = STATE(1667), + [2034] = { + [sym_expr] = STATE(2042), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -69825,22 +84854,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(2097), + [anon_sym_RPAREN] = ACTIONS(2500), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1660] = { - [ts_builtin_sym_end] = ACTIONS(186), + [2035] = { [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), [sym_name_at] = ACTIONS(186), [sym_qualified_name] = ACTIONS(186), [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE_RBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(186), [anon_sym_EQ] = ACTIONS(186), @@ -69857,7 +84884,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(186), [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), [anon_sym_COLON] = ACTIONS(186), @@ -69865,10 +84891,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rewrite] = ACTIONS(186), [anon_sym_with] = ACTIONS(186), }, - [1661] = { - [sym_expr] = STATE(1665), + [2036] = { + [sym_expr] = STATE(2040), [sym__expr1] = STATE(38), - [sym__application] = STATE(557), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -69887,7 +84913,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2498), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -69903,10 +84929,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1662] = { - [sym_expr] = STATE(1666), + [2037] = { + [sym_expr] = STATE(2041), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -69926,7 +84952,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2097), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2500), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -69941,10 +84967,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1663] = { - [sym_expr] = STATE(1667), + [2038] = { + [sym_expr] = STATE(2042), [sym__expr1] = STATE(110), - [sym__application] = STATE(559), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -69975,22 +85001,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(2097), + [anon_sym_RPAREN] = ACTIONS(2500), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1664] = { - [ts_builtin_sym_end] = ACTIONS(228), + [2039] = { [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), [sym_name_at] = ACTIONS(228), [sym_qualified_name] = ACTIONS(228), [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE_RBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(228), [anon_sym_EQ] = ACTIONS(228), @@ -70007,7 +85031,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(228), [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), [anon_sym_COLON] = ACTIONS(228), @@ -70015,517 +85038,642 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rewrite] = ACTIONS(228), [anon_sym_with] = ACTIONS(228), }, - [1665] = { - [anon_sym_RBRACE] = ACTIONS(3173), + [2040] = { + [anon_sym_RBRACE] = ACTIONS(3533), [sym_comment] = ACTIONS(86), }, - [1666] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3175), + [2041] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3535), [sym_comment] = ACTIONS(86), }, - [1667] = { + [2042] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3175), + [anon_sym_RPAREN] = ACTIONS(3535), }, - [1668] = { + [2043] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(3175), + [anon_sym_PIPE_RPAREN] = ACTIONS(3535), }, - [1669] = { - [sym_expr] = STATE(2643), - [sym__expr1] = STATE(924), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(925), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(928), + [2044] = { + [sym_expr] = STATE(3005), + [sym__expr1] = STATE(1208), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(1209), + [sym_atomic_expr] = STATE(1210), + [sym__atomic_expr_curly] = STATE(1211), + [sym__atomic_expr_no_curly] = STATE(1211), + [sym_tele_arrow] = STATE(1212), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(929), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(1213), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1157), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1159), + [sym_literal] = ACTIONS(1500), + [sym_set_n] = ACTIONS(1500), + [sym_name_at] = ACTIONS(1502), + [sym_qualified_name] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1504), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1508), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [anon_sym_BSLASH] = ACTIONS(352), + [anon_sym_forall] = ACTIONS(354), + [anon_sym_let] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_Prop] = ACTIONS(1500), + [anon_sym_Set] = ACTIONS(1500), + [anon_sym_quote] = ACTIONS(1500), + [anon_sym_quoteTerm] = ACTIONS(1500), + [anon_sym_unquote] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LPAREN_PIPE] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1500), }, - [1670] = { - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_RPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_rewrite] = ACTIONS(2061), - [anon_sym_with] = ACTIONS(2061), + [2045] = { + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_rewrite] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), }, - [1671] = { - [sym__expr1] = STATE(833), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(834), - [sym__declaration] = STATE(2644), - [sym_function_clause] = STATE(100), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [2046] = { + [sym_literal] = ACTIONS(1194), + [sym_set_n] = ACTIONS(1194), + [sym_name_at] = ACTIONS(1194), + [sym_qualified_name] = ACTIONS(1194), + [anon_sym__] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1194), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1194), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1194), + [anon_sym_where] = ACTIONS(1194), + [anon_sym_forall] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_in] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(1194), + [anon_sym_Prop] = ACTIONS(1194), + [anon_sym_Set] = ACTIONS(1194), + [anon_sym_quote] = ACTIONS(1194), + [anon_sym_quoteTerm] = ACTIONS(1194), + [anon_sym_unquote] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LPAREN_PIPE] = ACTIONS(1194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_rewrite] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), }, - [1672] = { - [sym_semi] = STATE(1671), - [aux_sym__declarations1_repeat1] = STATE(2645), - [ts_builtin_sym_end] = ACTIONS(2550), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_rewrite] = ACTIONS(2550), - [anon_sym_with] = ACTIONS(2550), + [2047] = { + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_rewrite] = ACTIONS(1212), + [anon_sym_with] = ACTIONS(1212), }, - [1673] = { - [sym__expr1] = STATE(833), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [2048] = { + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_rewrite] = ACTIONS(1214), + [anon_sym_with] = ACTIONS(1214), + }, + [2049] = { + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + [anon_sym_rewrite] = ACTIONS(1244), + [anon_sym_with] = ACTIONS(1244), + }, + [2050] = { + [sym_vclose] = STATE(3006), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(834), - [sym__declaration] = STATE(934), - [sym_function_clause] = STATE(100), - [sym__declarations1] = STATE(2646), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(2552), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(3007), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(3531), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [2051] = { + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1284), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - [anon_sym_rewrite] = ACTIONS(2552), - [anon_sym_with] = ACTIONS(2552), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), + [anon_sym_rewrite] = ACTIONS(1284), + [anon_sym_with] = ACTIONS(1284), }, - [1674] = { - [sym_atomic_expr] = STATE(151), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2105), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(188), - [anon_sym_LBRACE_LBRACE] = ACTIONS(190), + [2052] = { + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_rewrite] = ACTIONS(1286), + [anon_sym_with] = ACTIONS(1286), + }, + [2053] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(3537), + }, + [2054] = { + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), + [anon_sym_rewrite] = ACTIONS(1292), + [anon_sym_with] = ACTIONS(1292), + }, + [2055] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE_RBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(192), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [1675] = { - [sym_atomic_expr] = STATE(151), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2105), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(194), - [anon_sym_LBRACE_LBRACE] = ACTIONS(196), + [2056] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE_RBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(198), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [1676] = { - [anon_sym_SEMI] = ACTIONS(280), + [2057] = { + [anon_sym_RBRACE] = ACTIONS(3539), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3177), - [anon_sym_RPAREN] = ACTIONS(280), }, - [1677] = { + [2058] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3541), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(162), }, - [1678] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(1676), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1677), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(1678), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1679), - [aux_sym__application_repeat1] = STATE(1680), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2105), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_forall] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1206), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [2059] = { + [anon_sym_LBRACE] = ACTIONS(3543), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3545), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(3547), }, - [1679] = { - [sym__application] = STATE(225), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(226), - [sym__atomic_expr_curly] = STATE(227), - [sym__atomic_expr_no_curly] = STATE(227), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2649), - [sym_literal] = ACTIONS(292), - [sym_set_n] = ACTIONS(292), - [sym_name_at] = ACTIONS(3179), - [sym_qualified_name] = ACTIONS(292), - [anon_sym__] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(298), + [2060] = { + [sym__application] = STATE(3015), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(3016), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(3549), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_forall] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1206), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_Prop] = ACTIONS(292), - [anon_sym_Set] = ACTIONS(292), - [anon_sym_quote] = ACTIONS(292), - [anon_sym_quoteTerm] = ACTIONS(292), - [anon_sym_unquote] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LPAREN_PIPE] = ACTIONS(302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [1680] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2105), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(188), - [anon_sym_LBRACE_LBRACE] = ACTIONS(190), + [2061] = { + [sym__application] = STATE(3017), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3549), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_forall] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1206), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(192), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [1681] = { - [anon_sym_SEMI] = ACTIONS(819), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3181), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1682] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(1682), - [sym_typed_bindings] = STATE(1682), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [2062] = { + [sym_vopen] = STATE(3018), + [sym__layout_open_brace] = ACTIONS(426), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_RPAREN] = ACTIONS(825), }, - [1683] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(1676), - [sym__application] = STATE(39), + [2063] = { + [sym_binding_name] = STATE(3019), + [sym__application] = STATE(3020), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1677), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(1678), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1679), - [aux_sym__application_repeat1] = STATE(1680), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2105), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_forall] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1206), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [1684] = { - [sym_atomic_expr] = STATE(388), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(3549), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1685] = { - [sym_lambda_bindings] = STATE(2651), - [sym_untyped_bindings] = STATE(2652), - [sym_typed_bindings] = STATE(2652), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACE_LBRACE] = ACTIONS(530), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1212), - [anon_sym_LPAREN] = ACTIONS(534), + [2064] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE_RBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3551), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [1686] = { - [sym_forall_bindings] = STATE(2653), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [2065] = { + [sym_lambda_bindings] = STATE(3014), + [sym_untyped_bindings] = STATE(2065), + [sym_typed_bindings] = STATE(2065), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [anon_sym_LBRACE] = ACTIONS(3555), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3557), + [anon_sym_RBRACE_RBRACE] = ACTIONS(444), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(3559), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), }, - [1687] = { - [sym__expr1] = STATE(2654), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2655), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(2656), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [2066] = { + [sym_expr] = STATE(3030), + [sym__expr1] = STATE(3031), + [sym__application] = STATE(1234), + [sym__expr2] = STATE(1235), + [sym__atomic_exprs1] = STATE(3032), + [sym_atomic_expr] = STATE(3033), + [sym__atomic_expr_curly] = STATE(3034), + [sym__atomic_expr_no_curly] = STATE(3034), + [sym_tele_arrow] = STATE(3035), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1238), + [aux_sym__application_repeat1] = STATE(3036), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3561), + [sym_set_n] = ACTIONS(3561), + [sym_name_at] = ACTIONS(3563), + [sym_qualified_name] = ACTIONS(3561), + [anon_sym__] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3565), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3567), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3569), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_forall] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_Prop] = ACTIONS(3561), + [anon_sym_Set] = ACTIONS(3561), + [anon_sym_quote] = ACTIONS(3561), + [anon_sym_quoteTerm] = ACTIONS(3561), + [anon_sym_unquote] = ACTIONS(3561), + [anon_sym_LPAREN] = ACTIONS(3571), + [anon_sym_LPAREN_PIPE] = ACTIONS(3573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), }, - [1688] = { - [sym_rewrite_equations] = STATE(2659), - [sym_with_expressions] = STATE(643), + [2067] = { + [sym_rewrite_equations] = STATE(3038), + [sym_with_expressions] = STATE(3039), [sym_literal] = ACTIONS(152), [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), [sym_name_at] = ACTIONS(152), [sym_qualified_name] = ACTIONS(152), [anon_sym__] = ACTIONS(152), [anon_sym_DOT] = ACTIONS(152), [anon_sym_LBRACE] = ACTIONS(152), [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [anon_sym_RBRACE_RBRACE] = ACTIONS(152), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(152), [anon_sym_BSLASH] = ACTIONS(152), @@ -70540,30 +85688,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(152), [anon_sym_unquote] = ACTIONS(152), [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_RPAREN] = ACTIONS(152), [anon_sym_LPAREN_PIPE] = ACTIONS(152), [anon_sym_DOT_DOT_DOT] = ACTIONS(152), [anon_sym_COLON] = ACTIONS(152), [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(3183), - [anon_sym_with] = ACTIONS(3185), + [anon_sym_rewrite] = ACTIONS(860), + [anon_sym_with] = ACTIONS(152), }, - [1689] = { - [sym_where_clause] = STATE(647), - [sym_rhs] = STATE(963), + [2068] = { + [sym_where_clause] = STATE(3043), + [sym_rhs] = STATE(3044), [sym_literal] = ACTIONS(170), [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), [sym_name_at] = ACTIONS(170), [sym_qualified_name] = ACTIONS(170), [anon_sym__] = ACTIONS(170), [anon_sym_DOT] = ACTIONS(170), [anon_sym_LBRACE] = ACTIONS(170), [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE_RBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3187), + [anon_sym_EQ] = ACTIONS(170), [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1220), + [anon_sym_where] = ACTIONS(170), [anon_sym_forall] = ACTIONS(170), [anon_sym_let] = ACTIONS(170), [anon_sym_in] = ACTIONS(170), @@ -70574,139 +85721,685 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(170), [anon_sym_unquote] = ACTIONS(170), [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), [anon_sym_LPAREN_PIPE] = ACTIONS(170), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(3187), - [anon_sym_module] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(170), + [anon_sym_with] = ACTIONS(170), }, - [1690] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1689), - [sym__declaration] = STATE(202), - [sym_function_clause] = STATE(203), - [aux_sym_source_file_repeat1] = STATE(2661), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [2069] = { + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE_RBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), + [anon_sym_with] = ACTIONS(178), }, - [1691] = { - [sym__application] = STATE(413), - [sym__expr2] = STATE(95), + [2070] = { + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE_RBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), + [anon_sym_with] = ACTIONS(180), + }, + [2071] = { + [sym__expr1] = STATE(2067), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(2068), + [sym__declaration] = STATE(2069), + [sym_function_clause] = STATE(2070), + [aux_sym_source_file_repeat1] = STATE(3045), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE_RBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [2072] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3541), + }, + [2073] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(3541), + }, + [2074] = { + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [anon_sym_RBRACE_RBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_with] = ACTIONS(673), + }, + [2075] = { + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE_RBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), + [anon_sym_with] = ACTIONS(693), + }, + [2076] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE_RBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + }, + [2077] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE_RBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + }, + [2078] = { + [anon_sym_RBRACE] = ACTIONS(3575), + [sym_comment] = ACTIONS(86), + }, + [2079] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3577), + [sym_comment] = ACTIONS(86), + }, + [2080] = { + [anon_sym_LBRACE] = ACTIONS(3579), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3581), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(3583), + }, + [2081] = { + [sym__application] = STATE(3052), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(3053), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(3585), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), + }, + [2082] = { + [sym__application] = STATE(3054), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3585), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [2083] = { + [sym_vopen] = STATE(3055), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), + }, + [2084] = { + [sym_binding_name] = STATE(3056), + [sym__application] = STATE(3057), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(3585), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [2085] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE_RBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3587), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + }, + [2086] = { + [sym_lambda_bindings] = STATE(3051), + [sym_untyped_bindings] = STATE(2086), + [sym_typed_bindings] = STATE(2086), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(3589), + [anon_sym_DOT_DOT] = ACTIONS(3589), + [anon_sym_LBRACE] = ACTIONS(3591), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3593), + [anon_sym_RBRACE_RBRACE] = ACTIONS(444), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(3595), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + }, + [2087] = { + [sym_expr] = STATE(3060), + [sym__expr1] = STATE(1913), + [sym__application] = STATE(1250), + [sym__expr2] = STATE(1251), + [sym__atomic_exprs1] = STATE(1914), + [sym_atomic_expr] = STATE(1915), + [sym__atomic_expr_curly] = STATE(1916), + [sym__atomic_expr_no_curly] = STATE(1916), + [sym_tele_arrow] = STATE(1917), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1254), + [aux_sym__application_repeat1] = STATE(1918), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2350), + [sym_set_n] = ACTIONS(2350), + [sym_name_at] = ACTIONS(2352), + [sym_qualified_name] = ACTIONS(2350), + [anon_sym__] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2354), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2358), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_forall] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(2350), + [anon_sym_Prop] = ACTIONS(2350), + [anon_sym_Set] = ACTIONS(2350), + [anon_sym_quote] = ACTIONS(2350), + [anon_sym_quoteTerm] = ACTIONS(2350), + [anon_sym_unquote] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2350), + }, + [2088] = { + [sym_where_clause] = STATE(3063), + [sym_rhs] = STATE(3064), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE_RBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(170), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(170), + }, + [2089] = { + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE_RBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), + }, + [2090] = { + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE_RBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), + }, + [2091] = { + [sym__expr1] = STATE(263), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(2088), + [sym__declaration] = STATE(2089), + [sym_function_clause] = STATE(2090), + [aux_sym_source_file_repeat1] = STATE(3065), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE_RBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + }, + [2092] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3577), + }, + [2093] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(3577), + }, + [2094] = { + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [anon_sym_RBRACE_RBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), }, - [1692] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [2095] = { + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE_RBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), }, - [1693] = { - [sym_expr] = STATE(1500), - [sym__expr1] = STATE(1676), + [2096] = { + [sym_expr] = STATE(2104), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1677), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(1678), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1679), - [aux_sym__application_repeat1] = STATE(1680), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2105), + [sym_name_at] = ACTIONS(34), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2107), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(2552), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_forall] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1206), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -70717,87 +86410,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1694] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(622), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(1198), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3191), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_forall] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1206), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), - }, - [1695] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(622), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(2162), - [aux_sym__application_repeat1] = STATE(945), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(1198), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1200), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_forall] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1206), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), - [sym_catchall_pragma] = ACTIONS(1208), - }, - [1696] = { - [sym_semi] = STATE(1695), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2663), - [anon_sym_SEMI] = ACTIONS(1014), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2674), - [anon_sym_RPAREN] = ACTIONS(2674), + [2097] = { + [sym_expr] = STATE(2105), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2554), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1697] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(947), + [2098] = { + [sym_expr] = STATE(2118), + [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(948), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(949), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), [aux_sym__application_repeat1] = STATE(114), @@ -70822,1211 +86482,173 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(2554), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1698] = { - [sym_atomic_expr] = STATE(1637), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(2121), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [2099] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE_RBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [1699] = { - [sym_expr] = STATE(1643), - [sym__expr1] = STATE(2666), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2667), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2668), + [2100] = { + [sym_expr] = STATE(2104), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(2669), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3193), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3195), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1700] = { - [sym__application] = STATE(1651), - [sym__expr2] = STATE(95), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [aux_sym__application_repeat1] = STATE(2671), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(2121), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3197), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - }, - [1701] = { - [sym_semi] = STATE(2672), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2673), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_RPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_rewrite] = ACTIONS(1048), - [anon_sym_with] = ACTIONS(1048), - }, - [1702] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(2121), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3197), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - }, - [1703] = { - [sym_expr] = STATE(1635), - [sym__expr1] = STATE(1706), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1707), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1708), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(1709), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2129), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2131), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1704] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2129), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1705] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2129), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2091), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1706] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3199), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_rewrite] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), - }, - [1707] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(162), - }, - [1708] = { - [sym_expr] = STATE(1670), - [sym__expr1] = STATE(1706), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1707), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1708), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(1709), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2129), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2131), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1709] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2129), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1710] = { - [sym__expr1] = STATE(930), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(548), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [1711] = { - [sym__expr1] = STATE(931), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(548), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(2552), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [1712] = { - [sym_with_expressions] = STATE(932), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_rewrite] = ACTIONS(646), - [anon_sym_with] = ACTIONS(2135), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1713] = { - [sym_expr] = STATE(933), - [sym__expr1] = STATE(1706), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1707), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1708), + [2101] = { + [sym_expr] = STATE(2105), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(1709), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2129), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2131), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [1714] = { - [sym__expr1] = STATE(2654), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2655), - [sym__declaration] = STATE(2675), - [sym_function_clause] = STATE(100), - [sym__declarations1] = STATE(935), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), - [anon_sym_rewrite] = ACTIONS(670), - [anon_sym_with] = ACTIONS(670), - }, - [1715] = { - [sym_anonymous_name] = STATE(2676), - [sym_name] = ACTIONS(3203), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), - }, - [1716] = { - [sym_where_clause] = STATE(937), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(2139), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(2141), - [anon_sym_rewrite] = ACTIONS(678), - [anon_sym_with] = ACTIONS(678), - }, - [1717] = { - [sym__expr1] = STATE(954), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(955), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(1717), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(2171), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2174), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2180), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_rewrite] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), - }, - [1718] = { - [sym_atomic_expr] = STATE(2177), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(2143), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [1719] = { - [sym_lambda_bindings] = STATE(2678), - [sym_untyped_bindings] = STATE(2679), - [sym_typed_bindings] = STATE(2679), - [anon_sym_DOT] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2698), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(2702), - }, - [1720] = { - [sym_forall_bindings] = STATE(2680), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [1721] = { - [sym__expr1] = STATE(2681), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2682), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(2683), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(548), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [1722] = { - [sym__application] = STATE(2194), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(1723), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(2143), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2145), - [anon_sym_forall] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [1723] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(2143), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2145), - [anon_sym_forall] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [1724] = { - [sym_atomic_expr] = STATE(2196), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(2151), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), - }, - [1725] = { - [sym_lambda_bindings] = STATE(2685), - [sym_untyped_bindings] = STATE(2686), - [sym_typed_bindings] = STATE(2686), - [anon_sym_DOT] = ACTIONS(2708), - [anon_sym_DOT_DOT] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2714), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2718), - }, - [1726] = { - [sym_forall_bindings] = STATE(2687), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [1727] = { - [sym__expr1] = STATE(423), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2688), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(2689), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(548), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [1728] = { - [sym__application] = STATE(2212), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(1729), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(2151), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2153), - [anon_sym_forall] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), - }, - [1729] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(2151), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2153), - [anon_sym_forall] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), - }, - [1730] = { - [sym_atomic_expr] = STATE(2217), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(2159), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2722), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [1731] = { - [sym_atomic_expr] = STATE(2217), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(2159), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2728), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [1732] = { - [sym_lambda_bindings] = STATE(2691), - [sym_untyped_bindings] = STATE(2692), - [sym_typed_bindings] = STATE(2692), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_DOT_DOT] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2742), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3209), - [anon_sym_LPAREN] = ACTIONS(2746), - }, - [1733] = { - [sym_forall_bindings] = STATE(2693), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [1734] = { - [sym__expr1] = STATE(423), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2694), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(2695), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(548), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [1735] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3211), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [1736] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3213), - [anon_sym_PIPE] = ACTIONS(162), - }, - [1737] = { - [sym_expr] = STATE(2237), - [sym__expr1] = STATE(1735), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(1736), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(1737), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1738), - [aux_sym__application_repeat1] = STATE(1739), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(2159), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(2161), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2163), - [anon_sym_forall] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [1738] = { - [sym__application] = STATE(2244), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2245), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2698), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(3215), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2163), - [anon_sym_forall] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - }, - [1739] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(2159), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2722), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2163), - [anon_sym_forall] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [1740] = { - [sym_semi] = STATE(2699), - [aux_sym__declarations1_repeat1] = STATE(2700), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - }, - [1741] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3217), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2554), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1742] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [2102] = { + [sym_expr] = STATE(2118), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_PIPE_RPAREN] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(2554), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1743] = { + [2103] = { [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), [sym_name_at] = ACTIONS(228), [sym_qualified_name] = ACTIONS(228), [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE_RBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(228), [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), [anon_sym_Prop] = ACTIONS(228), [anon_sym_Set] = ACTIONS(228), @@ -72035,365 +86657,240 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_PIPE_RPAREN] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [1744] = { - [anon_sym_RBRACE] = ACTIONS(3219), - [sym_comment] = ACTIONS(86), - }, - [1745] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3221), + [2104] = { + [anon_sym_RBRACE] = ACTIONS(3597), [sym_comment] = ACTIONS(86), }, - [1746] = { - [sym_atomic_expr] = STATE(434), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(2187), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(562), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [1747] = { - [sym_atomic_expr] = STATE(434), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(2187), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_LBRACE_LBRACE] = ACTIONS(568), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [1748] = { - [anon_sym_SEMI] = ACTIONS(280), + [2105] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3599), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3223), - [anon_sym_PIPE_RPAREN] = ACTIONS(280), }, - [1749] = { + [2106] = { + [anon_sym_LBRACE] = ACTIONS(3601), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3603), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3223), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_LPAREN] = ACTIONS(3605), }, - [1750] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(1748), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1749), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(1750), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1751), - [aux_sym__application_repeat1] = STATE(1752), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(2187), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(2189), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [2107] = { + [sym__application] = STATE(3072), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(3073), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(3607), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_forall] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [1751] = { - [sym__application] = STATE(225), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(474), - [sym__atomic_expr_curly] = STATE(475), - [sym__atomic_expr_no_curly] = STATE(475), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2706), - [sym_literal] = ACTIONS(598), - [sym_set_n] = ACTIONS(598), - [sym_name_at] = ACTIONS(3225), - [sym_qualified_name] = ACTIONS(598), - [anon_sym__] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_LBRACE_LBRACE] = ACTIONS(604), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_forall] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_Prop] = ACTIONS(598), - [anon_sym_Set] = ACTIONS(598), - [anon_sym_quote] = ACTIONS(598), - [anon_sym_quoteTerm] = ACTIONS(598), - [anon_sym_unquote] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LPAREN_PIPE] = ACTIONS(608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [1752] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(2187), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(562), + [2108] = { + [sym__application] = STATE(3074), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3607), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_forall] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [1753] = { - [anon_sym_SEMI] = ACTIONS(819), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3227), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_PIPE_RPAREN] = ACTIONS(819), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1754] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(1754), - [sym_typed_bindings] = STATE(1754), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [2109] = { + [sym_vopen] = STATE(3075), + [sym__layout_open_brace] = ACTIONS(426), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_PIPE_RPAREN] = ACTIONS(825), }, - [1755] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(1748), - [sym__application] = STATE(39), + [2110] = { + [sym_binding_name] = STATE(3076), + [sym__application] = STATE(3077), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1749), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(1750), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1751), - [aux_sym__application_repeat1] = STATE(1752), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(2187), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(2189), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_forall] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [1756] = { - [sym_atomic_expr] = STATE(986), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - }, - [1757] = { - [sym_lambda_bindings] = STATE(2708), - [sym_untyped_bindings] = STATE(2709), - [sym_typed_bindings] = STATE(2709), - [anon_sym_DOT] = ACTIONS(1258), - [anon_sym_DOT_DOT] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1264), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(3607), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1758] = { - [sym_forall_bindings] = STATE(2710), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [2111] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE_RBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3609), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [1759] = { - [sym__expr1] = STATE(2711), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(2712), - [sym__declaration] = STATE(1000), - [sym_function_clause] = STATE(1001), - [aux_sym_source_file_repeat1] = STATE(2713), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [2112] = { + [sym_lambda_bindings] = STATE(3071), + [sym_untyped_bindings] = STATE(2112), + [sym_typed_bindings] = STATE(2112), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(3611), + [anon_sym_DOT_DOT] = ACTIONS(3611), + [anon_sym_LBRACE] = ACTIONS(3613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3615), + [anon_sym_RBRACE_RBRACE] = ACTIONS(444), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(3617), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), }, - [1760] = { - [sym_rewrite_equations] = STATE(2716), - [sym_with_expressions] = STATE(1008), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_PIPE_RPAREN] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(3229), - [anon_sym_with] = ACTIONS(3231), + [2113] = { + [sym_expr] = STATE(3080), + [sym__expr1] = STATE(1268), + [sym__application] = STATE(1269), + [sym__expr2] = STATE(1270), + [sym__atomic_exprs1] = STATE(1271), + [sym_atomic_expr] = STATE(1272), + [sym__atomic_expr_curly] = STATE(1273), + [sym__atomic_expr_no_curly] = STATE(1273), + [sym_tele_arrow] = STATE(1274), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1275), + [aux_sym__application_repeat1] = STATE(1276), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1550), + [sym_set_n] = ACTIONS(1550), + [sym_name_at] = ACTIONS(1552), + [sym_qualified_name] = ACTIONS(1550), + [anon_sym__] = ACTIONS(1550), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1558), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_forall] = ACTIONS(1562), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1550), + [anon_sym_Prop] = ACTIONS(1550), + [anon_sym_Set] = ACTIONS(1550), + [anon_sym_quote] = ACTIONS(1550), + [anon_sym_quoteTerm] = ACTIONS(1550), + [anon_sym_unquote] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_LPAREN_PIPE] = ACTIONS(1568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1550), }, - [1761] = { - [sym_where_clause] = STATE(1012), - [sym_rhs] = STATE(1013), + [2114] = { + [sym_where_clause] = STATE(3083), + [sym_rhs] = STATE(3084), [sym_literal] = ACTIONS(170), [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), [sym_name_at] = ACTIONS(170), [sym_qualified_name] = ACTIONS(170), [anon_sym__] = ACTIONS(170), [anon_sym_DOT] = ACTIONS(170), [anon_sym_LBRACE] = ACTIONS(170), [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE_RBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(170), [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1276), + [anon_sym_where] = ACTIONS(170), [anon_sym_forall] = ACTIONS(170), [anon_sym_let] = ACTIONS(170), [anon_sym_in] = ACTIONS(170), @@ -72405,482 +86902,193 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(170), [anon_sym_LPAREN] = ACTIONS(170), [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_PIPE_RPAREN] = ACTIONS(170), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(3233), - [anon_sym_module] = ACTIONS(1278), - }, - [1762] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(1761), - [sym__declaration] = STATE(460), - [sym_function_clause] = STATE(461), - [aux_sym_source_file_repeat1] = STATE(2718), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(3235), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - }, - [1763] = { - [sym__application] = STATE(1015), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - }, - [1764] = { - [sym__expr2] = STATE(1016), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - }, - [1765] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3221), - }, - [1766] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(3221), - }, - [1767] = { - [sym_expr] = STATE(1500), - [sym__expr1] = STATE(1748), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1749), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(1750), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1751), - [aux_sym__application_repeat1] = STATE(1752), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(2187), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(2189), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_forall] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [1768] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(978), - [sym__atomic_expr_curly] = STATE(979), - [sym__atomic_expr_no_curly] = STATE(979), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1230), - [sym_set_n] = ACTIONS(1230), - [sym_name_at] = ACTIONS(1232), - [sym_qualified_name] = ACTIONS(1230), - [anon_sym__] = ACTIONS(1230), - [anon_sym_DOT] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1236), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3237), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_forall] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(1230), - [anon_sym_Prop] = ACTIONS(1230), - [anon_sym_Set] = ACTIONS(1230), - [anon_sym_quote] = ACTIONS(1230), - [anon_sym_quoteTerm] = ACTIONS(1230), - [anon_sym_unquote] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1246), - [anon_sym_LPAREN_PIPE] = ACTIONS(1248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1230), - }, - [1769] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(978), - [sym__atomic_expr_curly] = STATE(979), - [sym__atomic_expr_no_curly] = STATE(979), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(2162), - [aux_sym__application_repeat1] = STATE(981), - [sym_literal] = ACTIONS(1230), - [sym_set_n] = ACTIONS(1230), - [sym_name_at] = ACTIONS(1232), - [sym_qualified_name] = ACTIONS(1230), - [anon_sym__] = ACTIONS(1230), - [anon_sym_DOT] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1236), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1238), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_forall] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(1230), - [anon_sym_Prop] = ACTIONS(1230), - [anon_sym_Set] = ACTIONS(1230), - [anon_sym_quote] = ACTIONS(1230), - [anon_sym_quoteTerm] = ACTIONS(1230), - [anon_sym_unquote] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1246), - [anon_sym_LPAREN_PIPE] = ACTIONS(1248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1230), - [sym_catchall_pragma] = ACTIONS(1250), - }, - [1770] = { - [sym_semi] = STATE(1769), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2720), - [anon_sym_SEMI] = ACTIONS(1014), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2674), - [anon_sym_PIPE_RPAREN] = ACTIONS(2674), - }, - [1771] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(983), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(984), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(985), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [1772] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_PIPE_RPAREN] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_rewrite] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), - }, - [1773] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_PIPE_RPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_rewrite] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), - }, - [1774] = { - [sym__application] = STATE(2721), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_COLON] = ACTIONS(866), + [anon_sym_module] = ACTIONS(170), }, - [1775] = { - [sym__application] = STATE(2722), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [2115] = { + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE_RBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), }, - [1776] = { - [sym_binding_name] = STATE(2723), - [sym__application] = STATE(2724), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [2116] = { + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE_RBRACE] = ACTIONS(180), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), }, - [1777] = { - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_PIPE_RPAREN] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), - [anon_sym_rewrite] = ACTIONS(968), - [anon_sym_with] = ACTIONS(968), + [2117] = { + [sym__expr1] = STATE(263), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(2114), + [sym__declaration] = STATE(2115), + [sym_function_clause] = STATE(2116), + [aux_sym_source_file_repeat1] = STATE(3085), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE_RBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [1778] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(3239), + [2118] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3241), + [anon_sym_RPAREN] = ACTIONS(3599), }, - [1779] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(3243), + [2119] = { [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(3599), }, - [1780] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3239), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3245), + [2120] = { + [sym_expr] = STATE(3086), + [sym__expr1] = STATE(1268), + [sym__application] = STATE(1269), + [sym__expr2] = STATE(1270), + [sym__atomic_exprs1] = STATE(1271), + [sym_atomic_expr] = STATE(1272), + [sym__atomic_expr_curly] = STATE(1273), + [sym__atomic_expr_no_curly] = STATE(1273), + [sym_tele_arrow] = STATE(1274), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1275), + [aux_sym__application_repeat1] = STATE(1276), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1550), + [sym_set_n] = ACTIONS(1550), + [sym_name_at] = ACTIONS(1552), + [sym_qualified_name] = ACTIONS(1550), + [anon_sym__] = ACTIONS(1550), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1558), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_forall] = ACTIONS(1562), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1550), + [anon_sym_Prop] = ACTIONS(1550), + [anon_sym_Set] = ACTIONS(1550), + [anon_sym_quote] = ACTIONS(1550), + [anon_sym_quoteTerm] = ACTIONS(1550), + [anon_sym_unquote] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_LPAREN_PIPE] = ACTIONS(1568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1550), }, - [1781] = { + [2121] = { + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + }, + [2122] = { [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE_RBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), @@ -72894,38 +87102,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_PIPE_RPAREN] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), [anon_sym_module] = ACTIONS(30), - [anon_sym_rewrite] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), }, - [1782] = { - [sym_atomic_expr] = STATE(2729), - [sym__atomic_expr_curly] = STATE(1791), - [sym__atomic_expr_no_curly] = STATE(1791), - [sym_literal] = ACTIONS(2215), - [sym_set_n] = ACTIONS(2215), - [sym_name_at] = ACTIONS(2217), - [sym_qualified_name] = ACTIONS(2215), - [anon_sym__] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2221), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2215), - [anon_sym_Prop] = ACTIONS(2215), - [anon_sym_Set] = ACTIONS(2215), - [anon_sym_quote] = ACTIONS(2215), - [anon_sym_quoteTerm] = ACTIONS(2215), - [anon_sym_unquote] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_LPAREN_PIPE] = ACTIONS(2227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2215), + [2123] = { + [sym_atomic_expr] = STATE(3087), + [sym__atomic_expr_curly] = STATE(2130), + [sym__atomic_expr_no_curly] = STATE(2130), + [sym_literal] = ACTIONS(2572), + [sym_set_n] = ACTIONS(2572), + [sym_name_at] = ACTIONS(2574), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym__] = ACTIONS(2572), + [anon_sym_DOT] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2576), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2578), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_Prop] = ACTIONS(2572), + [anon_sym_Set] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_LPAREN] = ACTIONS(2580), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2572), }, - [1783] = { - [sym_expr] = STATE(2731), + [2124] = { + [sym_expr] = STATE(3089), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -72946,7 +87150,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_RBRACE] = ACTIONS(3619), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -72962,8 +87166,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1784] = { - [sym_expr] = STATE(2732), + [2125] = { + [sym_expr] = STATE(3090), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -72985,7 +87189,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3249), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3621), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -73000,45 +87204,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1785] = { - [sym_expr] = STATE(2735), - [sym__expr1] = STATE(2736), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(2737), - [sym_atomic_expr] = STATE(1809), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_tele_arrow] = STATE(2738), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(2739), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(3251), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2249), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), - }, - [1786] = { - [sym_expr] = STATE(2740), + [2126] = { + [sym_expr] = STATE(3091), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -73071,12 +87238,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3249), + [anon_sym_RPAREN] = ACTIONS(3621), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1787] = { - [sym_expr] = STATE(2741), + [2127] = { + [sym_expr] = STATE(3092), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -73112,81 +87279,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1788] = { - [sym__application] = STATE(2743), - [sym__expr2] = STATE(456), - [sym_atomic_expr] = STATE(1790), - [sym__atomic_expr_curly] = STATE(1791), - [sym__atomic_expr_no_curly] = STATE(1791), - [aux_sym__application_repeat1] = STATE(2744), - [sym_literal] = ACTIONS(2215), - [sym_set_n] = ACTIONS(2215), - [sym_name_at] = ACTIONS(2217), - [sym_qualified_name] = ACTIONS(2215), - [anon_sym__] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2221), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3255), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2215), - [anon_sym_Prop] = ACTIONS(2215), - [anon_sym_Set] = ACTIONS(2215), - [anon_sym_quote] = ACTIONS(2215), - [anon_sym_quoteTerm] = ACTIONS(2215), - [anon_sym_unquote] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_LPAREN_PIPE] = ACTIONS(2227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2215), - }, - [1789] = { - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_PIPE_RPAREN] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_rewrite] = ACTIONS(1044), - [anon_sym_with] = ACTIONS(1044), + [2128] = { + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [anon_sym_RBRACE_RBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), }, - [1790] = { + [2129] = { [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE_RBRACE] = ACTIONS(164), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), @@ -73200,26 +87333,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_PIPE_RPAREN] = ACTIONS(164), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), [anon_sym_module] = ACTIONS(164), - [anon_sym_rewrite] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), }, - [1791] = { + [2130] = { [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE_RBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), @@ -73233,999 +87362,743 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_PIPE_RPAREN] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), [anon_sym_module] = ACTIONS(168), - [anon_sym_rewrite] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), }, - [1792] = { - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), + [2131] = { + [sym__expr2] = STATE(2132), + [sym_atomic_expr] = STATE(2129), + [sym__atomic_expr_curly] = STATE(2130), + [sym__atomic_expr_no_curly] = STATE(2130), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(2572), + [sym_set_n] = ACTIONS(2572), + [sym_name_at] = ACTIONS(2574), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym__] = ACTIONS(2572), + [anon_sym_DOT] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2576), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2578), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_PIPE_RPAREN] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_rewrite] = ACTIONS(1046), - [anon_sym_with] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_forall] = ACTIONS(1562), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_Prop] = ACTIONS(2572), + [anon_sym_Set] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_LPAREN] = ACTIONS(2580), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2572), }, - [1793] = { - [sym_semi] = STATE(2745), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2746), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_PIPE_RPAREN] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_rewrite] = ACTIONS(1048), - [anon_sym_with] = ACTIONS(1048), + [2132] = { + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE_RBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), }, - [1794] = { - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_PIPE_RPAREN] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_COLON] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_rewrite] = ACTIONS(1052), - [anon_sym_with] = ACTIONS(1052), + [2133] = { + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), }, - [1795] = { - [sym__expr2] = STATE(1016), - [sym_atomic_expr] = STATE(1790), - [sym__atomic_expr_curly] = STATE(1791), - [sym__atomic_expr_no_curly] = STATE(1791), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(2215), - [sym_set_n] = ACTIONS(2215), - [sym_name_at] = ACTIONS(2217), - [sym_qualified_name] = ACTIONS(2215), - [anon_sym__] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2221), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3255), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2215), - [anon_sym_Prop] = ACTIONS(2215), - [anon_sym_Set] = ACTIONS(2215), - [anon_sym_quote] = ACTIONS(2215), - [anon_sym_quoteTerm] = ACTIONS(2215), - [anon_sym_unquote] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_LPAREN_PIPE] = ACTIONS(2227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2215), + [2134] = { + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), }, - [1796] = { + [2135] = { + [sym_vclose] = STATE(3093), + [sym__layout_close_brace] = ACTIONS(2584), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3239), }, - [1797] = { + [2136] = { + [sym_vopen] = STATE(1277), + [sym_declarations] = STATE(1278), + [sym__declarations0] = STATE(3094), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3257), }, - [1798] = { - [sym_expr] = STATE(2727), - [sym__expr1] = STATE(1807), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(1808), - [sym_atomic_expr] = STATE(1809), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_tele_arrow] = STATE(1811), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(1812), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(2243), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2249), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), + [2137] = { + [anon_sym_RBRACE] = ACTIONS(3623), + [sym_comment] = ACTIONS(86), }, - [1799] = { - [sym__application] = STATE(2748), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [2138] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3623), + [sym_comment] = ACTIONS(86), }, - [1800] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_PIPE_RPAREN] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_rewrite] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), + [2139] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3623), }, - [1801] = { - [sym_atomic_expr] = STATE(2752), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(2243), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3261), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), + [2140] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), }, - [1802] = { - [sym_atomic_expr] = STATE(2752), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(2243), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3267), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(3269), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), + [2141] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), }, - [1803] = { - [sym_expr] = STATE(2757), - [sym__expr1] = STATE(38), - [sym__application] = STATE(170), + [2142] = { + [sym__application] = STATE(3096), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [1804] = { - [sym_expr] = STATE(2758), - [sym__expr1] = STATE(60), - [sym__application] = STATE(185), + [2143] = { + [sym__application] = STATE(3097), [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3273), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1805] = { - [sym_expr] = STATE(2759), - [sym__expr1] = STATE(110), - [sym__application] = STATE(213), + [2144] = { + [sym_binding_name] = STATE(3098), + [sym__application] = STATE(3099), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(3273), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1806] = { - [sym_expr] = STATE(2760), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), + [2145] = { + [sym__layout_semicolon] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + }, + [2146] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(3625), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3627), + }, + [2147] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(3629), + [sym_comment] = ACTIONS(86), + }, + [2148] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3625), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3631), + }, + [2149] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(3104), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [2150] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3625), + }, + [2151] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3633), + }, + [2152] = { + [sym_expr] = STATE(3102), + [sym__expr1] = STATE(2155), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(2156), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(2157), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(714), + [aux_sym__application_repeat1] = STATE(715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(888), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(896), + [anon_sym_forall] = ACTIONS(898), + [anon_sym_let] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [2153] = { + [sym__application] = STATE(3106), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(2604), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [1807] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3275), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_PIPE_RPAREN] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_rewrite] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), + [2154] = { + [sym__layout_semicolon] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1360), }, - [1808] = { + [2155] = { + [sym__layout_semicolon] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(280), + [anon_sym_RBRACE] = ACTIONS(280), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3635), + }, + [2156] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3277), + [anon_sym_DASH_GT] = ACTIONS(3635), [anon_sym_PIPE] = ACTIONS(162), }, - [1809] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_PIPE_RPAREN] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_rewrite] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), + [2157] = { + [sym_expr] = STATE(3108), + [sym__expr1] = STATE(2155), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(2156), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(2157), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(714), + [aux_sym__application_repeat1] = STATE(715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(888), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(896), + [anon_sym_forall] = ACTIONS(898), + [anon_sym_let] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), }, - [1810] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_PIPE_RPAREN] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_rewrite] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), + [2158] = { + [sym_expr] = STATE(3119), + [sym__expr1] = STATE(3120), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(3123), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(3126), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3127), + [aux_sym__application_repeat1] = STATE(3128), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3639), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3647), + [anon_sym_forall] = ACTIONS(3649), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), }, - [1811] = { - [sym_expr] = STATE(2762), - [sym__expr1] = STATE(1807), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(1808), - [sym_atomic_expr] = STATE(1809), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_tele_arrow] = STATE(1811), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(1812), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(2243), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2249), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), + [2159] = { + [sym_vopen] = STATE(3129), + [sym_declarations] = STATE(3130), + [sym__declarations0] = STATE(3131), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [1812] = { - [sym__expr2] = STATE(1016), - [sym_atomic_expr] = STATE(1809), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(2243), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3261), + [2160] = { + [sym_anonymous_name] = STATE(3132), + [sym_name] = ACTIONS(3657), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), }, - [1813] = { - [sym__expr1] = STATE(2763), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(580), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [2161] = { + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + }, + [2162] = { + [sym_where_clause] = STATE(3133), + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(2610), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(2614), }, - [1814] = { - [sym__expr1] = STATE(2764), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), + [2163] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(580), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(1308), + [sym__declaration] = STATE(1309), + [sym_function_clause] = STATE(1310), + [aux_sym_source_file_repeat1] = STATE(2163), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(2766), + [sym_literal] = ACTIONS(2768), + [sym_set_n] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(2771), + [sym_qualified_name] = ACTIONS(2768), + [anon_sym__] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2777), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2780), + [anon_sym_forall] = ACTIONS(2783), + [anon_sym_let] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_Prop] = ACTIONS(2768), + [anon_sym_Set] = ACTIONS(2768), + [anon_sym_quote] = ACTIONS(2768), + [anon_sym_quoteTerm] = ACTIONS(2768), + [anon_sym_unquote] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LPAREN_PIPE] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), }, - [1815] = { - [sym_with_expressions] = STATE(2765), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_PIPE_RPAREN] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_rewrite] = ACTIONS(646), - [anon_sym_with] = ACTIONS(2257), + [2164] = { + [sym__layout_semicolon] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [sym_comment] = ACTIONS(86), }, - [1816] = { - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_PIPE_RPAREN] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_rewrite] = ACTIONS(646), - [anon_sym_with] = ACTIONS(646), + [2165] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), }, - [1817] = { - [sym_expr] = STATE(2766), - [sym__expr1] = STATE(1807), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(1808), - [sym_atomic_expr] = STATE(1809), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_tele_arrow] = STATE(1811), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(1812), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(2243), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2249), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), + [2166] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), }, - [1818] = { - [sym__expr1] = STATE(2711), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(2712), - [sym__declaration] = STATE(2767), - [sym_function_clause] = STATE(1001), - [sym__declarations1] = STATE(2768), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_PIPE_RPAREN] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), - [anon_sym_rewrite] = ACTIONS(670), - [anon_sym_with] = ACTIONS(670), + [2167] = { + [anon_sym_RBRACE] = ACTIONS(3659), + [sym_comment] = ACTIONS(86), }, - [1819] = { - [sym_anonymous_name] = STATE(2769), - [sym_name] = ACTIONS(3279), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), + [2168] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3661), + [sym_comment] = ACTIONS(86), }, - [1820] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_PIPE_RPAREN] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(678), - [anon_sym_rewrite] = ACTIONS(678), - [anon_sym_with] = ACTIONS(678), + [2169] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3661), }, - [1821] = { - [sym_where_clause] = STATE(2770), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(2261), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_PIPE_RPAREN] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(2263), - [anon_sym_rewrite] = ACTIONS(678), - [anon_sym_with] = ACTIONS(678), + [2170] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(3661), }, - [1822] = { - [sym__expr1] = STATE(998), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(999), - [sym__declaration] = STATE(1000), - [sym_function_clause] = STATE(1001), - [aux_sym_source_file_repeat1] = STATE(1822), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(2323), - [sym_set_n] = ACTIONS(2323), - [sym_name_at] = ACTIONS(2326), - [sym_qualified_name] = ACTIONS(2323), - [anon_sym__] = ACTIONS(2323), - [anon_sym_DOT] = ACTIONS(2326), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2332), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2335), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(2323), - [anon_sym_Prop] = ACTIONS(2323), - [anon_sym_Set] = ACTIONS(2323), - [anon_sym_quote] = ACTIONS(2323), - [anon_sym_quoteTerm] = ACTIONS(2323), - [anon_sym_unquote] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_LPAREN_PIPE] = ACTIONS(2347), - [anon_sym_PIPE_RPAREN] = ACTIONS(680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2323), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_rewrite] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), + [2171] = { + [anon_sym_RBRACE] = ACTIONS(3663), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3665), }, - [1823] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_PIPE_RPAREN] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), + [2172] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3663), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3667), }, - [1824] = { - [sym_atomic_expr] = STATE(2771), - [sym__atomic_expr_curly] = STATE(1836), - [sym__atomic_expr_no_curly] = STATE(1836), - [sym_literal] = ACTIONS(2265), - [sym_set_n] = ACTIONS(2265), - [sym_name_at] = ACTIONS(2267), - [sym_qualified_name] = ACTIONS(2265), - [anon_sym__] = ACTIONS(2265), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2271), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2265), - [anon_sym_Prop] = ACTIONS(2265), - [anon_sym_Set] = ACTIONS(2265), - [anon_sym_quote] = ACTIONS(2265), - [anon_sym_quoteTerm] = ACTIONS(2265), - [anon_sym_unquote] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_LPAREN_PIPE] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2265), + [2173] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3663), }, - [1825] = { - [sym_expr] = STATE(2773), + [2174] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3669), + }, + [2175] = { + [sym__layout_semicolon] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_DOT] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1925), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_COLON] = ACTIONS(1925), + }, + [2176] = { + [sym_expr] = STATE(3140), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -74246,7 +88119,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3281), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -74262,8 +88134,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1826] = { - [sym_expr] = STATE(2774), + [2177] = { + [sym__layout_semicolon] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(2366), + }, + [2178] = { + [sym_expr] = STATE(3141), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -74285,7 +88164,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3283), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -74300,69 +88178,131 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1827] = { - [sym_lambda_bindings] = STATE(2780), - [sym_untyped_bindings] = STATE(2781), - [sym_typed_bindings] = STATE(2781), - [anon_sym_DOT] = ACTIONS(3285), - [anon_sym_DOT_DOT] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3291), + [2179] = { + [sym_vclose] = STATE(3143), + [sym__layout_close_brace] = ACTIONS(3671), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3295), }, - [1828] = { - [sym_forall_bindings] = STATE(2782), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [2180] = { + [sym_expr] = STATE(3144), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [2181] = { + [anon_sym_RBRACE] = ACTIONS(2622), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [anon_sym_COLON] = ACTIONS(2624), }, - [1829] = { - [sym__expr1] = STATE(2783), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(2784), - [sym__declaration] = STATE(2785), - [sym_function_clause] = STATE(2786), - [aux_sym_source_file_repeat1] = STATE(2787), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(580), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [2182] = { + [sym_expr] = STATE(2190), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1830] = { - [sym_expr] = STATE(2788), + [2183] = { + [sym_expr] = STATE(2191), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2646), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [2184] = { + [sym_expr] = STATE(2204), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -74395,265 +88335,550 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3283), + [anon_sym_RPAREN] = ACTIONS(2646), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1831] = { - [sym_expr] = STATE(2789), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), + [2185] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + }, + [2186] = { + [sym_expr] = STATE(2190), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [2187] = { + [sym_expr] = STATE(2191), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2646), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [2188] = { + [sym_expr] = STATE(2204), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(2646), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [2189] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + }, + [2190] = { + [anon_sym_RBRACE] = ACTIONS(3673), + [sym_comment] = ACTIONS(86), + }, + [2191] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3675), + [sym_comment] = ACTIONS(86), + }, + [2192] = { + [anon_sym_LBRACE] = ACTIONS(3677), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3679), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(3681), + }, + [2193] = { + [sym__application] = STATE(3151), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(3152), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(3683), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), + }, + [2194] = { + [sym__application] = STATE(3153), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3683), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [2195] = { + [sym_vopen] = STATE(3154), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), + }, + [2196] = { + [sym_binding_name] = STATE(3155), + [sym__application] = STATE(3156), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(3683), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [1832] = { - [sym_literal] = ACTIONS(1302), - [sym_set_n] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [sym_name_at] = ACTIONS(1302), - [sym_qualified_name] = ACTIONS(1302), - [anon_sym__] = ACTIONS(1302), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1302), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_BSLASH] = ACTIONS(1302), - [anon_sym_where] = ACTIONS(1302), - [anon_sym_forall] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1302), - [anon_sym_Prop] = ACTIONS(1302), - [anon_sym_Set] = ACTIONS(1302), - [anon_sym_quote] = ACTIONS(1302), - [anon_sym_quoteTerm] = ACTIONS(1302), - [anon_sym_unquote] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LPAREN_PIPE] = ACTIONS(1302), - [anon_sym_PIPE_RPAREN] = ACTIONS(1302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_COLON] = ACTIONS(1302), - [anon_sym_module] = ACTIONS(1302), - [anon_sym_with] = ACTIONS(1302), + [2197] = { + [sym__layout_semicolon] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_RBRACE] = ACTIONS(757), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3685), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(757), }, - [1833] = { - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_in] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_PIPE_RPAREN] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), - [anon_sym_with] = ACTIONS(158), + [2198] = { + [sym_lambda_bindings] = STATE(3150), + [sym_untyped_bindings] = STATE(2198), + [sym_typed_bindings] = STATE(2198), + [sym__layout_semicolon] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(2648), + [anon_sym_DOT_DOT] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(3687), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2654), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COLON] = ACTIONS(763), }, - [1834] = { - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [2199] = { + [sym_expr] = STATE(3159), + [sym__expr1] = STATE(3160), + [sym__application] = STATE(1351), + [sym__expr2] = STATE(1352), + [sym__atomic_exprs1] = STATE(3161), + [sym_atomic_expr] = STATE(1354), + [sym__atomic_expr_curly] = STATE(1355), + [sym__atomic_expr_no_curly] = STATE(1355), + [sym_tele_arrow] = STATE(3162), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1357), + [aux_sym__application_repeat1] = STATE(1358), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1675), + [sym_set_n] = ACTIONS(1675), + [sym_name_at] = ACTIONS(1677), + [sym_qualified_name] = ACTIONS(1675), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1683), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1685), + [anon_sym_forall] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_QMARK] = ACTIONS(1675), + [anon_sym_Prop] = ACTIONS(1675), + [anon_sym_Set] = ACTIONS(1675), + [anon_sym_quote] = ACTIONS(1675), + [anon_sym_quoteTerm] = ACTIONS(1675), + [anon_sym_unquote] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_LPAREN_PIPE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), + }, + [2200] = { + [sym_where_clause] = STATE(3166), + [sym_rhs] = STATE(3167), + [sym__layout_semicolon] = ACTIONS(1717), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_in] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_PIPE_RPAREN] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), - [anon_sym_with] = ACTIONS(160), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(3689), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(3691), }, - [1835] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [2201] = { + [sym__layout_semicolon] = ACTIONS(1725), + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [anon_sym_SEMI] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_PIPE_RPAREN] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), }, - [1836] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [2202] = { + [sym__layout_semicolon] = ACTIONS(1727), + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [anon_sym_SEMI] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_PIPE_RPAREN] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), }, - [1837] = { - [sym__application] = STATE(2790), - [sym__expr2] = STATE(1834), + [2203] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1835), - [sym__atomic_expr_curly] = STATE(1836), - [sym__atomic_expr_no_curly] = STATE(1836), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(1838), - [sym_literal] = ACTIONS(2265), - [sym_set_n] = ACTIONS(2265), - [sym_name_at] = ACTIONS(2267), - [sym_qualified_name] = ACTIONS(2265), - [anon_sym__] = ACTIONS(2265), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2271), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2273), - [anon_sym_forall] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_QMARK] = ACTIONS(2265), - [anon_sym_Prop] = ACTIONS(2265), - [anon_sym_Set] = ACTIONS(2265), - [anon_sym_quote] = ACTIONS(2265), - [anon_sym_quoteTerm] = ACTIONS(2265), - [anon_sym_unquote] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_LPAREN_PIPE] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2265), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(2200), + [sym__declaration] = STATE(2201), + [sym_function_clause] = STATE(2202), + [aux_sym_source_file_repeat1] = STATE(3168), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_in] = ACTIONS(3693), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + [anon_sym_COLON] = ACTIONS(440), }, - [1838] = { - [sym__expr2] = STATE(2791), - [sym_atomic_expr] = STATE(1835), - [sym__atomic_expr_curly] = STATE(1836), - [sym__atomic_expr_no_curly] = STATE(1836), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2265), - [sym_set_n] = ACTIONS(2265), - [sym_name_at] = ACTIONS(2267), - [sym_qualified_name] = ACTIONS(2265), - [anon_sym__] = ACTIONS(2265), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2271), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2273), - [anon_sym_forall] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_QMARK] = ACTIONS(2265), - [anon_sym_Prop] = ACTIONS(2265), - [anon_sym_Set] = ACTIONS(2265), - [anon_sym_quote] = ACTIONS(2265), - [anon_sym_quoteTerm] = ACTIONS(2265), - [anon_sym_unquote] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_LPAREN_PIPE] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2265), + [2204] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3675), }, - [1839] = { + [2205] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(3675), + }, + [2206] = { + [sym_expr] = STATE(3169), + [sym__expr1] = STATE(1350), + [sym__application] = STATE(1351), + [sym__expr2] = STATE(1352), + [sym__atomic_exprs1] = STATE(1353), + [sym_atomic_expr] = STATE(1354), + [sym__atomic_expr_curly] = STATE(1355), + [sym__atomic_expr_no_curly] = STATE(1355), + [sym_tele_arrow] = STATE(1356), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1357), + [aux_sym__application_repeat1] = STATE(1358), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1675), + [sym_set_n] = ACTIONS(1675), + [sym_name_at] = ACTIONS(1677), + [sym_qualified_name] = ACTIONS(1675), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1683), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1685), + [anon_sym_forall] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_QMARK] = ACTIONS(1675), + [anon_sym_Prop] = ACTIONS(1675), + [anon_sym_Set] = ACTIONS(1675), + [anon_sym_quote] = ACTIONS(1675), + [anon_sym_quoteTerm] = ACTIONS(1675), + [anon_sym_unquote] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_LPAREN_PIPE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), + }, + [2207] = { + [sym__layout_semicolon] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_RBRACE] = ACTIONS(781), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(781), + }, + [2208] = { + [sym__layout_semicolon] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -74662,15 +88887,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(30), [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), [anon_sym_Prop] = ACTIONS(30), [anon_sym_Set] = ACTIONS(30), @@ -74679,36 +88903,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_PIPE_RPAREN] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), }, - [1840] = { - [sym_atomic_expr] = STATE(2792), - [sym__atomic_expr_curly] = STATE(1852), - [sym__atomic_expr_no_curly] = STATE(1852), - [sym_literal] = ACTIONS(2283), - [sym_set_n] = ACTIONS(2283), - [sym_name_at] = ACTIONS(2285), - [sym_qualified_name] = ACTIONS(2283), - [anon_sym__] = ACTIONS(2283), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2289), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2283), - [anon_sym_Prop] = ACTIONS(2283), - [anon_sym_Set] = ACTIONS(2283), - [anon_sym_quote] = ACTIONS(2283), - [anon_sym_quoteTerm] = ACTIONS(2283), - [anon_sym_unquote] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_LPAREN_PIPE] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2283), + [2209] = { + [sym_atomic_expr] = STATE(3170), + [sym__atomic_expr_curly] = STATE(2216), + [sym__atomic_expr_no_curly] = STATE(2216), + [sym_literal] = ACTIONS(2662), + [sym_set_n] = ACTIONS(2662), + [sym_name_at] = ACTIONS(2664), + [sym_qualified_name] = ACTIONS(2662), + [anon_sym__] = ACTIONS(2662), + [anon_sym_DOT] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2668), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2662), + [anon_sym_Prop] = ACTIONS(2662), + [anon_sym_Set] = ACTIONS(2662), + [anon_sym_quote] = ACTIONS(2662), + [anon_sym_quoteTerm] = ACTIONS(2662), + [anon_sym_unquote] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LPAREN_PIPE] = ACTIONS(2672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2662), }, - [1841] = { - [sym_expr] = STATE(2794), + [2210] = { + [sym_expr] = STATE(3172), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -74729,7 +88951,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3695), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -74745,8 +88967,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1842] = { - [sym_expr] = STATE(2795), + [2211] = { + [sym_expr] = STATE(3173), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -74768,7 +88990,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3299), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3697), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -74783,69 +89005,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1843] = { - [sym_lambda_bindings] = STATE(2801), - [sym_untyped_bindings] = STATE(2802), - [sym_typed_bindings] = STATE(2802), - [anon_sym_DOT] = ACTIONS(3301), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3307), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3311), - }, - [1844] = { - [sym_forall_bindings] = STATE(2803), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [1845] = { - [sym__expr1] = STATE(454), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(2804), - [sym__declaration] = STATE(2805), - [sym_function_clause] = STATE(2806), - [aux_sym_source_file_repeat1] = STATE(2807), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(580), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - }, - [1846] = { - [sym_expr] = STATE(2808), + [2212] = { + [sym_expr] = STATE(3174), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -74878,12 +89039,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3299), + [anon_sym_RPAREN] = ACTIONS(3697), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1847] = { - [sym_expr] = STATE(2809), + [2213] = { + [sym_expr] = STATE(3175), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -74919,97 +89080,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1848] = { - [sym_literal] = ACTIONS(1320), - [sym_set_n] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_name_at] = ACTIONS(1320), - [sym_qualified_name] = ACTIONS(1320), - [anon_sym__] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1320), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_BSLASH] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_forall] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_Prop] = ACTIONS(1320), - [anon_sym_Set] = ACTIONS(1320), - [anon_sym_quote] = ACTIONS(1320), - [anon_sym_quoteTerm] = ACTIONS(1320), - [anon_sym_unquote] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_LPAREN_PIPE] = ACTIONS(1320), - [anon_sym_PIPE_RPAREN] = ACTIONS(1320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1320), - [anon_sym_COLON] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - }, - [1849] = { - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_in] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_PIPE_RPAREN] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), - }, - [1850] = { - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_in] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_PIPE_RPAREN] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), + [2214] = { + [sym__layout_semicolon] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_RBRACE] = ACTIONS(787), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_COLON] = ACTIONS(787), }, - [1851] = { + [2215] = { + [sym__layout_semicolon] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -75018,15 +89098,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -75035,12 +89114,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_PIPE_RPAREN] = ACTIONS(164), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), }, - [1852] = { + [2216] = { + [sym__layout_semicolon] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -75049,15 +89127,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(168), [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -75066,102 +89143,368 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_PIPE_RPAREN] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - }, - [1853] = { - [sym__application] = STATE(2810), - [sym__expr2] = STATE(1850), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1851), - [sym__atomic_expr_curly] = STATE(1852), - [sym__atomic_expr_no_curly] = STATE(1852), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(1854), - [sym_literal] = ACTIONS(2283), - [sym_set_n] = ACTIONS(2283), - [sym_name_at] = ACTIONS(2285), - [sym_qualified_name] = ACTIONS(2283), - [anon_sym__] = ACTIONS(2283), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2289), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2291), - [anon_sym_forall] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_QMARK] = ACTIONS(2283), - [anon_sym_Prop] = ACTIONS(2283), - [anon_sym_Set] = ACTIONS(2283), - [anon_sym_quote] = ACTIONS(2283), - [anon_sym_quoteTerm] = ACTIONS(2283), - [anon_sym_unquote] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_LPAREN_PIPE] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2283), }, - [1854] = { - [sym__expr2] = STATE(2811), - [sym_atomic_expr] = STATE(1851), - [sym__atomic_expr_curly] = STATE(1852), - [sym__atomic_expr_no_curly] = STATE(1852), + [2217] = { + [sym__expr2] = STATE(2218), + [sym_atomic_expr] = STATE(2215), + [sym__atomic_expr_curly] = STATE(2216), + [sym__atomic_expr_no_curly] = STATE(2216), [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2283), - [sym_set_n] = ACTIONS(2283), - [sym_name_at] = ACTIONS(2285), - [sym_qualified_name] = ACTIONS(2283), - [anon_sym__] = ACTIONS(2283), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2289), + [sym_literal] = ACTIONS(2662), + [sym_set_n] = ACTIONS(2662), + [sym_name_at] = ACTIONS(2664), + [sym_qualified_name] = ACTIONS(2662), + [anon_sym__] = ACTIONS(2662), + [anon_sym_DOT] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2668), [sym_comment] = ACTIONS(18), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2291), - [anon_sym_forall] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_QMARK] = ACTIONS(2283), - [anon_sym_Prop] = ACTIONS(2283), - [anon_sym_Set] = ACTIONS(2283), - [anon_sym_quote] = ACTIONS(2283), - [anon_sym_quoteTerm] = ACTIONS(2283), - [anon_sym_unquote] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_LPAREN_PIPE] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2283), + [anon_sym_BSLASH] = ACTIONS(1685), + [anon_sym_forall] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_QMARK] = ACTIONS(2662), + [anon_sym_Prop] = ACTIONS(2662), + [anon_sym_Set] = ACTIONS(2662), + [anon_sym_quote] = ACTIONS(2662), + [anon_sym_quoteTerm] = ACTIONS(2662), + [anon_sym_unquote] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LPAREN_PIPE] = ACTIONS(2672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2662), }, - [1855] = { - [sym_literal] = ACTIONS(1322), - [sym_set_n] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [sym_name_at] = ACTIONS(1322), - [sym_qualified_name] = ACTIONS(1322), - [anon_sym__] = ACTIONS(1322), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1322), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_BSLASH] = ACTIONS(1322), - [anon_sym_where] = ACTIONS(1322), - [anon_sym_forall] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_in] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_Prop] = ACTIONS(1322), - [anon_sym_Set] = ACTIONS(1322), - [anon_sym_quote] = ACTIONS(1322), - [anon_sym_quoteTerm] = ACTIONS(1322), - [anon_sym_unquote] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_LPAREN_PIPE] = ACTIONS(1322), - [anon_sym_PIPE_RPAREN] = ACTIONS(1322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_module] = ACTIONS(1322), + [2218] = { + [sym__layout_semicolon] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_COLON] = ACTIONS(789), }, - [1856] = { + [2219] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_rewrite] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [2220] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_rewrite] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [2221] = { + [sym__application] = STATE(3176), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [2222] = { + [sym__application] = STATE(3177), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [2223] = { + [sym_binding_name] = STATE(3178), + [sym__application] = STATE(3179), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [2224] = { + [sym__layout_semicolon] = ACTIONS(1356), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + [anon_sym_rewrite] = ACTIONS(882), + [anon_sym_with] = ACTIONS(882), + }, + [2225] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(3699), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3701), + }, + [2226] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(3703), + [sym_comment] = ACTIONS(86), + }, + [2227] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3699), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3705), + }, + [2228] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(3184), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [2229] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3699), + }, + [2230] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3707), + }, + [2231] = { + [sym_expr] = STATE(3182), + [sym__expr1] = STATE(2241), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(2242), + [sym_atomic_expr] = STATE(2243), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), + [sym_tele_arrow] = STATE(2245), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(2246), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(2698), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2704), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), + }, + [2232] = { + [sym__application] = STATE(3186), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(2684), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [2233] = { + [sym__layout_semicolon] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -75170,6 +89513,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(30), @@ -75188,58 +89532,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_PIPE_RPAREN] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), [anon_sym_module] = ACTIONS(30), + [anon_sym_rewrite] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), }, - [1857] = { - [sym_atomic_expr] = STATE(2815), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(2303), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3315), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), + [2234] = { + [sym_atomic_expr] = STATE(3190), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(2698), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(3709), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3711), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), }, - [1858] = { - [sym_atomic_expr] = STATE(2815), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(2303), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3321), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), + [2235] = { + [sym_atomic_expr] = STATE(3190), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(2698), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(3715), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3717), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(3719), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), }, - [1859] = { - [sym_expr] = STATE(2820), + [2236] = { + [sym_expr] = STATE(3195), [sym__expr1] = STATE(38), [sym__application] = STATE(170), [sym__expr2] = STATE(40), @@ -75260,7 +89606,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3721), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -75276,8 +89622,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1860] = { - [sym_expr] = STATE(2821), + [2237] = { + [sym_expr] = STATE(3196), [sym__expr1] = STATE(60), [sym__application] = STATE(185), [sym__expr2] = STATE(62), @@ -75299,7 +89645,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3327), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3723), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -75314,69 +89660,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1861] = { - [sym_lambda_bindings] = STATE(2827), - [sym_untyped_bindings] = STATE(2828), - [sym_typed_bindings] = STATE(2828), - [anon_sym_DOT] = ACTIONS(3329), - [anon_sym_DOT_DOT] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3335), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3339), - }, - [1862] = { - [sym_forall_bindings] = STATE(2829), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [1863] = { - [sym__expr1] = STATE(454), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(2830), - [sym__declaration] = STATE(2831), - [sym_function_clause] = STATE(2832), - [aux_sym_source_file_repeat1] = STATE(2833), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(580), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - }, - [1864] = { - [sym_expr] = STATE(2834), + [2238] = { + [sym_expr] = STATE(3197), [sym__expr1] = STATE(110), [sym__application] = STATE(213), [sym__expr2] = STATE(40), @@ -75409,12 +89694,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(3327), + [anon_sym_RPAREN] = ACTIONS(3723), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1865] = { - [sym_expr] = STATE(2835), + [2239] = { + [sym_expr] = STATE(3198), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -75450,127 +89735,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1866] = { - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_PIPE_RPAREN] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - }, - [1867] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3341), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_PIPE_RPAREN] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [1868] = { - [sym_literal] = ACTIONS(158), - [sym_set_n] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [sym_name_at] = ACTIONS(158), - [sym_qualified_name] = ACTIONS(158), - [anon_sym__] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_LBRACE_LBRACE] = ACTIONS(158), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_where] = ACTIONS(158), - [anon_sym_forall] = ACTIONS(158), - [anon_sym_let] = ACTIONS(158), - [anon_sym_in] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_Prop] = ACTIONS(158), - [anon_sym_Set] = ACTIONS(158), - [anon_sym_quote] = ACTIONS(158), - [anon_sym_quoteTerm] = ACTIONS(158), - [anon_sym_unquote] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_LPAREN_PIPE] = ACTIONS(158), - [anon_sym_PIPE_RPAREN] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(158), - [anon_sym_module] = ACTIONS(158), + [2240] = { + [sym__layout_semicolon] = ACTIONS(1360), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_rewrite] = ACTIONS(1038), + [anon_sym_with] = ACTIONS(1038), }, - [1869] = { - [sym_literal] = ACTIONS(160), - [sym_set_n] = ACTIONS(160), - [anon_sym_SEMI] = ACTIONS(160), - [sym_name_at] = ACTIONS(160), - [sym_qualified_name] = ACTIONS(160), - [anon_sym__] = ACTIONS(160), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_LBRACE_LBRACE] = ACTIONS(160), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(160), - [anon_sym_BSLASH] = ACTIONS(160), - [anon_sym_where] = ACTIONS(160), - [anon_sym_forall] = ACTIONS(160), - [anon_sym_let] = ACTIONS(160), - [anon_sym_in] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(160), - [anon_sym_Prop] = ACTIONS(160), - [anon_sym_Set] = ACTIONS(160), - [anon_sym_quote] = ACTIONS(160), - [anon_sym_quoteTerm] = ACTIONS(160), - [anon_sym_unquote] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_LPAREN_PIPE] = ACTIONS(160), - [anon_sym_PIPE_RPAREN] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(160), - [anon_sym_module] = ACTIONS(160), + [2241] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3725), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_rewrite] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), }, - [1870] = { + [2242] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3343), + [anon_sym_DASH_GT] = ACTIONS(3727), [anon_sym_PIPE] = ACTIONS(162), }, - [1871] = { + [2243] = { + [sym__layout_semicolon] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -75579,6 +89816,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(166), @@ -75597,11 +89835,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_PIPE_RPAREN] = ACTIONS(164), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), [anon_sym_module] = ACTIONS(164), + [anon_sym_rewrite] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [1872] = { + [2244] = { + [sym__layout_semicolon] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -75610,6 +89851,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(168), @@ -75628,450 +89870,375 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_PIPE_RPAREN] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), [anon_sym_module] = ACTIONS(168), + [anon_sym_rewrite] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [1873] = { - [sym_expr] = STATE(2837), - [sym__expr1] = STATE(1867), - [sym__application] = STATE(1868), - [sym__expr2] = STATE(1869), - [sym__atomic_exprs1] = STATE(1870), - [sym_atomic_expr] = STATE(1871), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_tele_arrow] = STATE(1873), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1874), - [aux_sym__application_repeat1] = STATE(1875), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(2303), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2309), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2311), - [anon_sym_forall] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), - }, - [1874] = { - [sym__application] = STATE(2844), - [sym__expr2] = STATE(1869), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2845), - [sym__atomic_expr_curly] = STATE(2846), - [sym__atomic_expr_no_curly] = STATE(2846), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2847), - [sym_literal] = ACTIONS(3345), - [sym_set_n] = ACTIONS(3345), - [sym_name_at] = ACTIONS(3347), - [sym_qualified_name] = ACTIONS(3345), - [anon_sym__] = ACTIONS(3345), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3351), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2311), - [anon_sym_forall] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_QMARK] = ACTIONS(3345), - [anon_sym_Prop] = ACTIONS(3345), - [anon_sym_Set] = ACTIONS(3345), - [anon_sym_quote] = ACTIONS(3345), - [anon_sym_quoteTerm] = ACTIONS(3345), - [anon_sym_unquote] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_LPAREN_PIPE] = ACTIONS(3355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3345), + [2245] = { + [sym_expr] = STATE(3200), + [sym__expr1] = STATE(2241), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(2242), + [sym_atomic_expr] = STATE(2243), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), + [sym_tele_arrow] = STATE(2245), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(2246), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(2698), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2704), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), }, - [1875] = { - [sym__expr2] = STATE(2848), - [sym_atomic_expr] = STATE(1871), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), + [2246] = { + [sym__expr2] = STATE(1389), + [sym_atomic_expr] = STATE(2243), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(2303), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3315), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(2698), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(3709), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3711), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2311), - [anon_sym_forall] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), - }, - [1876] = { - [sym_semi] = STATE(2849), - [aux_sym__declarations1_repeat1] = STATE(2850), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_PIPE_RPAREN] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - }, - [1877] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_PIPE_RPAREN] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - }, - [1878] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3357), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), }, - [1879] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_PIPE_RPAREN] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - }, - [1880] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_PIPE_RPAREN] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), + [2247] = { + [sym__expr1] = STATE(3201), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), }, - [1881] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_PIPE_RPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), + [2248] = { + [sym__expr1] = STATE(3202), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), }, - [1882] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), + [2249] = { + [sym_with_expressions] = STATE(3203), + [sym__layout_semicolon] = ACTIONS(2746), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_rewrite] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), }, - [1883] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), + [2250] = { + [sym__layout_semicolon] = ACTIONS(2746), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_rewrite] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), }, - [1884] = { - [sym__application] = STATE(2852), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [2251] = { + [sym_expr] = STATE(3204), + [sym__expr1] = STATE(2241), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(2242), + [sym_atomic_expr] = STATE(2243), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), + [sym_tele_arrow] = STATE(2245), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(2246), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(2698), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2704), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), }, - [1885] = { - [sym__application] = STATE(2853), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [2252] = { + [sym_vopen] = STATE(3205), + [sym_declarations] = STATE(3206), + [sym__declarations0] = STATE(3207), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [1886] = { - [sym_binding_name] = STATE(2854), - [sym__application] = STATE(2855), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [2253] = { + [sym_anonymous_name] = STATE(3208), + [sym_name] = ACTIONS(3729), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [1887] = { - [ts_builtin_sym_end] = ACTIONS(968), - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), - [anon_sym_with] = ACTIONS(968), }, - [1888] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(3359), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3361), + [2254] = { + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_rewrite] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), }, - [1889] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(3363), - [sym_comment] = ACTIONS(86), + [2255] = { + [sym_where_clause] = STATE(3209), + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_rewrite] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), }, - [1890] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3359), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3365), + [2256] = { + [sym__expr1] = STATE(1371), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(1372), + [sym__declaration] = STATE(1373), + [sym_function_clause] = STATE(1374), + [aux_sym_source_file_repeat1] = STATE(2256), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(2766), + [sym_literal] = ACTIONS(2768), + [sym_set_n] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(2771), + [sym_qualified_name] = ACTIONS(2768), + [anon_sym__] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2777), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2780), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(2783), + [anon_sym_let] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_Prop] = ACTIONS(2768), + [anon_sym_Set] = ACTIONS(2768), + [anon_sym_quote] = ACTIONS(2768), + [anon_sym_quoteTerm] = ACTIONS(2768), + [anon_sym_unquote] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LPAREN_PIPE] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_rewrite] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), }, - [1891] = { - [ts_builtin_sym_end] = ACTIONS(30), + [2257] = { + [sym__layout_semicolon] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -76080,14 +90247,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), [anon_sym_Prop] = ACTIONS(30), [anon_sym_Set] = ACTIONS(30), @@ -76101,31 +90270,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(30), [anon_sym_with] = ACTIONS(30), }, - [1892] = { - [sym_atomic_expr] = STATE(2860), - [sym__atomic_expr_curly] = STATE(1904), - [sym__atomic_expr_no_curly] = STATE(1904), - [sym_literal] = ACTIONS(2366), - [sym_set_n] = ACTIONS(2366), - [sym_name_at] = ACTIONS(2368), - [sym_qualified_name] = ACTIONS(2366), - [anon_sym__] = ACTIONS(2366), - [anon_sym_DOT] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2372), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2366), - [anon_sym_Prop] = ACTIONS(2366), - [anon_sym_Set] = ACTIONS(2366), - [anon_sym_quote] = ACTIONS(2366), - [anon_sym_quoteTerm] = ACTIONS(2366), - [anon_sym_unquote] = ACTIONS(2366), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_LPAREN_PIPE] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2366), + [2258] = { + [sym_atomic_expr] = STATE(3210), + [sym__atomic_expr_curly] = STATE(2270), + [sym__atomic_expr_no_curly] = STATE(2270), + [sym_literal] = ACTIONS(2710), + [sym_set_n] = ACTIONS(2710), + [sym_name_at] = ACTIONS(2712), + [sym_qualified_name] = ACTIONS(2710), + [anon_sym__] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_Prop] = ACTIONS(2710), + [anon_sym_Set] = ACTIONS(2710), + [anon_sym_quote] = ACTIONS(2710), + [anon_sym_quoteTerm] = ACTIONS(2710), + [anon_sym_unquote] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_LPAREN_PIPE] = ACTIONS(2726), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), }, - [1893] = { - [sym_expr] = STATE(2862), + [2259] = { + [sym_expr] = STATE(3212), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -76146,7 +90315,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3731), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -76162,8 +90331,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1894] = { - [sym_expr] = STATE(2863), + [2260] = { + [sym_expr] = STATE(3213), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -76185,7 +90354,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3369), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3733), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -76200,57 +90369,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1895] = { - [sym_expr] = STATE(2866), - [sym__expr1] = STATE(2867), - [sym__application] = STATE(487), - [sym__expr2] = STATE(488), - [sym__atomic_exprs1] = STATE(2868), - [sym_atomic_expr] = STATE(1922), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [sym_tele_arrow] = STATE(2869), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2036), - [aux_sym__application_repeat1] = STATE(2870), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(3371), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2406), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), - }, - [1896] = { - [sym_lambda_bindings] = STATE(2871), - [sym_untyped_bindings] = STATE(2872), - [sym_typed_bindings] = STATE(2872), - [anon_sym_DOT] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1296), + [2261] = { + [sym_lambda_bindings] = STATE(3219), + [sym_untyped_bindings] = STATE(3220), + [sym_typed_bindings] = STATE(3220), + [anon_sym_DOT] = ACTIONS(3735), + [anon_sym_DOT_DOT] = ACTIONS(3737), + [anon_sym_LBRACE] = ACTIONS(3739), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3741), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_where] = ACTIONS(3743), + [anon_sym_LPAREN] = ACTIONS(3745), }, - [1897] = { - [sym_forall_bindings] = STATE(2873), + [2262] = { + [sym_forall_bindings] = STATE(3221), [sym_untyped_bindings] = STATE(81), [sym_typed_bindings] = STATE(81), [sym_typed_untyped_bindings1] = STATE(82), @@ -76262,44 +90394,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(86), [anon_sym_LPAREN] = ACTIONS(100), }, - [1898] = { - [sym__expr1] = STATE(2874), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [2263] = { + [sym__expr1] = STATE(3222), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2875), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(2876), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3223), + [sym__declaration] = STATE(3224), + [sym_function_clause] = STATE(3225), + [aux_sym_source_file_repeat1] = STATE(3226), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), }, - [1899] = { - [sym_expr] = STATE(2877), + [2264] = { + [sym_expr] = STATE(3227), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -76332,12 +90464,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3369), + [anon_sym_RPAREN] = ACTIONS(3733), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1900] = { - [sym_expr] = STATE(2878), + [2265] = { + [sym_expr] = STATE(3228), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -76373,68 +90505,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1901] = { - [sym__application] = STATE(2880), - [sym__expr2] = STATE(488), - [sym_atomic_expr] = STATE(1903), - [sym__atomic_expr_curly] = STATE(1904), - [sym__atomic_expr_no_curly] = STATE(1904), - [aux_sym__application_repeat1] = STATE(2881), - [sym_literal] = ACTIONS(2366), - [sym_set_n] = ACTIONS(2366), - [sym_name_at] = ACTIONS(2368), - [sym_qualified_name] = ACTIONS(2366), - [anon_sym__] = ACTIONS(2366), - [anon_sym_DOT] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2372), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3375), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(2366), - [anon_sym_Prop] = ACTIONS(2366), - [anon_sym_Set] = ACTIONS(2366), - [anon_sym_quote] = ACTIONS(2366), - [anon_sym_quoteTerm] = ACTIONS(2366), - [anon_sym_unquote] = ACTIONS(2366), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_LPAREN_PIPE] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2366), + [2266] = { + [sym__layout_semicolon] = ACTIONS(3747), + [sym_literal] = ACTIONS(1194), + [sym_set_n] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1194), + [sym_name_at] = ACTIONS(1194), + [sym_qualified_name] = ACTIONS(1194), + [anon_sym__] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1194), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1194), + [anon_sym_where] = ACTIONS(1194), + [anon_sym_forall] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_in] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(1194), + [anon_sym_Prop] = ACTIONS(1194), + [anon_sym_Set] = ACTIONS(1194), + [anon_sym_quote] = ACTIONS(1194), + [anon_sym_quoteTerm] = ACTIONS(1194), + [anon_sym_unquote] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LPAREN_PIPE] = ACTIONS(1194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), }, - [1902] = { - [ts_builtin_sym_end] = ACTIONS(1044), - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_with] = ACTIONS(1044), + [2267] = { + [sym__layout_semicolon] = ACTIONS(284), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + [anon_sym_with] = ACTIONS(158), }, - [1903] = { - [ts_builtin_sym_end] = ACTIONS(164), + [2268] = { + [sym__layout_semicolon] = ACTIONS(286), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [anon_sym_SEMI] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + [anon_sym_with] = ACTIONS(160), + }, + [2269] = { + [sym__layout_semicolon] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -76443,14 +90611,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -76464,8 +90634,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(164), [anon_sym_with] = ACTIONS(164), }, - [1904] = { - [ts_builtin_sym_end] = ACTIONS(168), + [2270] = { + [sym__layout_semicolon] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -76474,14 +90644,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -76495,204 +90667,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(168), [anon_sym_with] = ACTIONS(168), }, - [1905] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_with] = ACTIONS(1046), - }, - [1906] = { - [sym_semi] = STATE(2882), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2883), - [ts_builtin_sym_end] = ACTIONS(1048), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_with] = ACTIONS(1048), - }, - [1907] = { - [ts_builtin_sym_end] = ACTIONS(1052), - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_COLON] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_with] = ACTIONS(1052), - }, - [1908] = { - [sym__expr2] = STATE(1043), - [sym_atomic_expr] = STATE(1903), - [sym__atomic_expr_curly] = STATE(1904), - [sym__atomic_expr_no_curly] = STATE(1904), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(2366), - [sym_set_n] = ACTIONS(2366), - [sym_name_at] = ACTIONS(2368), - [sym_qualified_name] = ACTIONS(2366), - [anon_sym__] = ACTIONS(2366), - [anon_sym_DOT] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2372), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3375), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(2366), - [anon_sym_Prop] = ACTIONS(2366), - [anon_sym_Set] = ACTIONS(2366), - [anon_sym_quote] = ACTIONS(2366), - [anon_sym_quoteTerm] = ACTIONS(2366), - [anon_sym_unquote] = ACTIONS(2366), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_LPAREN_PIPE] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2366), - }, - [1909] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3359), - }, - [1910] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3377), - }, - [1911] = { - [sym_expr] = STATE(2858), - [sym__expr1] = STATE(1920), - [sym__application] = STATE(487), - [sym__expr2] = STATE(488), - [sym__atomic_exprs1] = STATE(1921), - [sym_atomic_expr] = STATE(1922), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [sym_tele_arrow] = STATE(1924), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(491), - [aux_sym__application_repeat1] = STATE(1925), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(2400), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(2402), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2406), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(618), - [anon_sym_forall] = ACTIONS(620), - [anon_sym_let] = ACTIONS(622), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), + [2271] = { + [sym__application] = STATE(3229), + [sym__expr2] = STATE(2268), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(2269), + [sym__atomic_expr_curly] = STATE(2270), + [sym__atomic_expr_no_curly] = STATE(2270), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(2272), + [sym_literal] = ACTIONS(2710), + [sym_set_n] = ACTIONS(2710), + [sym_name_at] = ACTIONS(2712), + [sym_qualified_name] = ACTIONS(2710), + [anon_sym__] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2718), + [anon_sym_forall] = ACTIONS(2720), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_Prop] = ACTIONS(2710), + [anon_sym_Set] = ACTIONS(2710), + [anon_sym_quote] = ACTIONS(2710), + [anon_sym_quoteTerm] = ACTIONS(2710), + [anon_sym_unquote] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_LPAREN_PIPE] = ACTIONS(2726), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), }, - [1912] = { - [sym__application] = STATE(2885), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(2364), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [2272] = { + [sym__expr2] = STATE(3230), + [sym_atomic_expr] = STATE(2269), + [sym__atomic_expr_curly] = STATE(2270), + [sym__atomic_expr_no_curly] = STATE(2270), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(2710), + [sym_set_n] = ACTIONS(2710), + [sym_name_at] = ACTIONS(2712), + [sym_qualified_name] = ACTIONS(2710), + [anon_sym__] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(2718), + [anon_sym_forall] = ACTIONS(2720), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_Prop] = ACTIONS(2710), + [anon_sym_Set] = ACTIONS(2710), + [anon_sym_quote] = ACTIONS(2710), + [anon_sym_quoteTerm] = ACTIONS(2710), + [anon_sym_unquote] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_LPAREN_PIPE] = ACTIONS(2726), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), }, - [1913] = { - [ts_builtin_sym_end] = ACTIONS(30), + [2273] = { + [sym__layout_semicolon] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -76701,15 +90737,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), [anon_sym_Prop] = ACTIONS(30), [anon_sym_Set] = ACTIONS(30), @@ -76721,170 +90758,207 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(30), [anon_sym_COLON] = ACTIONS(30), [anon_sym_module] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), - }, - [1914] = { - [sym_atomic_expr] = STATE(2889), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(2400), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3381), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), }, - [1915] = { - [sym_atomic_expr] = STATE(2889), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(2400), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3387), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), + [2274] = { + [sym_atomic_expr] = STATE(3231), + [sym__atomic_expr_curly] = STATE(2286), + [sym__atomic_expr_no_curly] = STATE(2286), + [sym_literal] = ACTIONS(2728), + [sym_set_n] = ACTIONS(2728), + [sym_name_at] = ACTIONS(2730), + [sym_qualified_name] = ACTIONS(2728), + [anon_sym__] = ACTIONS(2728), + [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2734), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2728), + [anon_sym_Prop] = ACTIONS(2728), + [anon_sym_Set] = ACTIONS(2728), + [anon_sym_quote] = ACTIONS(2728), + [anon_sym_quoteTerm] = ACTIONS(2728), + [anon_sym_unquote] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_LPAREN_PIPE] = ACTIONS(2744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), }, - [1916] = { - [sym_expr] = STATE(2894), + [2275] = { + [sym_expr] = STATE(3233), [sym__expr1] = STATE(38), - [sym__application] = STATE(170), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(3391), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(3749), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1917] = { - [sym_expr] = STATE(2895), + [2276] = { + [sym_expr] = STATE(3234), [sym__expr1] = STATE(60), - [sym__application] = STATE(185), + [sym__application] = STATE(61), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3751), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1918] = { - [sym_expr] = STATE(2896), + [2277] = { + [sym_lambda_bindings] = STATE(3240), + [sym_untyped_bindings] = STATE(3241), + [sym_typed_bindings] = STATE(3241), + [anon_sym_DOT] = ACTIONS(3753), + [anon_sym_DOT_DOT] = ACTIONS(3755), + [anon_sym_LBRACE] = ACTIONS(3757), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3759), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(3761), + [anon_sym_LPAREN] = ACTIONS(3763), + }, + [2278] = { + [sym_forall_bindings] = STATE(3242), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [2279] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3243), + [sym__declaration] = STATE(3244), + [sym_function_clause] = STATE(3245), + [aux_sym_source_file_repeat1] = STATE(3246), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [2280] = { + [sym_expr] = STATE(3247), [sym__expr1] = STATE(110), - [sym__application] = STATE(213), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(3751), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1919] = { - [sym_expr] = STATE(2897), + [2281] = { + [sym_expr] = STATE(3248), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -76920,42 +90994,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1920] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), + [2282] = { + [sym__layout_semicolon] = ACTIONS(3765), + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), }, - [1921] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3397), - [anon_sym_PIPE] = ACTIONS(162), + [2283] = { + [sym__layout_semicolon] = ACTIONS(284), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), }, - [1922] = { - [ts_builtin_sym_end] = ACTIONS(164), + [2284] = { + [sym__layout_semicolon] = ACTIONS(286), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [anon_sym_SEMI] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + }, + [2285] = { + [sym__layout_semicolon] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -76964,15 +91097,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -76984,10 +91118,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(166), [anon_sym_COLON] = ACTIONS(164), [anon_sym_module] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), }, - [1923] = { - [ts_builtin_sym_end] = ACTIONS(168), + [2286] = { + [sym__layout_semicolon] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -76996,15 +91129,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -77016,596 +91150,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(168), [anon_sym_COLON] = ACTIONS(168), [anon_sym_module] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), - }, - [1924] = { - [sym_expr] = STATE(2899), - [sym__expr1] = STATE(1920), - [sym__application] = STATE(487), - [sym__expr2] = STATE(488), - [sym__atomic_exprs1] = STATE(1921), - [sym_atomic_expr] = STATE(1922), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [sym_tele_arrow] = STATE(1924), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(491), - [aux_sym__application_repeat1] = STATE(1925), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(2400), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(2402), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2406), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(618), - [anon_sym_forall] = ACTIONS(620), - [anon_sym_let] = ACTIONS(622), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), - }, - [1925] = { - [sym__expr2] = STATE(1043), - [sym_atomic_expr] = STATE(1922), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(2400), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3381), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(618), - [anon_sym_forall] = ACTIONS(620), - [anon_sym_let] = ACTIONS(622), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), - }, - [1926] = { - [sym__expr1] = STATE(1233), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(2904), - [aux_sym__application_repeat1] = STATE(2905), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(3399), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3401), - [anon_sym_forall] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [1927] = { - [sym__expr1] = STATE(2906), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(2904), - [aux_sym__application_repeat1] = STATE(2905), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(3399), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3401), - [anon_sym_forall] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [1928] = { - [sym_with_expressions] = STATE(2907), - [ts_builtin_sym_end] = ACTIONS(646), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(2414), - }, - [1929] = { - [ts_builtin_sym_end] = ACTIONS(646), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(646), - }, - [1930] = { - [sym_expr] = STATE(2915), - [sym__expr1] = STATE(2916), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(2917), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(2920), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2904), - [aux_sym__application_repeat1] = STATE(2921), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3409), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3401), - [anon_sym_forall] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [1931] = { - [sym__expr1] = STATE(2874), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2875), - [sym__declaration] = STATE(2922), - [sym_function_clause] = STATE(1038), - [sym__declarations1] = STATE(2923), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(670), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), - [anon_sym_with] = ACTIONS(670), - }, - [1932] = { - [sym_anonymous_name] = STATE(2924), - [sym_name] = ACTIONS(3421), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), - }, - [1933] = { - [ts_builtin_sym_end] = ACTIONS(678), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(678), - [anon_sym_with] = ACTIONS(678), - }, - [1934] = { - [sym_where_clause] = STATE(2925), - [ts_builtin_sym_end] = ACTIONS(678), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(2418), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(2420), - [anon_sym_with] = ACTIONS(678), }, - [1935] = { - [sym__expr1] = STATE(1035), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [2287] = { + [sym__application] = STATE(3249), + [sym__expr2] = STATE(2284), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1036), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(1935), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(680), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(1174), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1183), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1189), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), - }, - [1936] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [1937] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - }, - [1938] = { - [sym__application] = STATE(2926), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), - }, - [1939] = { - [sym__application] = STATE(2927), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [sym_atomic_expr] = STATE(2285), + [sym__atomic_expr_curly] = STATE(2286), + [sym__atomic_expr_no_curly] = STATE(2286), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(2288), + [sym_literal] = ACTIONS(2728), + [sym_set_n] = ACTIONS(2728), + [sym_name_at] = ACTIONS(2730), + [sym_qualified_name] = ACTIONS(2728), + [anon_sym__] = ACTIONS(2728), + [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2734), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_forall] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2728), + [anon_sym_Prop] = ACTIONS(2728), + [anon_sym_Set] = ACTIONS(2728), + [anon_sym_quote] = ACTIONS(2728), + [anon_sym_quoteTerm] = ACTIONS(2728), + [anon_sym_unquote] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_LPAREN_PIPE] = ACTIONS(2744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), }, - [1940] = { - [sym_binding_name] = STATE(2928), - [sym__application] = STATE(2929), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [2288] = { + [sym__expr2] = STATE(3250), + [sym_atomic_expr] = STATE(2285), + [sym__atomic_expr_curly] = STATE(2286), + [sym__atomic_expr_no_curly] = STATE(2286), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(2728), + [sym_set_n] = ACTIONS(2728), + [sym_name_at] = ACTIONS(2730), + [sym_qualified_name] = ACTIONS(2728), + [anon_sym__] = ACTIONS(2728), + [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2734), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [1941] = { - [ts_builtin_sym_end] = ACTIONS(968), - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), - }, - [1942] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(3423), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3425), - }, - [1943] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(3427), - [sym_comment] = ACTIONS(86), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_forall] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2728), + [anon_sym_Prop] = ACTIONS(2728), + [anon_sym_Set] = ACTIONS(2728), + [anon_sym_quote] = ACTIONS(2728), + [anon_sym_quoteTerm] = ACTIONS(2728), + [anon_sym_unquote] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_LPAREN_PIPE] = ACTIONS(2744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), }, - [1944] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3423), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3429), + [2289] = { + [sym__layout_semicolon] = ACTIONS(3767), + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), }, - [1945] = { - [ts_builtin_sym_end] = ACTIONS(30), + [2290] = { + [sym__layout_semicolon] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -77614,14 +91252,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), [anon_sym_Prop] = ACTIONS(30), [anon_sym_Set] = ACTIONS(30), @@ -77634,243 +91275,168 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(30), [anon_sym_module] = ACTIONS(30), }, - [1946] = { - [sym_atomic_expr] = STATE(2934), - [sym__atomic_expr_curly] = STATE(1958), - [sym__atomic_expr_no_curly] = STATE(1958), - [sym_literal] = ACTIONS(2434), - [sym_set_n] = ACTIONS(2434), - [sym_name_at] = ACTIONS(2436), - [sym_qualified_name] = ACTIONS(2434), - [anon_sym__] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2440), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2434), - [anon_sym_Prop] = ACTIONS(2434), - [anon_sym_Set] = ACTIONS(2434), - [anon_sym_quote] = ACTIONS(2434), - [anon_sym_quoteTerm] = ACTIONS(2434), - [anon_sym_unquote] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_LPAREN_PIPE] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2434), + [2291] = { + [sym_atomic_expr] = STATE(3254), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(2750), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(3769), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3771), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(3773), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), }, - [1947] = { - [sym_expr] = STATE(2936), + [2292] = { + [sym_atomic_expr] = STATE(3254), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(2750), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(3775), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3777), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(3779), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), + }, + [2293] = { + [sym_expr] = STATE(3259), [sym__expr1] = STATE(38), - [sym__application] = STATE(39), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3431), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(3781), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1948] = { - [sym_expr] = STATE(2937), + [2294] = { + [sym_expr] = STATE(3260), [sym__expr1] = STATE(60), - [sym__application] = STATE(61), + [sym__application] = STATE(185), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), + [aux_sym__application_repeat1] = STATE(188), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3433), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), - }, - [1949] = { - [sym_expr] = STATE(2940), - [sym__expr1] = STATE(2941), - [sym__application] = STATE(503), - [sym__expr2] = STATE(504), - [sym__atomic_exprs1] = STATE(2942), - [sym_atomic_expr] = STATE(1976), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [sym_tele_arrow] = STATE(2943), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2039), - [aux_sym__application_repeat1] = STATE(2944), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(3435), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2474), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), - }, - [1950] = { - [sym_lambda_bindings] = STATE(2945), - [sym_untyped_bindings] = STATE(2946), - [sym_typed_bindings] = STATE(2946), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1314), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - }, - [1951] = { - [sym_forall_bindings] = STATE(2947), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [1952] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2949), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(2950), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3783), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1953] = { - [sym_expr] = STATE(2951), + [2295] = { + [sym_expr] = STATE(3261), [sym__expr1] = STATE(110), - [sym__application] = STATE(39), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3433), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(3783), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1954] = { - [sym_expr] = STATE(2952), + [2296] = { + [sym_expr] = STATE(3262), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -77906,67 +91472,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [1955] = { - [sym__application] = STATE(2954), - [sym__expr2] = STATE(504), - [sym_atomic_expr] = STATE(1957), - [sym__atomic_expr_curly] = STATE(1958), - [sym__atomic_expr_no_curly] = STATE(1958), - [aux_sym__application_repeat1] = STATE(2955), - [sym_literal] = ACTIONS(2434), - [sym_set_n] = ACTIONS(2434), - [sym_name_at] = ACTIONS(2436), - [sym_qualified_name] = ACTIONS(2434), - [anon_sym__] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2440), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3439), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(2434), - [anon_sym_Prop] = ACTIONS(2434), - [anon_sym_Set] = ACTIONS(2434), - [anon_sym_quote] = ACTIONS(2434), - [anon_sym_quoteTerm] = ACTIONS(2434), - [anon_sym_unquote] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_LPAREN_PIPE] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2434), + [2297] = { + [sym__layout_semicolon] = ACTIONS(3785), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), }, - [1956] = { - [ts_builtin_sym_end] = ACTIONS(1044), - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), + [2298] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3787), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), }, - [1957] = { - [ts_builtin_sym_end] = ACTIONS(164), + [2299] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3789), + [anon_sym_PIPE] = ACTIONS(162), + }, + [2300] = { + [sym__layout_semicolon] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -77975,14 +91548,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -77995,8 +91571,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(164), [anon_sym_module] = ACTIONS(164), }, - [1958] = { - [ts_builtin_sym_end] = ACTIONS(168), + [2301] = { + [sym__layout_semicolon] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -78005,14 +91581,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -78025,280 +91604,1876 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(168), [anon_sym_module] = ACTIONS(168), }, - [1959] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), + [2302] = { + [sym_expr] = STATE(3264), + [sym__expr1] = STATE(2298), + [sym__application] = STATE(2283), + [sym__expr2] = STATE(2284), + [sym__atomic_exprs1] = STATE(2299), + [sym_atomic_expr] = STATE(2300), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_tele_arrow] = STATE(2302), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2287), + [aux_sym__application_repeat1] = STATE(2303), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(2750), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2756), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_forall] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), + }, + [2303] = { + [sym__expr2] = STATE(3250), + [sym_atomic_expr] = STATE(2300), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(2750), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(3769), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3771), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_forall] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(3773), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), }, - [1960] = { - [sym_semi] = STATE(2956), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2957), - [ts_builtin_sym_end] = ACTIONS(1048), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), + [2304] = { + [sym_vclose] = STATE(3266), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(3267), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(3791), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [2305] = { + [sym__layout_semicolon] = ACTIONS(3793), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + }, + [2306] = { + [sym__layout_semicolon] = ACTIONS(3795), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + }, + [2307] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(3797), + }, + [2308] = { + [sym__layout_semicolon] = ACTIONS(3799), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + }, + [2309] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + }, + [2310] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + }, + [2311] = { + [sym__application] = STATE(3269), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [2312] = { + [sym__application] = STATE(3270), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [2313] = { + [sym_binding_name] = STATE(3271), + [sym__application] = STATE(3272), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [2314] = { + [sym__layout_semicolon] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1356), + }, + [2315] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(3801), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3803), + }, + [2316] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(3805), + [sym_comment] = ACTIONS(86), + }, + [2317] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3801), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3807), + }, + [2318] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(3277), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [2319] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3801), + }, + [2320] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3809), + }, + [2321] = { + [sym_expr] = STATE(3275), + [sym__expr1] = STATE(2329), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(2330), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(2331), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2332), + [aux_sym__application_repeat1] = STATE(2333), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(2813), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(2815), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2817), + [anon_sym_forall] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [2322] = { + [sym__application] = STATE(3279), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(2807), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [2323] = { + [sym_atomic_expr] = STATE(1293), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(2813), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1621), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [2324] = { + [sym_atomic_expr] = STATE(1293), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(2813), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1627), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [2325] = { + [sym_lambda_bindings] = STATE(3280), + [sym_untyped_bindings] = STATE(3281), + [sym_typed_bindings] = STATE(3281), + [anon_sym_DOT] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1641), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1645), + }, + [2326] = { + [sym_forall_bindings] = STATE(3282), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [2327] = { + [sym__expr1] = STATE(1407), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3283), + [sym__declaration] = STATE(1309), + [sym_function_clause] = STATE(1310), + [aux_sym_source_file_repeat1] = STATE(3284), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(1747), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [2328] = { + [sym__layout_semicolon] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [sym_comment] = ACTIONS(86), + }, + [2329] = { + [sym__layout_semicolon] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(280), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3811), + }, + [2330] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3811), + [anon_sym_PIPE] = ACTIONS(162), + }, + [2331] = { + [sym_expr] = STATE(1315), + [sym__expr1] = STATE(2329), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(2330), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(2331), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2332), + [aux_sym__application_repeat1] = STATE(2333), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(2813), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(2815), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2817), + [anon_sym_forall] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [2332] = { + [sym__application] = STATE(1322), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1323), + [sym__atomic_expr_curly] = STATE(1324), + [sym__atomic_expr_no_curly] = STATE(1324), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(3287), + [sym_literal] = ACTIONS(1651), + [sym_set_n] = ACTIONS(1651), + [sym_name_at] = ACTIONS(3813), + [sym_qualified_name] = ACTIONS(1651), + [anon_sym__] = ACTIONS(1651), + [anon_sym_DOT] = ACTIONS(3813), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1657), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2817), + [anon_sym_forall] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_Prop] = ACTIONS(1651), + [anon_sym_Set] = ACTIONS(1651), + [anon_sym_quote] = ACTIONS(1651), + [anon_sym_quoteTerm] = ACTIONS(1651), + [anon_sym_unquote] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LPAREN_PIPE] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1651), + }, + [2333] = { + [sym__expr2] = STATE(1326), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(2813), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1621), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(2817), + [anon_sym_forall] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [2334] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3815), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [2335] = { + [sym_lambda_bindings] = STATE(2224), + [sym_untyped_bindings] = STATE(2335), + [sym_typed_bindings] = STATE(2335), + [sym__layout_semicolon] = ACTIONS(763), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [anon_sym_SEMI] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(2688), + [anon_sym_DOT_DOT] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2692), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_rewrite] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), + }, + [2336] = { + [sym_expr] = STATE(2240), + [sym__expr1] = STATE(3291), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(3292), + [sym_atomic_expr] = STATE(2243), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), + [sym_tele_arrow] = STATE(3293), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(3294), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(3817), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(3819), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2704), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), + }, + [2337] = { + [sym__expr1] = STATE(1371), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(1372), + [sym__declaration] = STATE(1373), + [sym_function_clause] = STATE(1374), + [aux_sym_source_file_repeat1] = STATE(3298), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [2338] = { + [sym__expr1] = STATE(2266), + [sym__application] = STATE(2267), + [sym__expr2] = STATE(2268), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(2269), + [sym__atomic_expr_curly] = STATE(2270), + [sym__atomic_expr_no_curly] = STATE(2270), + [aux_sym__expr1_repeat1] = STATE(3303), + [aux_sym__application_repeat1] = STATE(3304), + [sym_literal] = ACTIONS(2710), + [sym_set_n] = ACTIONS(2710), + [sym_name_at] = ACTIONS(3821), + [sym_qualified_name] = ACTIONS(2710), + [anon_sym__] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3823), + [anon_sym_forall] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3827), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_Prop] = ACTIONS(2710), + [anon_sym_Set] = ACTIONS(2710), + [anon_sym_quote] = ACTIONS(2710), + [anon_sym_quoteTerm] = ACTIONS(2710), + [anon_sym_unquote] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_LPAREN_PIPE] = ACTIONS(2726), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), + }, + [2339] = { + [sym__expr1] = STATE(2282), + [sym__application] = STATE(2283), + [sym__expr2] = STATE(2284), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(2285), + [sym__atomic_expr_curly] = STATE(2286), + [sym__atomic_expr_no_curly] = STATE(2286), + [aux_sym__expr1_repeat1] = STATE(3309), + [aux_sym__application_repeat1] = STATE(3310), + [sym_literal] = ACTIONS(2728), + [sym_set_n] = ACTIONS(2728), + [sym_name_at] = ACTIONS(3829), + [sym_qualified_name] = ACTIONS(2728), + [anon_sym__] = ACTIONS(2728), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2734), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3831), + [anon_sym_forall] = ACTIONS(3833), + [anon_sym_let] = ACTIONS(3835), + [anon_sym_QMARK] = ACTIONS(2728), + [anon_sym_Prop] = ACTIONS(2728), + [anon_sym_Set] = ACTIONS(2728), + [anon_sym_quote] = ACTIONS(2728), + [anon_sym_quoteTerm] = ACTIONS(2728), + [anon_sym_unquote] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_LPAREN_PIPE] = ACTIONS(2744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), + }, + [2340] = { + [sym_with_expressions] = STATE(2289), + [sym__layout_semicolon] = ACTIONS(2746), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(2825), + }, + [2341] = { + [sym_expr] = STATE(3316), + [sym__expr1] = STATE(3317), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(3318), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(3319), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3320), + [aux_sym__application_repeat1] = STATE(3321), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3837), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3839), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3841), + [anon_sym_forall] = ACTIONS(3843), + [anon_sym_let] = ACTIONS(3845), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + }, + [2342] = { + [sym_vopen] = STATE(3322), + [sym_declarations] = STATE(3323), + [sym__declarations0] = STATE(3324), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [2343] = { + [sym_anonymous_name] = STATE(3325), + [sym_name] = ACTIONS(3847), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), + }, + [2344] = { + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + }, + [2345] = { + [sym_where_clause] = STATE(3326), + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(2829), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(2831), + }, + [2346] = { + [sym__expr1] = STATE(1407), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(1408), + [sym__declaration] = STATE(1409), + [sym_function_clause] = STATE(1410), + [aux_sym_source_file_repeat1] = STATE(2346), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym__layout_semicolon] = ACTIONS(2766), + [sym_literal] = ACTIONS(2768), + [sym_set_n] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(3849), + [sym_qualified_name] = ACTIONS(2768), + [anon_sym__] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2777), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3852), + [anon_sym_forall] = ACTIONS(3855), + [anon_sym_let] = ACTIONS(3858), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_Prop] = ACTIONS(2768), + [anon_sym_Set] = ACTIONS(2768), + [anon_sym_quote] = ACTIONS(2768), + [anon_sym_quoteTerm] = ACTIONS(2768), + [anon_sym_unquote] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LPAREN_PIPE] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), + }, + [2347] = { + [sym__layout_semicolon] = ACTIONS(3861), + [anon_sym_SEMI] = ACTIONS(3861), + [anon_sym_RBRACE] = ACTIONS(3861), + [sym_comment] = ACTIONS(86), + }, + [2348] = { + [ts_builtin_sym_end] = ACTIONS(3863), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + [anon_sym_rewrite] = ACTIONS(3863), + [anon_sym_with] = ACTIONS(3863), + }, + [2349] = { + [sym__layout_semicolon] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_RBRACE] = ACTIONS(757), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3865), + }, + [2350] = { + [sym_lambda_bindings] = STATE(2314), + [sym_untyped_bindings] = STATE(2350), + [sym_typed_bindings] = STATE(2350), + [sym__layout_semicolon] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1741), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(1745), + }, + [2351] = { + [sym_expr] = STATE(2328), + [sym__expr1] = STATE(707), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(710), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(713), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(714), + [aux_sym__application_repeat1] = STATE(715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(888), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(896), + [anon_sym_forall] = ACTIONS(898), + [anon_sym_let] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [2352] = { + [sym_where_clause] = STATE(2344), + [sym_rhs] = STATE(2345), + [sym__layout_semicolon] = ACTIONS(1717), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3867), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(2829), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(3867), + [anon_sym_module] = ACTIONS(2831), + }, + [2353] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(2352), + [sym__declaration] = STATE(1409), + [sym_function_clause] = STATE(1410), + [aux_sym_source_file_repeat1] = STATE(3329), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_in] = ACTIONS(3869), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [2354] = { + [sym__expr2] = STATE(1417), + [sym_atomic_expr] = STATE(758), + [sym__atomic_expr_curly] = STATE(759), + [sym__atomic_expr_no_curly] = STATE(759), + [aux_sym__application_repeat1] = STATE(767), + [sym_literal] = ACTIONS(936), + [sym_set_n] = ACTIONS(936), + [sym_name_at] = ACTIONS(1763), + [sym_qualified_name] = ACTIONS(936), + [anon_sym__] = ACTIONS(936), + [anon_sym_DOT] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_LBRACE_LBRACE] = ACTIONS(942), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1757), + [anon_sym_BSLASH] = ACTIONS(1765), + [anon_sym_forall] = ACTIONS(1767), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_QMARK] = ACTIONS(936), + [anon_sym_Prop] = ACTIONS(936), + [anon_sym_Set] = ACTIONS(936), + [anon_sym_quote] = ACTIONS(936), + [anon_sym_quoteTerm] = ACTIONS(936), + [anon_sym_unquote] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_LPAREN_PIPE] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(936), + }, + [2355] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + }, + [2356] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + }, + [2357] = { + [anon_sym_RBRACE] = ACTIONS(3871), + [sym_comment] = ACTIONS(86), + }, + [2358] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3873), + [sym_comment] = ACTIONS(86), + }, + [2359] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3873), + }, + [2360] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(3873), + }, + [2361] = { + [sym_expr] = STATE(681), + [sym__expr1] = STATE(1439), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(1440), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(1441), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1078), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [2362] = { + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + }, + [2363] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3875), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [2364] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3877), + [anon_sym_PIPE] = ACTIONS(162), + }, + [2365] = { + [sym_expr] = STATE(3333), + [sym__expr1] = STATE(2363), + [sym__application] = STATE(1250), + [sym__expr2] = STATE(1251), + [sym__atomic_exprs1] = STATE(2364), + [sym_atomic_expr] = STATE(1915), + [sym__atomic_expr_curly] = STATE(1916), + [sym__atomic_expr_no_curly] = STATE(1916), + [sym_tele_arrow] = STATE(2365), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1254), + [aux_sym__application_repeat1] = STATE(1918), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2350), + [sym_set_n] = ACTIONS(2350), + [sym_name_at] = ACTIONS(2352), + [sym_qualified_name] = ACTIONS(2350), + [anon_sym__] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2354), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2358), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_forall] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(2350), + [anon_sym_Prop] = ACTIONS(2350), + [anon_sym_Set] = ACTIONS(2350), + [anon_sym_quote] = ACTIONS(2350), + [anon_sym_quoteTerm] = ACTIONS(2350), + [anon_sym_unquote] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2350), + }, + [2366] = { + [sym_vclose] = STATE(3335), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(3336), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(3879), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [2367] = { + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + }, + [2368] = { + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + }, + [2369] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(3881), + }, + [2370] = { + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + }, + [2371] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + }, + [2372] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), }, - [1961] = { - [ts_builtin_sym_end] = ACTIONS(1052), - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_COLON] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), + [2373] = { + [anon_sym_RBRACE] = ACTIONS(3883), + [sym_comment] = ACTIONS(86), }, - [1962] = { - [sym__expr2] = STATE(1064), - [sym_atomic_expr] = STATE(1957), - [sym__atomic_expr_curly] = STATE(1958), - [sym__atomic_expr_no_curly] = STATE(1958), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(2434), - [sym_set_n] = ACTIONS(2434), - [sym_name_at] = ACTIONS(2436), - [sym_qualified_name] = ACTIONS(2434), - [anon_sym__] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2440), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3439), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(2434), - [anon_sym_Prop] = ACTIONS(2434), - [anon_sym_Set] = ACTIONS(2434), - [anon_sym_quote] = ACTIONS(2434), - [anon_sym_quoteTerm] = ACTIONS(2434), - [anon_sym_unquote] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_LPAREN_PIPE] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2434), + [2374] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3885), + [sym_comment] = ACTIONS(86), }, - [1963] = { + [2375] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3423), + [anon_sym_RPAREN] = ACTIONS(3885), }, - [1964] = { + [2376] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3441), + [anon_sym_PIPE_RPAREN] = ACTIONS(3885), }, - [1965] = { - [sym_expr] = STATE(2932), - [sym__expr1] = STATE(1974), - [sym__application] = STATE(503), - [sym__expr2] = STATE(504), - [sym__atomic_exprs1] = STATE(1975), - [sym_atomic_expr] = STATE(1976), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [sym_tele_arrow] = STATE(1978), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(507), - [aux_sym__application_repeat1] = STATE(1979), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(2468), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(2470), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2474), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(636), - [anon_sym_forall] = ACTIONS(638), - [anon_sym_let] = ACTIONS(640), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [2377] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), }, - [1966] = { - [sym__application] = STATE(2959), + [2378] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + }, + [2379] = { + [sym_expr] = STATE(2387), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(2891), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1967] = { - [ts_builtin_sym_end] = ACTIONS(30), - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [2380] = { + [sym_expr] = STATE(2388), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2893), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [1968] = { - [sym_atomic_expr] = STATE(2963), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(2468), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3445), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [2381] = { + [sym_expr] = STATE(2401), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(2893), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [1969] = { - [sym_atomic_expr] = STATE(2963), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(2468), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3451), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [2382] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), }, - [1970] = { - [sym_expr] = STATE(2968), + [2383] = { + [sym_expr] = STATE(2387), [sym__expr1] = STATE(38), - [sym__application] = STATE(170), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -78317,7 +93492,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(3455), + [anon_sym_RBRACE] = ACTIONS(2891), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -78333,10 +93508,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1971] = { - [sym_expr] = STATE(2969), + [2384] = { + [sym_expr] = STATE(2388), [sym__expr1] = STATE(60), - [sym__application] = STATE(185), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -78356,7 +93531,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3457), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2893), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -78371,10 +93546,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [1972] = { - [sym_expr] = STATE(2970), + [2385] = { + [sym_expr] = STATE(2401), [sym__expr1] = STATE(110), - [sym__application] = STATE(213), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -78405,559 +93580,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(3457), + [anon_sym_RPAREN] = ACTIONS(2893), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [1973] = { - [sym_expr] = STATE(2971), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [2386] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [1974] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), }, - [1975] = { + [2387] = { + [anon_sym_RBRACE] = ACTIONS(3887), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3461), - [anon_sym_PIPE] = ACTIONS(162), - }, - [1976] = { - [ts_builtin_sym_end] = ACTIONS(164), - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - }, - [1977] = { - [ts_builtin_sym_end] = ACTIONS(168), - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - }, - [1978] = { - [sym_expr] = STATE(2973), - [sym__expr1] = STATE(1974), - [sym__application] = STATE(503), - [sym__expr2] = STATE(504), - [sym__atomic_exprs1] = STATE(1975), - [sym_atomic_expr] = STATE(1976), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [sym_tele_arrow] = STATE(1978), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(507), - [aux_sym__application_repeat1] = STATE(1979), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(2468), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(2470), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2474), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(636), - [anon_sym_forall] = ACTIONS(638), - [anon_sym_let] = ACTIONS(640), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), - }, - [1979] = { - [sym__expr2] = STATE(1064), - [sym_atomic_expr] = STATE(1976), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(2468), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3445), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(636), - [anon_sym_forall] = ACTIONS(638), - [anon_sym_let] = ACTIONS(640), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), - }, - [1980] = { - [sym__expr1] = STATE(1249), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(2978), - [aux_sym__application_repeat1] = STATE(2979), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(3463), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3465), - [anon_sym_forall] = ACTIONS(3467), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), - }, - [1981] = { - [sym_with_expressions] = STATE(1256), - [ts_builtin_sym_end] = ACTIONS(646), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(2480), - }, - [1982] = { - [sym_expr] = STATE(2093), - [sym__expr1] = STATE(2982), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2983), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2984), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2978), - [aux_sym__application_repeat1] = STATE(2985), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3471), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3465), - [anon_sym_forall] = ACTIONS(3467), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [1983] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2949), - [sym__declaration] = STATE(2986), - [sym_function_clause] = STATE(1059), - [sym__declarations1] = STATE(2987), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(670), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), }, - [1984] = { - [sym_anonymous_name] = STATE(2988), - [sym_name] = ACTIONS(3475), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), - }, - [1985] = { - [ts_builtin_sym_end] = ACTIONS(678), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(678), - }, - [1986] = { - [sym_where_clause] = STATE(2989), - [ts_builtin_sym_end] = ACTIONS(678), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(2484), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(2486), - }, - [1987] = { - [sym__expr1] = STATE(1056), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1057), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(1987), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(680), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(1174), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1183), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1189), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - }, - [1988] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), + [2388] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3889), + [sym_comment] = ACTIONS(86), }, - [1989] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), + [2389] = { + [anon_sym_LBRACE] = ACTIONS(3891), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3893), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(3895), }, - [1990] = { - [sym__application] = STATE(2990), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [2390] = { + [sym__application] = STATE(3346), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(3347), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(3897), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [1991] = { - [sym__application] = STATE(2991), + [2391] = { + [sym__application] = STATE(3348), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), [sym_name_at] = ACTIONS(410), @@ -78966,99 +93677,303 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(410), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3897), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [2392] = { + [sym_vopen] = STATE(3349), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), + }, + [2393] = { + [sym_binding_name] = STATE(3350), + [sym__application] = STATE(3351), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(3897), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [2394] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(757), + }, + [2395] = { + [sym_lambda_bindings] = STATE(3345), + [sym_untyped_bindings] = STATE(2395), + [sym_typed_bindings] = STATE(2395), + [sym__layout_semicolon] = ACTIONS(763), + [sym__layout_close_brace] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(2895), + [anon_sym_DOT_DOT] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(3901), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2901), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(2905), + }, + [2396] = { + [sym_expr] = STATE(3354), + [sym__expr1] = STATE(3355), + [sym__application] = STATE(1473), + [sym__expr2] = STATE(1474), + [sym__atomic_exprs1] = STATE(3356), + [sym_atomic_expr] = STATE(1476), + [sym__atomic_expr_curly] = STATE(1477), + [sym__atomic_expr_no_curly] = STATE(1477), + [sym_tele_arrow] = STATE(3357), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1479), + [aux_sym__application_repeat1] = STATE(1480), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1829), + [sym_set_n] = ACTIONS(1829), + [sym_name_at] = ACTIONS(1831), + [sym_qualified_name] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1837), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1839), + [anon_sym_forall] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(1829), + [anon_sym_Prop] = ACTIONS(1829), + [anon_sym_Set] = ACTIONS(1829), + [anon_sym_quote] = ACTIONS(1829), + [anon_sym_quoteTerm] = ACTIONS(1829), + [anon_sym_unquote] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_LPAREN_PIPE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), + }, + [2397] = { + [sym_where_clause] = STATE(3361), + [sym_rhs] = STATE(3362), + [sym__layout_semicolon] = ACTIONS(1717), + [sym__layout_close_brace] = ACTIONS(1717), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(3903), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(3905), + [anon_sym_module] = ACTIONS(3907), + }, + [2398] = { + [sym__layout_semicolon] = ACTIONS(1725), + [sym__layout_close_brace] = ACTIONS(1725), + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [anon_sym_SEMI] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), }, - [1992] = { - [sym_binding_name] = STATE(2992), - [sym__application] = STATE(2993), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [2399] = { + [sym__layout_semicolon] = ACTIONS(1727), + [sym__layout_close_brace] = ACTIONS(1727), + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [anon_sym_SEMI] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), }, - [1993] = { - [ts_builtin_sym_end] = ACTIONS(968), - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), + [2400] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(2397), + [sym__declaration] = STATE(2398), + [sym_function_clause] = STATE(2399), + [aux_sym_source_file_repeat1] = STATE(3363), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_in] = ACTIONS(3909), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), }, - [1994] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(3477), + [2401] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3479), + [anon_sym_RPAREN] = ACTIONS(3889), }, - [1995] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(3481), + [2402] = { [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(3889), }, - [1996] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3477), + [2403] = { + [sym_expr] = STATE(3364), + [sym__expr1] = STATE(1472), + [sym__application] = STATE(1473), + [sym__expr2] = STATE(1474), + [sym__atomic_exprs1] = STATE(1475), + [sym_atomic_expr] = STATE(1476), + [sym__atomic_expr_curly] = STATE(1477), + [sym__atomic_expr_no_curly] = STATE(1477), + [sym_tele_arrow] = STATE(1478), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1479), + [aux_sym__application_repeat1] = STATE(1480), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1829), + [sym_set_n] = ACTIONS(1829), + [sym_name_at] = ACTIONS(1831), + [sym_qualified_name] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1837), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1839), + [anon_sym_forall] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(1829), + [anon_sym_Prop] = ACTIONS(1829), + [anon_sym_Set] = ACTIONS(1829), + [anon_sym_quote] = ACTIONS(1829), + [anon_sym_quoteTerm] = ACTIONS(1829), + [anon_sym_unquote] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_LPAREN_PIPE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), + }, + [2404] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym__layout_close_brace] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(781), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3483), }, - [1997] = { - [ts_builtin_sym_end] = ACTIONS(30), + [2405] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -79069,10 +93984,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), @@ -79084,33 +93998,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), }, - [1998] = { - [sym_atomic_expr] = STATE(2998), - [sym__atomic_expr_curly] = STATE(2010), - [sym__atomic_expr_no_curly] = STATE(2010), - [sym_literal] = ACTIONS(2500), - [sym_set_n] = ACTIONS(2500), - [sym_name_at] = ACTIONS(2502), - [sym_qualified_name] = ACTIONS(2500), - [anon_sym__] = ACTIONS(2500), - [anon_sym_DOT] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2506), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2500), - [anon_sym_Prop] = ACTIONS(2500), - [anon_sym_Set] = ACTIONS(2500), - [anon_sym_quote] = ACTIONS(2500), - [anon_sym_quoteTerm] = ACTIONS(2500), - [anon_sym_unquote] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2500), + [2406] = { + [sym_atomic_expr] = STATE(3365), + [sym__atomic_expr_curly] = STATE(2413), + [sym__atomic_expr_no_curly] = STATE(2413), + [sym_literal] = ACTIONS(2909), + [sym_set_n] = ACTIONS(2909), + [sym_name_at] = ACTIONS(2911), + [sym_qualified_name] = ACTIONS(2909), + [anon_sym__] = ACTIONS(2909), + [anon_sym_DOT] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2915), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2909), + [anon_sym_Prop] = ACTIONS(2909), + [anon_sym_Set] = ACTIONS(2909), + [anon_sym_quote] = ACTIONS(2909), + [anon_sym_quoteTerm] = ACTIONS(2909), + [anon_sym_unquote] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_LPAREN_PIPE] = ACTIONS(2919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2909), }, - [1999] = { - [sym_expr] = STATE(3000), + [2407] = { + [sym_expr] = STATE(3367), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -79131,7 +94044,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3485), + [anon_sym_RBRACE] = ACTIONS(3911), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -79147,8 +94060,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2000] = { - [sym_expr] = STATE(3001), + [2408] = { + [sym_expr] = STATE(3368), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -79170,7 +94083,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3487), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3913), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -79185,106 +94098,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2001] = { - [sym_expr] = STATE(3002), - [sym__expr1] = STATE(3003), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(3004), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(3005), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2046), - [aux_sym__application_repeat1] = STATE(2047), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(2546), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), - }, - [2002] = { - [sym_lambda_bindings] = STATE(3006), - [sym_untyped_bindings] = STATE(3007), - [sym_typed_bindings] = STATE(3007), - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1346), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1350), - }, - [2003] = { - [sym_forall_bindings] = STATE(3008), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [2004] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3009), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(3010), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [2005] = { - [sym_expr] = STATE(3011), + [2409] = { + [sym_expr] = STATE(3369), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -79317,12 +94132,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3487), + [anon_sym_RPAREN] = ACTIONS(3913), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2006] = { - [sym_expr] = STATE(3012), + [2410] = { + [sym_expr] = STATE(3370), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -79358,66 +94173,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [2007] = { - [sym__application] = STATE(3014), - [sym__expr2] = STATE(523), - [sym_atomic_expr] = STATE(2009), - [sym__atomic_expr_curly] = STATE(2010), - [sym__atomic_expr_no_curly] = STATE(2010), - [aux_sym__application_repeat1] = STATE(3015), - [sym_literal] = ACTIONS(2500), - [sym_set_n] = ACTIONS(2500), - [sym_name_at] = ACTIONS(2502), - [sym_qualified_name] = ACTIONS(2500), - [anon_sym__] = ACTIONS(2500), - [anon_sym_DOT] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2506), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3489), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(2500), - [anon_sym_Prop] = ACTIONS(2500), - [anon_sym_Set] = ACTIONS(2500), - [anon_sym_quote] = ACTIONS(2500), - [anon_sym_quoteTerm] = ACTIONS(2500), - [anon_sym_unquote] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2500), - }, - [2008] = { - [ts_builtin_sym_end] = ACTIONS(1044), - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), + [2411] = { + [sym__layout_semicolon] = ACTIONS(787), + [sym__layout_close_brace] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(787), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(787), }, - [2009] = { - [ts_builtin_sym_end] = ACTIONS(164), + [2412] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -79428,10 +94193,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(166), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), [anon_sym_QMARK] = ACTIONS(166), @@ -79443,10 +94207,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_module] = ACTIONS(164), }, - [2010] = { - [ts_builtin_sym_end] = ACTIONS(168), + [2413] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -79457,10 +94221,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), @@ -79472,483 +94235,277 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), }, - [2011] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), + [2414] = { + [sym__expr2] = STATE(2415), + [sym_atomic_expr] = STATE(2412), + [sym__atomic_expr_curly] = STATE(2413), + [sym__atomic_expr_no_curly] = STATE(2413), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(2909), + [sym_set_n] = ACTIONS(2909), + [sym_name_at] = ACTIONS(2911), + [sym_qualified_name] = ACTIONS(2909), + [anon_sym__] = ACTIONS(2909), + [anon_sym_DOT] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2915), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - }, - [2012] = { - [sym_semi] = STATE(3016), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3017), - [ts_builtin_sym_end] = ACTIONS(1048), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - }, - [2013] = { - [ts_builtin_sym_end] = ACTIONS(1052), - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - }, - [2014] = { - [sym__expr2] = STATE(1101), - [sym_atomic_expr] = STATE(2009), - [sym__atomic_expr_curly] = STATE(2010), - [sym__atomic_expr_no_curly] = STATE(2010), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(2500), - [sym_set_n] = ACTIONS(2500), - [sym_name_at] = ACTIONS(2502), - [sym_qualified_name] = ACTIONS(2500), - [anon_sym__] = ACTIONS(2500), - [anon_sym_DOT] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2506), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3489), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(2500), - [anon_sym_Prop] = ACTIONS(2500), - [anon_sym_Set] = ACTIONS(2500), - [anon_sym_quote] = ACTIONS(2500), - [anon_sym_quoteTerm] = ACTIONS(2500), - [anon_sym_unquote] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2500), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1839), + [anon_sym_forall] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(2909), + [anon_sym_Prop] = ACTIONS(2909), + [anon_sym_Set] = ACTIONS(2909), + [anon_sym_quote] = ACTIONS(2909), + [anon_sym_quoteTerm] = ACTIONS(2909), + [anon_sym_unquote] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_LPAREN_PIPE] = ACTIONS(2919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2909), }, - [2015] = { + [2415] = { + [sym__layout_semicolon] = ACTIONS(789), + [sym__layout_close_brace] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3477), + [anon_sym_EQ] = ACTIONS(789), }, - [2016] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3491), + [2416] = { + [sym__application] = STATE(3371), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [2017] = { - [sym_expr] = STATE(2996), - [sym__expr1] = STATE(2019), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(2020), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(2021), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(528), - [aux_sym__application_repeat1] = STATE(529), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(652), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), + [2417] = { + [sym__application] = STATE(3372), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(660), - [anon_sym_forall] = ACTIONS(662), - [anon_sym_let] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2018] = { - [sym__application] = STATE(3019), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(2498), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [2418] = { + [sym_binding_name] = STATE(3373), + [sym__application] = STATE(3374), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2019] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3493), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [2419] = { + [sym__layout_semicolon] = ACTIONS(1356), + [sym__layout_close_brace] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1356), }, - [2020] = { + [2420] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(3915), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3495), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(3917), }, - [2021] = { - [sym_expr] = STATE(3021), - [sym__expr1] = STATE(2019), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(2020), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(2021), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(528), - [aux_sym__application_repeat1] = STATE(529), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(652), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(660), - [anon_sym_forall] = ACTIONS(662), - [anon_sym_let] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), + [2421] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(3919), + [sym_comment] = ACTIONS(86), }, - [2022] = { - [sym_expr] = STATE(1267), - [sym__expr1] = STATE(3027), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3028), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3029), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3030), - [aux_sym__application_repeat1] = STATE(3031), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3497), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3499), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3501), - [anon_sym_forall] = ACTIONS(3503), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [2422] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3915), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3921), }, - [2023] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3009), - [sym__declaration] = STATE(3032), - [sym_function_clause] = STATE(1085), - [sym__declarations1] = STATE(3033), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(670), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_module] = ACTIONS(670), + [2423] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(3379), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), }, - [2024] = { - [sym_anonymous_name] = STATE(3034), - [sym_name] = ACTIONS(3507), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), + [2424] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(3915), }, - [2025] = { - [ts_builtin_sym_end] = ACTIONS(678), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(678), + [2425] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3923), }, - [2026] = { - [sym_where_clause] = STATE(3035), - [ts_builtin_sym_end] = ACTIONS(678), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(2534), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(2536), + [2426] = { + [sym_expr] = STATE(3377), + [sym__expr1] = STATE(1472), + [sym__application] = STATE(1473), + [sym__expr2] = STATE(1474), + [sym__atomic_exprs1] = STATE(1475), + [sym_atomic_expr] = STATE(1476), + [sym__atomic_expr_curly] = STATE(1477), + [sym__atomic_expr_no_curly] = STATE(1477), + [sym_tele_arrow] = STATE(1478), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1479), + [aux_sym__application_repeat1] = STATE(1480), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1829), + [sym_set_n] = ACTIONS(1829), + [sym_name_at] = ACTIONS(1831), + [sym_qualified_name] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1837), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1839), + [anon_sym_forall] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(1829), + [anon_sym_Prop] = ACTIONS(1829), + [anon_sym_Set] = ACTIONS(1829), + [anon_sym_quote] = ACTIONS(1829), + [anon_sym_quoteTerm] = ACTIONS(1829), + [anon_sym_unquote] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_LPAREN_PIPE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), }, - [2027] = { - [sym__expr1] = STATE(1056), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1083), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(2027), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(680), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(1174), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1183), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1189), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_module] = ACTIONS(680), + [2427] = { + [sym__application] = STATE(3381), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [2028] = { - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), + [2428] = { + [sym__layout_semicolon] = ACTIONS(1360), + [sym__layout_close_brace] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [sym_comment] = ACTIONS(86), }, - [2029] = { - [ts_builtin_sym_end] = ACTIONS(186), + [2429] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), [anon_sym_SEMI] = ACTIONS(186), @@ -79965,6 +94522,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), [anon_sym_Prop] = ACTIONS(186), [anon_sym_Set] = ACTIONS(186), @@ -79974,10 +94532,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), [anon_sym_module] = ACTIONS(186), + [anon_sym_rewrite] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [2030] = { - [ts_builtin_sym_end] = ACTIONS(228), + [2430] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), [anon_sym_SEMI] = ACTIONS(228), @@ -79994,6 +94556,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), [anon_sym_Prop] = ACTIONS(228), [anon_sym_Set] = ACTIONS(228), @@ -80003,651 +94566,735 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), [anon_sym_module] = ACTIONS(228), + [anon_sym_rewrite] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [2031] = { - [anon_sym_RBRACE] = ACTIONS(3509), + [2431] = { + [anon_sym_RBRACE] = ACTIONS(3925), [sym_comment] = ACTIONS(86), }, - [2032] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3511), + [2432] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(3927), [sym_comment] = ACTIONS(86), }, - [2033] = { + [2433] = { + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3931), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3511), + [anon_sym_LPAREN] = ACTIONS(3933), }, - [2034] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(3511), + [2434] = { + [sym__application] = STATE(3388), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(3389), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(3935), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [2035] = { - [sym_atomic_expr] = STATE(1023), - [sym__atomic_expr_curly] = STATE(490), - [sym__atomic_expr_no_curly] = STATE(490), - [sym_literal] = ACTIONS(610), - [sym_set_n] = ACTIONS(610), - [sym_name_at] = ACTIONS(2542), - [sym_qualified_name] = ACTIONS(610), - [anon_sym__] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_LBRACE_LBRACE] = ACTIONS(616), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_Prop] = ACTIONS(610), - [anon_sym_Set] = ACTIONS(610), - [anon_sym_quote] = ACTIONS(610), - [anon_sym_quoteTerm] = ACTIONS(610), - [anon_sym_unquote] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_LPAREN_PIPE] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(610), + [2435] = { + [sym__application] = STATE(3390), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3935), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2036] = { - [sym__application] = STATE(1042), - [sym__expr2] = STATE(488), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(489), - [sym__atomic_expr_curly] = STATE(490), - [sym__atomic_expr_no_curly] = STATE(490), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2037), - [sym_literal] = ACTIONS(610), - [sym_set_n] = ACTIONS(610), - [sym_name_at] = ACTIONS(2542), - [sym_qualified_name] = ACTIONS(610), - [anon_sym__] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_LBRACE_LBRACE] = ACTIONS(616), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_Prop] = ACTIONS(610), - [anon_sym_Set] = ACTIONS(610), - [anon_sym_quote] = ACTIONS(610), - [anon_sym_quoteTerm] = ACTIONS(610), - [anon_sym_unquote] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_LPAREN_PIPE] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(610), + [2436] = { + [sym_vopen] = STATE(3391), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), }, - [2037] = { - [sym__expr2] = STATE(1043), - [sym_atomic_expr] = STATE(489), - [sym__atomic_expr_curly] = STATE(490), - [sym__atomic_expr_no_curly] = STATE(490), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(610), - [sym_set_n] = ACTIONS(610), - [sym_name_at] = ACTIONS(2542), - [sym_qualified_name] = ACTIONS(610), - [anon_sym__] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_LBRACE_LBRACE] = ACTIONS(616), + [2437] = { + [sym_binding_name] = STATE(3392), + [sym__application] = STATE(3393), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_Prop] = ACTIONS(610), - [anon_sym_Set] = ACTIONS(610), - [anon_sym_quote] = ACTIONS(610), - [anon_sym_quoteTerm] = ACTIONS(610), - [anon_sym_unquote] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_LPAREN_PIPE] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(610), - }, - [2038] = { - [sym_atomic_expr] = STATE(1044), - [sym__atomic_expr_curly] = STATE(506), - [sym__atomic_expr_no_curly] = STATE(506), - [sym_literal] = ACTIONS(628), - [sym_set_n] = ACTIONS(628), - [sym_name_at] = ACTIONS(2544), - [sym_qualified_name] = ACTIONS(628), - [anon_sym__] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(2544), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LBRACE_LBRACE] = ACTIONS(634), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_Prop] = ACTIONS(628), - [anon_sym_Set] = ACTIONS(628), - [anon_sym_quote] = ACTIONS(628), - [anon_sym_quoteTerm] = ACTIONS(628), - [anon_sym_unquote] = ACTIONS(628), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LPAREN_PIPE] = ACTIONS(644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(3935), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2039] = { - [sym__application] = STATE(1063), - [sym__expr2] = STATE(504), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(505), - [sym__atomic_expr_curly] = STATE(506), - [sym__atomic_expr_no_curly] = STATE(506), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2040), - [sym_literal] = ACTIONS(628), - [sym_set_n] = ACTIONS(628), - [sym_name_at] = ACTIONS(2544), - [sym_qualified_name] = ACTIONS(628), - [anon_sym__] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(2544), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LBRACE_LBRACE] = ACTIONS(634), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_Prop] = ACTIONS(628), - [anon_sym_Set] = ACTIONS(628), - [anon_sym_quote] = ACTIONS(628), - [anon_sym_quoteTerm] = ACTIONS(628), - [anon_sym_unquote] = ACTIONS(628), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LPAREN_PIPE] = ACTIONS(644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), + [2438] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3937), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [2040] = { - [sym__expr2] = STATE(1064), - [sym_atomic_expr] = STATE(505), - [sym__atomic_expr_curly] = STATE(506), - [sym__atomic_expr_no_curly] = STATE(506), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(628), - [sym_set_n] = ACTIONS(628), - [sym_name_at] = ACTIONS(2544), - [sym_qualified_name] = ACTIONS(628), - [anon_sym__] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(2544), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LBRACE_LBRACE] = ACTIONS(634), + [2439] = { + [sym_lambda_bindings] = STATE(3387), + [sym_untyped_bindings] = STATE(2439), + [sym_typed_bindings] = STATE(2439), + [sym__layout_semicolon] = ACTIONS(763), + [sym__layout_close_brace] = ACTIONS(763), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [anon_sym_SEMI] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(3939), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3943), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_Prop] = ACTIONS(628), - [anon_sym_Set] = ACTIONS(628), - [anon_sym_quote] = ACTIONS(628), - [anon_sym_quoteTerm] = ACTIONS(628), - [anon_sym_unquote] = ACTIONS(628), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LPAREN_PIPE] = ACTIONS(644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - }, - [2041] = { - [sym_atomic_expr] = STATE(1068), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(2546), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1326), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_rewrite] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), }, - [2042] = { - [sym_atomic_expr] = STATE(1068), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(2546), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1332), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), + [2440] = { + [sym_expr] = STATE(3403), + [sym__expr1] = STATE(3404), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(3405), + [sym_atomic_expr] = STATE(3406), + [sym__atomic_expr_curly] = STATE(3407), + [sym__atomic_expr_no_curly] = STATE(3407), + [sym_tele_arrow] = STATE(3408), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(3409), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3947), + [sym_set_n] = ACTIONS(3947), + [sym_name_at] = ACTIONS(3949), + [sym_qualified_name] = ACTIONS(3947), + [anon_sym__] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3955), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_Prop] = ACTIONS(3947), + [anon_sym_Set] = ACTIONS(3947), + [anon_sym_quote] = ACTIONS(3947), + [anon_sym_quoteTerm] = ACTIONS(3947), + [anon_sym_unquote] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3947), }, - [2043] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3513), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [2441] = { + [sym__expr1] = STATE(1835), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(1836), + [sym__declaration] = STATE(1837), + [sym_function_clause] = STATE(1838), + [aux_sym_source_file_repeat1] = STATE(2814), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_rewrite] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [2044] = { + [2442] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_RPAREN] = ACTIONS(3927), }, - [2045] = { - [sym_expr] = STATE(1090), - [sym__expr1] = STATE(2043), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(2044), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(2045), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2046), - [aux_sym__application_repeat1] = STATE(2047), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(2546), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), + [2443] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(3927), }, - [2046] = { - [sym__application] = STATE(1097), - [sym__expr2] = STATE(523), + [2444] = { + [sym__expr1] = STATE(3419), + [sym__application] = STATE(3420), + [sym__expr2] = STATE(3421), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1098), - [sym__atomic_expr_curly] = STATE(1099), - [sym__atomic_expr_no_curly] = STATE(1099), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(3040), - [sym_literal] = ACTIONS(1358), - [sym_set_n] = ACTIONS(1358), - [sym_name_at] = ACTIONS(3517), - [sym_qualified_name] = ACTIONS(1358), - [anon_sym__] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1364), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_Prop] = ACTIONS(1358), - [anon_sym_Set] = ACTIONS(1358), - [anon_sym_quote] = ACTIONS(1358), - [anon_sym_quoteTerm] = ACTIONS(1358), - [anon_sym_unquote] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LPAREN_PIPE] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1358), + [sym_atomic_expr] = STATE(3422), + [sym__atomic_expr_curly] = STATE(3423), + [sym__atomic_expr_no_curly] = STATE(3423), + [aux_sym__expr1_repeat1] = STATE(3424), + [aux_sym__application_repeat1] = STATE(3425), + [sym_literal] = ACTIONS(3961), + [sym_set_n] = ACTIONS(3961), + [sym_name_at] = ACTIONS(3963), + [sym_qualified_name] = ACTIONS(3961), + [anon_sym__] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3967), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3969), + [anon_sym_forall] = ACTIONS(3971), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_Prop] = ACTIONS(3961), + [anon_sym_Set] = ACTIONS(3961), + [anon_sym_quote] = ACTIONS(3961), + [anon_sym_quoteTerm] = ACTIONS(3961), + [anon_sym_unquote] = ACTIONS(3961), + [anon_sym_LPAREN] = ACTIONS(3975), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3961), }, - [2047] = { - [sym__expr2] = STATE(1101), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(2546), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1326), + [2445] = { + [sym__expr1] = STATE(3435), + [sym__application] = STATE(3436), + [sym__expr2] = STATE(3437), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(3438), + [sym__atomic_expr_curly] = STATE(3439), + [sym__atomic_expr_no_curly] = STATE(3439), + [aux_sym__expr1_repeat1] = STATE(3440), + [aux_sym__application_repeat1] = STATE(3441), + [sym_literal] = ACTIONS(3979), + [sym_set_n] = ACTIONS(3979), + [sym_name_at] = ACTIONS(3981), + [sym_qualified_name] = ACTIONS(3979), + [anon_sym__] = ACTIONS(3979), + [anon_sym_DOT] = ACTIONS(3981), + [anon_sym_LBRACE] = ACTIONS(3983), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3985), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), + [anon_sym_BSLASH] = ACTIONS(3987), + [anon_sym_forall] = ACTIONS(3989), + [anon_sym_let] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_Prop] = ACTIONS(3979), + [anon_sym_Set] = ACTIONS(3979), + [anon_sym_quote] = ACTIONS(3979), + [anon_sym_quoteTerm] = ACTIONS(3979), + [anon_sym_unquote] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3993), + [anon_sym_LPAREN_PIPE] = ACTIONS(3995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), }, - [2048] = { - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), + [2446] = { + [sym_with_expressions] = STATE(3442), + [sym__layout_semicolon] = ACTIONS(2746), + [sym__layout_close_brace] = ACTIONS(2746), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(2951), }, - [2049] = { - [sym_semi] = STATE(1107), - [aux_sym__declarations1_repeat1] = STATE(2049), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), + [2447] = { + [sym__layout_semicolon] = ACTIONS(2746), + [sym__layout_close_brace] = ACTIONS(2746), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), }, - [2050] = { - [ts_builtin_sym_end] = ACTIONS(3524), - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), + [2448] = { + [sym_expr] = STATE(3453), + [sym__expr1] = STATE(3454), + [sym__application] = STATE(3455), + [sym__expr2] = STATE(3456), + [sym__atomic_exprs1] = STATE(3457), + [sym_atomic_expr] = STATE(3458), + [sym__atomic_expr_curly] = STATE(3459), + [sym__atomic_expr_no_curly] = STATE(3459), + [sym_tele_arrow] = STATE(3460), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3461), + [aux_sym__application_repeat1] = STATE(3462), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3997), + [sym_set_n] = ACTIONS(3997), + [sym_name_at] = ACTIONS(3999), + [sym_qualified_name] = ACTIONS(3997), + [anon_sym__] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(4001), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(4007), + [anon_sym_forall] = ACTIONS(4009), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_Prop] = ACTIONS(3997), + [anon_sym_Set] = ACTIONS(3997), + [anon_sym_quote] = ACTIONS(3997), + [anon_sym_quoteTerm] = ACTIONS(3997), + [anon_sym_unquote] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(4013), + [anon_sym_LPAREN_PIPE] = ACTIONS(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), }, - [2051] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), + [2449] = { + [sym_vopen] = STATE(3463), + [sym_declarations] = STATE(3464), + [sym__declarations0] = STATE(3465), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [2052] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), + [2450] = { + [sym_anonymous_name] = STATE(3466), + [sym_name] = ACTIONS(4017), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), }, - [2053] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), + [2451] = { + [sym__layout_semicolon] = ACTIONS(2764), + [sym__layout_close_brace] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), }, - [2054] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), + [2452] = { + [sym_where_clause] = STATE(3467), + [sym__layout_semicolon] = ACTIONS(2764), + [sym__layout_close_brace] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(2955), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(2957), }, - [2055] = { - [anon_sym_RBRACE] = ACTIONS(3526), - [sym_comment] = ACTIONS(86), + [2453] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(1503), + [sym__declaration] = STATE(1504), + [sym_function_clause] = STATE(1505), + [aux_sym_source_file_repeat1] = STATE(2453), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(2766), + [sym__layout_close_brace] = ACTIONS(2766), + [sym_literal] = ACTIONS(4019), + [sym_set_n] = ACTIONS(4019), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(4022), + [sym_qualified_name] = ACTIONS(4019), + [anon_sym__] = ACTIONS(4019), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4025), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4028), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(4031), + [anon_sym_forall] = ACTIONS(4034), + [anon_sym_let] = ACTIONS(4037), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_Prop] = ACTIONS(4019), + [anon_sym_Set] = ACTIONS(4019), + [anon_sym_quote] = ACTIONS(4019), + [anon_sym_quoteTerm] = ACTIONS(4019), + [anon_sym_unquote] = ACTIONS(4019), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LPAREN_PIPE] = ACTIONS(4043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4019), }, - [2056] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3526), - [sym_comment] = ACTIONS(86), + [2454] = { + [sym__layout_semicolon] = ACTIONS(787), + [sym__layout_close_brace] = ACTIONS(787), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [anon_sym_SEMI] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_rewrite] = ACTIONS(673), + [anon_sym_with] = ACTIONS(673), }, - [2057] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3526), + [2455] = { + [sym__layout_semicolon] = ACTIONS(789), + [sym__layout_close_brace] = ACTIONS(789), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), + [anon_sym_rewrite] = ACTIONS(693), + [anon_sym_with] = ACTIONS(693), }, - [2058] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), + [2456] = { + [sym__layout_semicolon] = ACTIONS(2799), + [sym__layout_close_brace] = ACTIONS(2799), + [anon_sym_SEMI] = ACTIONS(2799), + [sym_comment] = ACTIONS(86), }, - [2059] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), + [2457] = { + [sym_expr] = STATE(3468), + [sym__expr1] = STATE(1472), + [sym__application] = STATE(1473), + [sym__expr2] = STATE(1474), + [sym__atomic_exprs1] = STATE(1475), + [sym_atomic_expr] = STATE(1476), + [sym__atomic_expr_curly] = STATE(1477), + [sym__atomic_expr_no_curly] = STATE(1477), + [sym_tele_arrow] = STATE(1478), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1479), + [aux_sym__application_repeat1] = STATE(1480), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1829), + [sym_set_n] = ACTIONS(1829), + [sym_name_at] = ACTIONS(1831), + [sym_qualified_name] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1837), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1839), + [anon_sym_forall] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(1829), + [anon_sym_Prop] = ACTIONS(1829), + [anon_sym_Set] = ACTIONS(1829), + [anon_sym_quote] = ACTIONS(1829), + [anon_sym_quoteTerm] = ACTIONS(1829), + [anon_sym_unquote] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_LPAREN_PIPE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), }, - [2060] = { - [anon_sym_RBRACE] = ACTIONS(3528), + [2458] = { + [sym__layout_semicolon] = ACTIONS(4046), + [sym__layout_close_brace] = ACTIONS(4046), + [anon_sym_SEMI] = ACTIONS(4046), [sym_comment] = ACTIONS(86), }, - [2061] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3530), + [2459] = { + [sym_semi] = STATE(1514), + [aux_sym_lambda_where_clauses_repeat1] = STATE(2459), + [sym__layout_semicolon] = ACTIONS(4048), + [sym__layout_close_brace] = ACTIONS(4046), + [anon_sym_SEMI] = ACTIONS(4048), [sym_comment] = ACTIONS(86), }, - [2062] = { - [anon_sym_SEMI] = ACTIONS(280), - [anon_sym_RBRACE] = ACTIONS(280), + [2460] = { [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3532), - [anon_sym_COLON] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(4051), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(757), }, - [2063] = { + [2461] = { + [sym_lambda_bindings] = STATE(586), + [sym_untyped_bindings] = STATE(2461), + [sym_typed_bindings] = STATE(2461), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_LBRACE_LBRACE] = ACTIONS(254), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3532), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_COLON] = ACTIONS(763), }, - [2064] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(2062), + [2462] = { + [sym_expr] = STATE(592), + [sym__expr1] = STATE(3470), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2063), + [sym__atomic_exprs1] = STATE(3471), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2064), + [sym_tele_arrow] = STATE(3472), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1479), - [aux_sym__application_repeat1] = STATE(1480), + [aux_sym__expr1_repeat1] = STATE(1528), + [aux_sym__application_repeat1] = STATE(1529), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), + [sym_name_at] = ACTIONS(1889), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1891), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), + [anon_sym_BSLASH] = ACTIONS(1893), + [anon_sym_forall] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1897), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -80658,57 +95305,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2065] = { - [anon_sym_SEMI] = ACTIONS(819), - [anon_sym_RBRACE] = ACTIONS(819), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3534), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_COLON] = ACTIONS(819), - }, - [2066] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(2066), - [sym_typed_bindings] = STATE(2066), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COLON] = ACTIONS(825), + [2463] = { + [sym__expr1] = STATE(809), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(557), + [sym__declaration] = STATE(558), + [sym_function_clause] = STATE(559), + [aux_sym_source_file_repeat1] = STATE(3474), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(1006), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_in] = ACTIONS(4053), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_COLON] = ACTIONS(440), }, - [2067] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(2062), + [2464] = { + [sym_expr] = STATE(615), + [sym__expr1] = STATE(1525), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2063), + [sym__atomic_exprs1] = STATE(1526), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2064), + [sym_tele_arrow] = STATE(1527), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1479), - [aux_sym__application_repeat1] = STATE(1480), + [aux_sym__expr1_repeat1] = STATE(1528), + [aux_sym__application_repeat1] = STATE(1529), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), + [sym_name_at] = ACTIONS(1889), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1891), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), + [anon_sym_BSLASH] = ACTIONS(1893), + [anon_sym_forall] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1897), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -80719,68 +95381,265 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2068] = { - [sym_where_clause] = STATE(1151), - [sym_rhs] = STATE(1152), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [2465] = { + [sym_atomic_expr] = STATE(2876), + [sym__atomic_expr_curly] = STATE(1873), + [sym__atomic_expr_no_curly] = STATE(1873), + [sym_literal] = ACTIONS(2306), + [sym_set_n] = ACTIONS(2306), + [sym_name_at] = ACTIONS(2969), + [sym_qualified_name] = ACTIONS(2306), + [anon_sym__] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2312), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2306), + [anon_sym_Prop] = ACTIONS(2306), + [anon_sym_Set] = ACTIONS(2306), + [anon_sym_quote] = ACTIONS(2306), + [anon_sym_quoteTerm] = ACTIONS(2306), + [anon_sym_unquote] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_LPAREN_PIPE] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), + }, + [2466] = { + [sym__expr2] = STATE(229), + [sym_atomic_expr] = STATE(1872), + [sym__atomic_expr_curly] = STATE(1873), + [sym__atomic_expr_no_curly] = STATE(1873), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(2306), + [sym_set_n] = ACTIONS(2306), + [sym_name_at] = ACTIONS(2969), + [sym_qualified_name] = ACTIONS(2306), + [anon_sym__] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2312), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3536), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1456), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(3536), - [anon_sym_module] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1893), + [anon_sym_forall] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_QMARK] = ACTIONS(2306), + [anon_sym_Prop] = ACTIONS(2306), + [anon_sym_Set] = ACTIONS(2306), + [anon_sym_quote] = ACTIONS(2306), + [anon_sym_quoteTerm] = ACTIONS(2306), + [anon_sym_unquote] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_LPAREN_PIPE] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), }, - [2069] = { - [sym__expr1] = STATE(770), + [2467] = { + [sym_expr] = STATE(1562), + [sym__expr1] = STATE(2470), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(2471), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(2472), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(2473), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(2973), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [2468] = { + [sym_atomic_expr] = STATE(1570), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(2973), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1945), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [2469] = { + [sym_atomic_expr] = STATE(1570), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(2973), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1951), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [2470] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4055), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_rewrite] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), + }, + [2471] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4057), + [anon_sym_PIPE] = ACTIONS(162), + }, + [2472] = { + [sym_expr] = STATE(1580), + [sym__expr1] = STATE(2470), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(2471), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(2472), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(2473), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(2973), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [2473] = { + [sym__expr2] = STATE(400), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(2973), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1945), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [2474] = { + [sym__expr1] = STATE(875), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2068), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(3047), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), [sym_literal] = ACTIONS(102), [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(978), + [sym_name_at] = ACTIONS(1006), [sym_qualified_name] = ACTIONS(102), [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(1006), [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(460), [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(3538), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), [anon_sym_QMARK] = ACTIONS(102), [anon_sym_Prop] = ACTIONS(102), [anon_sym_Set] = ACTIONS(102), @@ -80790,137 +95649,565 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(116), [anon_sym_LPAREN_PIPE] = ACTIONS(118), [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(460), }, - [2070] = { + [2475] = { + [sym__expr1] = STATE(876), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(1006), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [2476] = { + [sym_expr] = STATE(878), + [sym__expr1] = STATE(2470), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(2471), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(2472), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(2473), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(2973), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [2477] = { + [sym__expr1] = STATE(93), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(98), + [sym__declaration] = STATE(99), + [sym_function_clause] = STATE(100), + [aux_sym_source_file_repeat1] = STATE(2477), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(2997), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(3000), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(3003), + [anon_sym_let] = ACTIONS(3006), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_rewrite] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), + }, + [2478] = { + [sym_atomic_expr] = STATE(1927), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(2977), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + }, + [2479] = { + [sym_lambda_bindings] = STATE(3476), + [sym_untyped_bindings] = STATE(3477), + [sym_typed_bindings] = STATE(3477), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2382), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2384), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3530), + [anon_sym_where] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2388), }, - [2071] = { + [2480] = { + [sym_forall_bindings] = STATE(3478), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(3530), + [anon_sym_LPAREN] = ACTIONS(100), }, - [2072] = { - [sym_expr] = STATE(1500), - [sym__expr1] = STATE(2062), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2063), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2064), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1479), - [aux_sym__application_repeat1] = STATE(1480), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [2481] = { + [sym__expr1] = STATE(3479), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(953), + [sym__declaration] = STATE(954), + [sym_function_clause] = STATE(955), + [aux_sym_source_file_repeat1] = STATE(3480), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(1006), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [2073] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(1139), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(1432), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3540), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), + [2482] = { + [sym__application] = STATE(1943), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(2483), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(2977), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2979), + [anon_sym_forall] = ACTIONS(2981), + [anon_sym_let] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [2074] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(1139), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(2162), - [aux_sym__application_repeat1] = STATE(1142), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(1432), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1438), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), - [sym_catchall_pragma] = ACTIONS(1450), + [2483] = { + [sym__expr2] = STATE(1944), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(2977), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(2979), + [anon_sym_forall] = ACTIONS(2981), + [anon_sym_let] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [2075] = { - [sym_semi] = STATE(2074), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3049), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(2674), + [2484] = { + [sym_atomic_expr] = STATE(1945), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(2985), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + }, + [2485] = { + [sym_lambda_bindings] = STATE(3481), + [sym_untyped_bindings] = STATE(3482), + [sym_typed_bindings] = STATE(3482), + [anon_sym_DOT] = ACTIONS(2394), + [anon_sym_DOT_DOT] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2400), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2674), - [anon_sym_COLON] = ACTIONS(2674), + [anon_sym_where] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2404), }, - [2076] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(1144), + [2486] = { + [sym_forall_bindings] = STATE(3483), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [2487] = { + [sym__expr1] = STATE(809), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(974), + [sym__declaration] = STATE(975), + [sym_function_clause] = STATE(976), + [aux_sym_source_file_repeat1] = STATE(3484), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(1006), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + }, + [2488] = { + [sym__application] = STATE(1960), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1128), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(2489), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(2985), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2987), + [anon_sym_forall] = ACTIONS(2989), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + }, + [2489] = { + [sym__expr2] = STATE(1961), + [sym_atomic_expr] = STATE(1128), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(2985), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(2987), + [anon_sym_forall] = ACTIONS(2989), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + }, + [2490] = { + [sym_atomic_expr] = STATE(2885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2993), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3385), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), + }, + [2491] = { + [sym_atomic_expr] = STATE(2885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2993), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3391), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), + }, + [2492] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4059), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [2493] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(162), + }, + [2494] = { + [sym_expr] = STATE(3333), + [sym__expr1] = STATE(2492), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2493), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2494), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2488), + [aux_sym__application_repeat1] = STATE(2495), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2993), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2987), + [anon_sym_forall] = ACTIONS(2989), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), + }, + [2495] = { + [sym__expr2] = STATE(1961), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2993), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3385), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(2987), + [anon_sym_forall] = ACTIONS(2989), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), + }, + [2496] = { + [sym_expr] = STATE(615), + [sym__expr1] = STATE(1544), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1145), + [sym__atomic_exprs1] = STATE(1545), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1146), + [sym_tele_arrow] = STATE(1546), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1147), + [aux_sym__expr1_repeat1] = STATE(1064), [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), @@ -80946,60 +96233,262 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2077] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), + [2497] = { + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), }, - [2078] = { - [sym_atomic_expr] = STATE(3050), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), + [2498] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4063), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [2499] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4065), + [anon_sym_PIPE] = ACTIONS(162), + }, + [2500] = { + [sym_expr] = STATE(3487), + [sym__expr1] = STATE(2498), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2499), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2500), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1130), + [aux_sym__application_repeat1] = STATE(1888), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2320), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2322), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_forall] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), + }, + [2501] = { + [sym_vclose] = STATE(3489), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(3490), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(4067), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [2502] = { + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + }, + [2503] = { + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + }, + [2504] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(4069), + }, + [2505] = { + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + }, + [2506] = { + [ts_builtin_sym_end] = ACTIONS(2588), [sym_literal] = ACTIONS(2588), [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(2590), + [sym_name_at] = ACTIONS(2588), [sym_qualified_name] = ACTIONS(2588), [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), - [sym_comment] = ACTIONS(18), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), [anon_sym_QMARK] = ACTIONS(2588), [anon_sym_Prop] = ACTIONS(2588), [anon_sym_Set] = ACTIONS(2588), [anon_sym_quote] = ACTIONS(2588), [anon_sym_quoteTerm] = ACTIONS(2588), [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_rewrite] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), }, - [2079] = { - [sym_expr] = STATE(3052), + [2507] = { + [sym_expr] = STATE(3492), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -81020,7 +96509,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3542), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -81036,8 +96524,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2080] = { - [sym_expr] = STATE(3053), + [2508] = { + [sym_expr] = STATE(3493), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -81059,7 +96547,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3544), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -81074,8 +96561,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2081] = { - [sym_expr] = STATE(3054), + [2509] = { + [sym_expr] = STATE(3494), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -81087,992 +96574,717 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3544), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [2082] = { - [sym_expr] = STATE(3055), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [2083] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - }, - [2084] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - }, - [2085] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(2083), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(2590), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), - }, - [2086] = { - [ts_builtin_sym_end] = ACTIONS(30), - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - }, - [2087] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2602), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [2088] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2602), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(3552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3554), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3556), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [2089] = { - [sym_expr] = STATE(3064), - [sym__expr1] = STATE(38), - [sym__application] = STATE(170), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(3558), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [2090] = { - [sym_expr] = STATE(3065), - [sym__expr1] = STATE(60), - [sym__application] = STATE(185), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3560), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), - }, - [2091] = { - [sym_expr] = STATE(3066), - [sym__expr1] = STATE(110), - [sym__application] = STATE(213), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(3560), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [2092] = { - [sym_expr] = STATE(3067), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [2093] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_COLON] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - }, - [2094] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3562), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [2095] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3564), - [anon_sym_PIPE] = ACTIONS(162), - }, - [2096] = { - [ts_builtin_sym_end] = ACTIONS(164), - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - }, - [2097] = { - [ts_builtin_sym_end] = ACTIONS(168), - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - }, - [2098] = { - [sym_expr] = STATE(3069), - [sym__expr1] = STATE(2094), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2095), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2098), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1254), - [aux_sym__application_repeat1] = STATE(2099), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2602), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2604), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1564), - [anon_sym_forall] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [2099] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2602), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1564), - [anon_sym_forall] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [2100] = { - [sym_semi] = STATE(3070), - [aux_sym__declarations1_repeat1] = STATE(3071), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - }, - [2101] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_RPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1380), - }, - [2102] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3566), - }, - [2103] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1386), - }, - [2104] = { - [anon_sym_SEMI] = ACTIONS(3568), - [anon_sym_DOT] = ACTIONS(3570), - [anon_sym_DOT_DOT] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_RBRACE] = ACTIONS(3568), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3568), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3568), - [anon_sym_EQ] = ACTIONS(3568), - [anon_sym_LPAREN] = ACTIONS(3568), - [anon_sym_RPAREN] = ACTIONS(3568), - [anon_sym_PIPE_RPAREN] = ACTIONS(3568), - [anon_sym_COLON] = ACTIONS(3568), - }, - [2105] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - }, - [2106] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2107] = { - [anon_sym_RBRACE] = ACTIONS(3572), + [2510] = { + [anon_sym_RBRACE] = ACTIONS(4071), [sym_comment] = ACTIONS(86), }, - [2108] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3574), + [2511] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4071), [sym_comment] = ACTIONS(86), }, - [2109] = { - [sym_atomic_expr] = STATE(588), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_LBRACE_LBRACE] = ACTIONS(775), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [2512] = { + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_RPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + [anon_sym_rewrite] = ACTIONS(2965), + [anon_sym_with] = ACTIONS(2965), }, - [2110] = { - [sym_atomic_expr] = STATE(588), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2622), + [2513] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4071), + }, + [2514] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_LBRACE_LBRACE] = ACTIONS(781), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_rewrite] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), }, - [2111] = { - [anon_sym_SEMI] = ACTIONS(280), - [anon_sym_RBRACE_RBRACE] = ACTIONS(280), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3576), - [anon_sym_COLON] = ACTIONS(280), + [2515] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_rewrite] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), }, - [2112] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3576), - [anon_sym_PIPE] = ACTIONS(162), + [2516] = { + [ts_builtin_sym_end] = ACTIONS(3017), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_RPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + [anon_sym_rewrite] = ACTIONS(3017), + [anon_sym_with] = ACTIONS(3017), }, - [2113] = { - [sym_expr] = STATE(278), - [sym__expr1] = STATE(2111), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(2112), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(2113), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2114), - [aux_sym__application_repeat1] = STATE(2115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2624), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [2517] = { + [ts_builtin_sym_end] = ACTIONS(3373), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_RPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_rewrite] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + }, + [2518] = { + [ts_builtin_sym_end] = ACTIONS(3375), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_RPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_rewrite] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + }, + [2519] = { + [sym_expr] = STATE(2516), + [sym__expr1] = STATE(1589), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(1590), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(1591), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(1592), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(1971), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_forall] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [2520] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4073), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [2521] = { + [sym_lambda_bindings] = STATE(2929), + [sym_untyped_bindings] = STATE(2521), + [sym_typed_bindings] = STATE(2521), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DOT_DOT] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3461), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_RPAREN] = ACTIONS(444), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), + }, + [2522] = { + [sym_expr] = STATE(2940), + [sym__expr1] = STATE(3499), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(3500), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(3501), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1601), + [aux_sym__application_repeat1] = STATE(3502), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4075), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1977), + [anon_sym_forall] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [2523] = { + [sym_rewrite_equations] = STATE(1748), + [sym_with_expressions] = STATE(1749), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_in] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_RPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(1132), + [anon_sym_with] = ACTIONS(152), }, - [2114] = { - [sym__application] = STATE(285), - [sym__expr2] = STATE(62), + [2524] = { + [sym__expr1] = STATE(2523), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2134), - [sym__atomic_expr_curly] = STATE(2135), - [sym__atomic_expr_no_curly] = STATE(2135), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(3077), - [sym_literal] = ACTIONS(2630), - [sym_set_n] = ACTIONS(2630), - [sym_name_at] = ACTIONS(3578), - [sym_qualified_name] = ACTIONS(2630), - [anon_sym__] = ACTIONS(2630), - [anon_sym_DOT] = ACTIONS(3578), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2636), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(2630), - [anon_sym_Prop] = ACTIONS(2630), - [anon_sym_Set] = ACTIONS(2630), - [anon_sym_quote] = ACTIONS(2630), - [anon_sym_quoteTerm] = ACTIONS(2630), - [anon_sym_unquote] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2638), - [anon_sym_LPAREN_PIPE] = ACTIONS(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2630), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(953), + [sym__declaration] = STATE(954), + [sym_function_clause] = STATE(955), + [aux_sym_source_file_repeat1] = STATE(3505), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [2115] = { - [sym__expr2] = STATE(289), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_LBRACE_LBRACE] = ACTIONS(775), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [2525] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4079), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [2116] = { - [anon_sym_SEMI] = ACTIONS(819), - [anon_sym_RBRACE_RBRACE] = ACTIONS(819), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3580), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_COLON] = ACTIONS(819), + [2526] = { + [sym_lambda_bindings] = STATE(2953), + [sym_untyped_bindings] = STATE(2526), + [sym_typed_bindings] = STATE(2526), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_DOT_DOT] = ACTIONS(3483), + [anon_sym_LBRACE] = ACTIONS(3485), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3487), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(3489), + [anon_sym_RPAREN] = ACTIONS(444), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), }, - [2117] = { - [sym_lambda_bindings] = STATE(679), - [sym_untyped_bindings] = STATE(2117), - [sym_typed_bindings] = STATE(2117), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_LBRACE_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE_RBRACE] = ACTIONS(825), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(342), - [anon_sym_COLON] = ACTIONS(825), + [2527] = { + [sym_expr] = STATE(2962), + [sym__expr1] = STATE(2006), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2007), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2008), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1607), + [aux_sym__application_repeat1] = STATE(2009), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2458), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2460), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1985), + [anon_sym_forall] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [2118] = { - [sym_expr] = STATE(699), - [sym__expr1] = STATE(2111), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(2112), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(2113), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2114), - [aux_sym__application_repeat1] = STATE(2115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2624), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [2528] = { + [sym__expr1] = STATE(408), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(974), + [sym__declaration] = STATE(975), + [sym_function_clause] = STATE(976), + [aux_sym_source_file_repeat1] = STATE(3507), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [2119] = { - [sym_where_clause] = STATE(1180), - [sym_rhs] = STATE(1181), + [2529] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4081), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + }, + [2530] = { + [sym_lambda_bindings] = STATE(2969), + [sym_untyped_bindings] = STATE(2530), + [sym_typed_bindings] = STATE(2530), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3509), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(3511), + [anon_sym_RPAREN] = ACTIONS(444), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + }, + [2531] = { + [sym_expr] = STATE(2978), + [sym__expr1] = STATE(1614), + [sym__application] = STATE(1145), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(1615), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_tele_arrow] = STATE(1616), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1617), + [aux_sym__application_repeat1] = STATE(1618), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1991), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1993), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1995), + [anon_sym_forall] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), + }, + [2532] = { + [sym_where_clause] = STATE(1813), + [sym_rhs] = STATE(1814), [sym_literal] = ACTIONS(170), [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), [sym_name_at] = ACTIONS(170), [sym_qualified_name] = ACTIONS(170), [anon_sym__] = ACTIONS(170), [anon_sym_DOT] = ACTIONS(170), [anon_sym_LBRACE] = ACTIONS(170), [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE_RBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3582), + [anon_sym_EQ] = ACTIONS(170), [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1492), + [anon_sym_where] = ACTIONS(170), [anon_sym_forall] = ACTIONS(170), [anon_sym_let] = ACTIONS(170), [anon_sym_in] = ACTIONS(170), @@ -82083,259 +97295,195 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(170), [anon_sym_unquote] = ACTIONS(170), [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_RPAREN] = ACTIONS(170), [anon_sym_LPAREN_PIPE] = ACTIONS(170), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(1494), + [anon_sym_COLON] = ACTIONS(1136), + [anon_sym_module] = ACTIONS(170), }, - [2120] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), + [2533] = { + [sym__expr1] = STATE(408), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2119), - [sym__declaration] = STATE(600), - [sym_function_clause] = STATE(601), - [aux_sym_source_file_repeat1] = STATE(3080), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(3584), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(460), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(2532), + [sym__declaration] = STATE(1001), + [sym_function_clause] = STATE(1002), + [aux_sym_source_file_repeat1] = STATE(3509), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [2121] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3574), + [2534] = { + [sym_expr] = STATE(2980), + [sym__expr1] = STATE(1614), + [sym__application] = STATE(1145), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(1615), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_tele_arrow] = STATE(1616), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1617), + [aux_sym__application_repeat1] = STATE(1618), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1991), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1993), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1995), + [anon_sym_forall] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), }, - [2122] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(3574), + [2535] = { + [sym_atomic_expr] = STATE(2981), + [sym__atomic_expr_curly] = STATE(1994), + [sym__atomic_expr_no_curly] = STATE(1994), + [sym_literal] = ACTIONS(2438), + [sym_set_n] = ACTIONS(2438), + [sym_name_at] = ACTIONS(3039), + [sym_qualified_name] = ACTIONS(2438), + [anon_sym__] = ACTIONS(2438), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2444), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2438), + [anon_sym_Prop] = ACTIONS(2438), + [anon_sym_Set] = ACTIONS(2438), + [anon_sym_quote] = ACTIONS(2438), + [anon_sym_quoteTerm] = ACTIONS(2438), + [anon_sym_unquote] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_LPAREN_PIPE] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2438), }, - [2123] = { - [sym_expr] = STATE(2304), - [sym__expr1] = STATE(2111), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(2112), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(2113), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2114), - [aux_sym__application_repeat1] = STATE(2115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2624), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [2536] = { + [sym__expr2] = STATE(1996), + [sym_atomic_expr] = STATE(1993), + [sym__atomic_expr_curly] = STATE(1994), + [sym__atomic_expr_no_curly] = STATE(1994), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(2438), + [sym_set_n] = ACTIONS(2438), + [sym_name_at] = ACTIONS(3039), + [sym_qualified_name] = ACTIONS(2438), + [anon_sym__] = ACTIONS(2438), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2444), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), - }, - [2124] = { - [sym__expr2] = STATE(289), - [sym_atomic_expr] = STATE(1168), - [sym__atomic_expr_curly] = STATE(1169), - [sym__atomic_expr_no_curly] = STATE(1169), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1466), - [sym_set_n] = ACTIONS(1466), - [sym_name_at] = ACTIONS(1468), - [sym_qualified_name] = ACTIONS(1466), - [anon_sym__] = ACTIONS(1466), - [anon_sym_DOT] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1472), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3586), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(1466), - [anon_sym_Prop] = ACTIONS(1466), - [anon_sym_Set] = ACTIONS(1466), - [anon_sym_quote] = ACTIONS(1466), - [anon_sym_quoteTerm] = ACTIONS(1466), - [anon_sym_unquote] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_LPAREN_PIPE] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1995), + [anon_sym_forall] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_QMARK] = ACTIONS(2438), + [anon_sym_Prop] = ACTIONS(2438), + [anon_sym_Set] = ACTIONS(2438), + [anon_sym_quote] = ACTIONS(2438), + [anon_sym_quoteTerm] = ACTIONS(2438), + [anon_sym_unquote] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_LPAREN_PIPE] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2438), }, - [2125] = { - [sym__application] = STATE(694), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(1168), - [sym__atomic_expr_curly] = STATE(1169), - [sym__atomic_expr_no_curly] = STATE(1169), - [sym_non_absurd_lambda_clause] = STATE(697), - [sym_absurd_lambda_clause] = STATE(697), - [sym_lambda_clause] = STATE(2306), - [aux_sym__application_repeat1] = STATE(1171), - [sym_literal] = ACTIONS(1466), - [sym_set_n] = ACTIONS(1466), - [sym_name_at] = ACTIONS(1468), - [sym_qualified_name] = ACTIONS(1466), - [anon_sym__] = ACTIONS(1466), - [anon_sym_DOT] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1472), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1474), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(1466), - [anon_sym_Prop] = ACTIONS(1466), - [anon_sym_Set] = ACTIONS(1466), - [anon_sym_quote] = ACTIONS(1466), - [anon_sym_quoteTerm] = ACTIONS(1466), - [anon_sym_unquote] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_LPAREN_PIPE] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1466), - [sym_catchall_pragma] = ACTIONS(1486), + [2537] = { + [anon_sym_RBRACE] = ACTIONS(4083), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4085), }, - [2126] = { - [sym_semi] = STATE(2125), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3082), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2674), + [2538] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4083), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2674), - [anon_sym_COLON] = ACTIONS(2674), + [anon_sym_COLON] = ACTIONS(4087), }, - [2127] = { - [sym_expr] = STATE(739), - [sym__expr1] = STATE(1173), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(1174), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(1175), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1176), - [aux_sym__application_repeat1] = STATE(188), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [2539] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4083), }, - [2128] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), + [2540] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4089), }, - [2129] = { - [sym_atomic_expr] = STATE(3083), - [sym__atomic_expr_curly] = STATE(2135), - [sym__atomic_expr_no_curly] = STATE(2135), - [sym_literal] = ACTIONS(2630), - [sym_set_n] = ACTIONS(2630), - [sym_name_at] = ACTIONS(2632), - [sym_qualified_name] = ACTIONS(2630), - [anon_sym__] = ACTIONS(2630), - [anon_sym_DOT] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2636), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2630), - [anon_sym_Prop] = ACTIONS(2630), - [anon_sym_Set] = ACTIONS(2630), - [anon_sym_quote] = ACTIONS(2630), - [anon_sym_quoteTerm] = ACTIONS(2630), - [anon_sym_unquote] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2638), - [anon_sym_LPAREN_PIPE] = ACTIONS(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2630), + [2541] = { + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_PIPE_RPAREN] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_rewrite] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), }, - [2130] = { - [sym_expr] = STATE(3085), + [2542] = { + [sym_expr] = STATE(3514), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -82356,7 +97504,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3588), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -82372,8 +97519,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2131] = { - [sym_expr] = STATE(3086), + [2543] = { + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_PIPE_RPAREN] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_rewrite] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), + }, + [2544] = { + [sym_expr] = STATE(3515), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -82395,7 +97573,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3590), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -82410,8 +97587,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2132] = { - [sym_expr] = STATE(3087), + [2545] = { + [sym_vclose] = STATE(3517), + [sym__layout_close_brace] = ACTIONS(4091), + [sym_comment] = ACTIONS(86), + }, + [2546] = { + [sym_expr] = STATE(3518), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -82444,214 +97626,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3590), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2133] = { - [sym_expr] = STATE(3088), - [sym__expr1] = STATE(126), + [2547] = { + [anon_sym_RBRACE] = ACTIONS(3041), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3043), + }, + [2548] = { + [sym_expr] = STATE(2556), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [2134] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2135] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), + [2549] = { + [sym_expr] = STATE(2557), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3065), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2136] = { - [sym__expr2] = STATE(289), - [sym_atomic_expr] = STATE(2134), - [sym__atomic_expr_curly] = STATE(2135), - [sym__atomic_expr_no_curly] = STATE(2135), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2630), - [sym_set_n] = ACTIONS(2630), - [sym_name_at] = ACTIONS(2632), - [sym_qualified_name] = ACTIONS(2630), - [anon_sym__] = ACTIONS(2630), - [anon_sym_DOT] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2636), + [2550] = { + [sym_expr] = STATE(2558), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(2630), - [anon_sym_Prop] = ACTIONS(2630), - [anon_sym_Set] = ACTIONS(2630), - [anon_sym_quote] = ACTIONS(2630), - [anon_sym_quoteTerm] = ACTIONS(2630), - [anon_sym_unquote] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2638), - [anon_sym_LPAREN_PIPE] = ACTIONS(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2630), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2137] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), + [2551] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - }, - [2138] = { - [sym_atomic_expr] = STATE(3092), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(2644), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(3592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3594), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(3596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - }, - [2139] = { - [sym_atomic_expr] = STATE(3092), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(2644), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3600), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_PIPE_RPAREN] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_rewrite] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [2140] = { - [sym_expr] = STATE(3097), + [2552] = { + [sym_expr] = STATE(2556), [sym__expr1] = STATE(38), - [sym__application] = STATE(170), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -82670,7 +97803,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(3604), + [anon_sym_RBRACE] = ACTIONS(3063), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -82686,10 +97819,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2141] = { - [sym_expr] = STATE(3098), + [2553] = { + [sym_expr] = STATE(2557), [sym__expr1] = STATE(60), - [sym__application] = STATE(185), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -82709,7 +97842,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3606), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3065), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -82724,10 +97857,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [2142] = { - [sym_expr] = STATE(3099), + [2554] = { + [sym_expr] = STATE(2558), [sym__expr1] = STATE(110), - [sym__application] = STATE(213), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -82758,963 +97891,911 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(3606), + [anon_sym_RPAREN] = ACTIONS(3065), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2143] = { - [sym_expr] = STATE(3100), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [2555] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_PIPE_RPAREN] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_rewrite] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [2144] = { - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_COLON] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), + [2556] = { + [anon_sym_RBRACE] = ACTIONS(4093), + [sym_comment] = ACTIONS(86), }, - [2145] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3608), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [2557] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4095), + [sym_comment] = ACTIONS(86), }, - [2146] = { + [2558] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3610), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_RPAREN] = ACTIONS(4095), }, - [2147] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), + [2559] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4095), }, - [2148] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), + [2560] = { + [sym_expr] = STATE(3521), + [sym__expr1] = STATE(1642), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(1643), + [sym_atomic_expr] = STATE(1644), + [sym__atomic_expr_curly] = STATE(1645), + [sym__atomic_expr_no_curly] = STATE(1645), + [sym_tele_arrow] = STATE(1646), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(1647), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2037), + [sym_set_n] = ACTIONS(2037), + [sym_name_at] = ACTIONS(2039), + [sym_qualified_name] = ACTIONS(2037), + [anon_sym__] = ACTIONS(2037), + [anon_sym_DOT] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2043), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2045), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_forall] = ACTIONS(554), + [anon_sym_let] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(2037), + [anon_sym_Prop] = ACTIONS(2037), + [anon_sym_Set] = ACTIONS(2037), + [anon_sym_quote] = ACTIONS(2037), + [anon_sym_quoteTerm] = ACTIONS(2037), + [anon_sym_unquote] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_LPAREN_PIPE] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2037), }, - [2149] = { - [sym_expr] = STATE(3102), - [sym__expr1] = STATE(2145), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(2146), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(2149), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1431), - [aux_sym__application_repeat1] = STATE(2150), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(2644), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2646), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1770), - [anon_sym_forall] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [2561] = { + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_PIPE_RPAREN] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_rewrite] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), }, - [2150] = { - [sym__expr2] = STATE(2399), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(2644), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(3592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3594), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1770), - [anon_sym_forall] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(3596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [2562] = { + [sym_literal] = ACTIONS(1194), + [sym_set_n] = ACTIONS(1194), + [sym_name_at] = ACTIONS(1194), + [sym_qualified_name] = ACTIONS(1194), + [anon_sym__] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1194), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1194), + [anon_sym_where] = ACTIONS(1194), + [anon_sym_forall] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_in] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(1194), + [anon_sym_Prop] = ACTIONS(1194), + [anon_sym_Set] = ACTIONS(1194), + [anon_sym_quote] = ACTIONS(1194), + [anon_sym_quoteTerm] = ACTIONS(1194), + [anon_sym_unquote] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LPAREN_PIPE] = ACTIONS(1194), + [anon_sym_PIPE_RPAREN] = ACTIONS(1194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_rewrite] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), }, - [2151] = { - [sym_semi] = STATE(3103), - [aux_sym__declarations1_repeat1] = STATE(3104), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), + [2563] = { + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_PIPE_RPAREN] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_rewrite] = ACTIONS(1212), + [anon_sym_with] = ACTIONS(1212), }, - [2152] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1380), + [2564] = { + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_PIPE_RPAREN] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_rewrite] = ACTIONS(1214), + [anon_sym_with] = ACTIONS(1214), }, - [2153] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3612), + [2565] = { + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_PIPE_RPAREN] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + [anon_sym_rewrite] = ACTIONS(1244), + [anon_sym_with] = ACTIONS(1244), }, - [2154] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1386), + [2566] = { + [sym_vclose] = STATE(3522), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(3523), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(4091), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [2155] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), + [2567] = { + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_PIPE_RPAREN] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), + [anon_sym_rewrite] = ACTIONS(1284), + [anon_sym_with] = ACTIONS(1284), }, - [2156] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), + [2568] = { + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_PIPE_RPAREN] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_rewrite] = ACTIONS(1286), + [anon_sym_with] = ACTIONS(1286), }, - [2157] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(1189), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1190), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(1191), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(760), - [aux_sym__application_repeat1] = STATE(761), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [2569] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(4097), + }, + [2570] = { + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_PIPE_RPAREN] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), + [anon_sym_rewrite] = ACTIONS(1292), + [anon_sym_with] = ACTIONS(1292), + }, + [2571] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_PIPE_RPAREN] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [2158] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(1189), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1190), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(1191), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(760), - [aux_sym__application_repeat1] = STATE(761), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [2572] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_PIPE_RPAREN] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [2159] = { - [sym_expr] = STATE(1267), - [sym__expr1] = STATE(3111), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3112), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3113), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3114), - [aux_sym__application_repeat1] = STATE(3115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3614), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [2573] = { + [anon_sym_RBRACE] = ACTIONS(4099), + [sym_comment] = ACTIONS(86), }, - [2160] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1195), - [sym__declaration] = STATE(202), - [sym_function_clause] = STATE(203), - [aux_sym_source_file_repeat1] = STATE(2160), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(2972), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2975), - [anon_sym_forall] = ACTIONS(2978), - [anon_sym_let] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), + [2574] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4101), + [sym_comment] = ACTIONS(86), }, - [2161] = { - [sym_expr] = STATE(2511), - [sym__expr1] = STATE(1189), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1190), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(1191), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(760), - [aux_sym__application_repeat1] = STATE(761), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [2575] = { + [anon_sym_LBRACE] = ACTIONS(4103), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4105), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(4107), + }, + [2576] = { + [sym__application] = STATE(3531), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(3532), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(4109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [2162] = { - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym_RBRACE] = ACTIONS(3624), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3624), - [anon_sym_RPAREN] = ACTIONS(3624), - [anon_sym_PIPE_RPAREN] = ACTIONS(3624), - [anon_sym_COLON] = ACTIONS(3624), + [2577] = { + [sym__application] = STATE(3533), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4109), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2163] = { - [sym_semi] = STATE(1201), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2163), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3624), + [2578] = { + [sym_vopen] = STATE(3534), + [sym__layout_open_brace] = ACTIONS(426), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3624), }, - [2164] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2676), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [2579] = { + [sym_binding_name] = STATE(3535), + [sym__application] = STATE(3536), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(4109), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2165] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2676), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2091), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [2580] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4111), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_PIPE_RPAREN] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [2166] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3629), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_rewrite] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), + [2581] = { + [sym_lambda_bindings] = STATE(3530), + [sym_untyped_bindings] = STATE(2581), + [sym_typed_bindings] = STATE(2581), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(4113), + [anon_sym_DOT_DOT] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4117), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(4119), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_PIPE_RPAREN] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), }, - [2167] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3631), - [anon_sym_PIPE] = ACTIONS(162), + [2582] = { + [sym_expr] = STATE(3546), + [sym__expr1] = STATE(3547), + [sym__application] = STATE(1668), + [sym__expr2] = STATE(1669), + [sym__atomic_exprs1] = STATE(3548), + [sym_atomic_expr] = STATE(3549), + [sym__atomic_expr_curly] = STATE(3550), + [sym__atomic_expr_no_curly] = STATE(3550), + [sym_tele_arrow] = STATE(3551), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1672), + [aux_sym__application_repeat1] = STATE(3552), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4121), + [sym_set_n] = ACTIONS(4121), + [sym_name_at] = ACTIONS(4123), + [sym_qualified_name] = ACTIONS(4121), + [anon_sym__] = ACTIONS(4121), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4129), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_forall] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_QMARK] = ACTIONS(4121), + [anon_sym_Prop] = ACTIONS(4121), + [anon_sym_Set] = ACTIONS(4121), + [anon_sym_quote] = ACTIONS(4121), + [anon_sym_quoteTerm] = ACTIONS(4121), + [anon_sym_unquote] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LPAREN_PIPE] = ACTIONS(4133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), }, - [2168] = { - [sym_expr] = STATE(1670), - [sym__expr1] = STATE(2166), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2167), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2168), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(2169), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2676), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [2583] = { + [sym_rewrite_equations] = STATE(3554), + [sym_with_expressions] = STATE(3555), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_in] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_PIPE_RPAREN] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(1162), + [anon_sym_with] = ACTIONS(152), }, - [2169] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2676), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), + [2584] = { + [sym_where_clause] = STATE(3559), + [sym_rhs] = STATE(3560), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(170), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_PIPE_RPAREN] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(170), + [anon_sym_with] = ACTIONS(170), }, - [2170] = { - [sym_expr] = STATE(2636), - [sym__expr1] = STATE(2166), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2167), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2168), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(2169), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2676), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [2585] = { + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_PIPE_RPAREN] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), + [anon_sym_with] = ACTIONS(178), }, - [2171] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(1516), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3633), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [2586] = { + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_PIPE_RPAREN] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), + [anon_sym_with] = ACTIONS(180), }, - [2172] = { - [sym__application] = STATE(906), - [sym__expr2] = STATE(95), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [sym_non_absurd_lambda_clause] = STATE(909), - [sym_absurd_lambda_clause] = STATE(909), - [sym_lambda_clause] = STATE(2638), - [aux_sym__application_repeat1] = STATE(1208), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(1516), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1518), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [sym_catchall_pragma] = ACTIONS(1520), + [2587] = { + [sym__expr1] = STATE(2583), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_lhs] = STATE(2584), + [sym__declaration] = STATE(2585), + [sym_function_clause] = STATE(2586), + [aux_sym_source_file_repeat1] = STATE(3561), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_PIPE_RPAREN] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [2173] = { - [sym_semi] = STATE(2172), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3118), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_rewrite] = ACTIONS(2001), - [anon_sym_with] = ACTIONS(2001), + [2588] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4101), }, - [2174] = { - [sym_expr] = STATE(2643), - [sym__expr1] = STATE(1212), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1213), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1214), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(1215), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(1524), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(1526), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(262), - [anon_sym_forall] = ACTIONS(264), - [anon_sym_let] = ACTIONS(266), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [2589] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4101), }, - [2175] = { - [sym_semi] = STATE(3119), - [aux_sym__declarations1_repeat1] = STATE(3120), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_rewrite] = ACTIONS(1376), - [anon_sym_with] = ACTIONS(1376), + [2590] = { + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_PIPE_RPAREN] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_with] = ACTIONS(673), }, - [2176] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3635), + [2591] = { + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_PIPE_RPAREN] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), + [anon_sym_with] = ACTIONS(693), }, - [2177] = { - [ts_builtin_sym_end] = ACTIONS(186), + [2592] = { [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), [sym_name_at] = ACTIONS(186), [sym_qualified_name] = ACTIONS(186), [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(186), @@ -83731,24 +98812,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(186), [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_PIPE_RPAREN] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), [anon_sym_COLON] = ACTIONS(186), [anon_sym_module] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), }, - [2178] = { - [ts_builtin_sym_end] = ACTIONS(228), + [2593] = { [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), [sym_name_at] = ACTIONS(228), [sym_qualified_name] = ACTIONS(228), [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(228), @@ -83765,37 +98842,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(228), [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_PIPE_RPAREN] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), [anon_sym_COLON] = ACTIONS(228), [anon_sym_module] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), }, - [2179] = { - [anon_sym_RBRACE] = ACTIONS(3637), + [2594] = { + [anon_sym_RBRACE] = ACTIONS(4135), [sym_comment] = ACTIONS(86), }, - [2180] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3639), + [2595] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4137), [sym_comment] = ACTIONS(86), }, - [2181] = { - [anon_sym_LBRACE] = ACTIONS(3641), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3643), + [2596] = { + [anon_sym_LBRACE] = ACTIONS(4139), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4141), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(3645), + [anon_sym_LPAREN] = ACTIONS(4143), }, - [2182] = { - [sym__application] = STATE(3128), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(3129), - [aux_sym__application_repeat1] = STATE(311), + [2597] = { + [sym__application] = STATE(3568), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(3569), + [aux_sym__application_repeat1] = STATE(312), [sym_literal] = ACTIONS(384), [sym_set_n] = ACTIONS(384), [sym_name_at] = ACTIONS(386), @@ -83803,7 +98879,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(384), [anon_sym_DOT] = ACTIONS(386), [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(3647), + [anon_sym_RBRACE] = ACTIONS(4145), [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(394), @@ -83821,13 +98897,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(384), [sym_catchall_pragma] = ACTIONS(406), }, - [2183] = { - [sym__application] = STATE(3130), + [2598] = { + [sym__application] = STATE(3570), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), [sym_name_at] = ACTIONS(410), @@ -83836,7 +98912,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(410), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3647), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4145), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(416), [anon_sym_forall] = ACTIONS(418), @@ -83851,62 +98927,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2184] = { - [sym__application] = STATE(3139), - [sym__expr2] = STATE(1235), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [sym_non_absurd_lambda_clause] = STATE(3142), - [sym_absurd_lambda_clause] = STATE(3142), - [sym_lambda_clause] = STATE(3143), - [sym_lambda_where_clauses] = STATE(3144), - [aux_sym__application_repeat1] = STATE(3145), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(3651), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3657), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - [sym_catchall_pragma] = ACTIONS(3663), + [2599] = { + [sym_vopen] = STATE(3571), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), }, - [2185] = { - [sym_binding_name] = STATE(3146), - [sym__application] = STATE(3147), + [2600] = { + [sym_binding_name] = STATE(3572), + [sym__application] = STATE(3573), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), [anon_sym_QMARK] = ACTIONS(408), [anon_sym_Prop] = ACTIONS(408), [anon_sym_Set] = ACTIONS(408), @@ -83914,149 +98960,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(408), [anon_sym_unquote] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(3647), + [anon_sym_RPAREN] = ACTIONS(4145), [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2186] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [2187] = { - [sym_lambda_bindings] = STATE(3127), - [sym_untyped_bindings] = STATE(2187), - [sym_typed_bindings] = STATE(2187), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3667), - [anon_sym_DOT_DOT] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_RBRACE] = ACTIONS(464), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3671), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), + [2601] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_PIPE_RPAREN] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [2188] = { - [sym_expr] = STATE(3144), - [sym__expr1] = STATE(3152), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3153), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3154), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1238), - [aux_sym__application_repeat1] = STATE(3155), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3675), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1546), - [anon_sym_forall] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [2602] = { + [sym_lambda_bindings] = STATE(3567), + [sym_untyped_bindings] = STATE(2602), + [sym_typed_bindings] = STATE(2602), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(4149), + [anon_sym_DOT_DOT] = ACTIONS(4149), + [anon_sym_LBRACE] = ACTIONS(4151), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4153), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_PIPE_RPAREN] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), }, - [2189] = { - [sym_rewrite_equations] = STATE(3157), - [sym_with_expressions] = STATE(1929), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(829), - [anon_sym_with] = ACTIONS(3679), + [2603] = { + [sym_expr] = STATE(3583), + [sym__expr1] = STATE(3584), + [sym__application] = STATE(1684), + [sym__expr2] = STATE(1685), + [sym__atomic_exprs1] = STATE(3585), + [sym_atomic_expr] = STATE(3586), + [sym__atomic_expr_curly] = STATE(3587), + [sym__atomic_expr_no_curly] = STATE(3587), + [sym_tele_arrow] = STATE(3588), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1688), + [aux_sym__application_repeat1] = STATE(3589), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4157), + [sym_set_n] = ACTIONS(4157), + [sym_name_at] = ACTIONS(4159), + [sym_qualified_name] = ACTIONS(4157), + [anon_sym__] = ACTIONS(4157), + [anon_sym_DOT] = ACTIONS(4161), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4163), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4165), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2077), + [anon_sym_forall] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_QMARK] = ACTIONS(4157), + [anon_sym_Prop] = ACTIONS(4157), + [anon_sym_Set] = ACTIONS(4157), + [anon_sym_quote] = ACTIONS(4157), + [anon_sym_quoteTerm] = ACTIONS(4157), + [anon_sym_unquote] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LPAREN_PIPE] = ACTIONS(4169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4157), }, - [2190] = { - [sym_where_clause] = STATE(1933), - [sym_rhs] = STATE(3161), + [2604] = { + [sym_where_clause] = STATE(3593), + [sym_rhs] = STATE(3594), [sym_literal] = ACTIONS(170), [sym_set_n] = ACTIONS(170), [sym_name_at] = ACTIONS(170), @@ -84064,12 +99075,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(170), [anon_sym_DOT] = ACTIONS(170), [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE] = ACTIONS(170), [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3681), + [anon_sym_EQ] = ACTIONS(170), [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(3683), + [anon_sym_where] = ACTIONS(170), [anon_sym_forall] = ACTIONS(170), [anon_sym_let] = ACTIONS(170), [anon_sym_in] = ACTIONS(170), @@ -84081,141 +99091,302 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(170), [anon_sym_LPAREN] = ACTIONS(170), [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_PIPE_RPAREN] = ACTIONS(170), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_module] = ACTIONS(3685), - [anon_sym_with] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(170), }, - [2191] = { - [sym__expr1] = STATE(2189), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [2605] = { + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_PIPE_RPAREN] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), + }, + [2606] = { + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_PIPE_RPAREN] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), + }, + [2607] = { + [sym__expr1] = STATE(438), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2190), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(3162), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_lhs] = STATE(2604), + [sym__declaration] = STATE(2605), + [sym_function_clause] = STATE(2606), + [aux_sym_source_file_repeat1] = STATE(3595), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_PIPE_RPAREN] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [2192] = { + [2608] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3639), + [anon_sym_RPAREN] = ACTIONS(4137), }, - [2193] = { + [2609] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(3639), + [anon_sym_PIPE_RPAREN] = ACTIONS(4137), }, - [2194] = { - [ts_builtin_sym_end] = ACTIONS(709), - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_in] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), - [anon_sym_with] = ACTIONS(709), + [2610] = { + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_PIPE_RPAREN] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), }, - [2195] = { - [ts_builtin_sym_end] = ACTIONS(729), - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_with] = ACTIONS(729), + [2611] = { + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_PIPE_RPAREN] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), + }, + [2612] = { + [sym_expr] = STATE(2620), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [2613] = { + [sym_expr] = STATE(2621), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3119), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [2614] = { + [sym_expr] = STATE(2634), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2196] = { - [ts_builtin_sym_end] = ACTIONS(186), + [2615] = { [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), [sym_name_at] = ACTIONS(186), [sym_qualified_name] = ACTIONS(186), [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), [anon_sym_EQ] = ACTIONS(186), [anon_sym_PIPE] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), @@ -84230,25 +99401,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(186), [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_PIPE_RPAREN] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), [anon_sym_module] = ACTIONS(186), }, - [2197] = { - [ts_builtin_sym_end] = ACTIONS(228), + [2616] = { + [sym_expr] = STATE(2620), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [2617] = { + [sym_expr] = STATE(2621), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3119), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [2618] = { + [sym_expr] = STATE(2634), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [2619] = { [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), [sym_name_at] = ACTIONS(228), [sym_qualified_name] = ACTIONS(228), [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(228), [anon_sym_EQ] = ACTIONS(228), [anon_sym_PIPE] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), @@ -84263,36 +99545,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(228), [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_PIPE_RPAREN] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), [anon_sym_module] = ACTIONS(228), }, - [2198] = { - [anon_sym_RBRACE] = ACTIONS(3687), + [2620] = { + [anon_sym_RBRACE] = ACTIONS(4171), [sym_comment] = ACTIONS(86), }, - [2199] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3689), + [2621] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4173), [sym_comment] = ACTIONS(86), }, - [2200] = { - [anon_sym_LBRACE] = ACTIONS(3691), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3693), + [2622] = { + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4177), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(4179), }, - [2201] = { - [sym__application] = STATE(3169), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(3170), - [aux_sym__application_repeat1] = STATE(311), + [2623] = { + [sym__application] = STATE(3602), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(3603), + [aux_sym__application_repeat1] = STATE(312), [sym_literal] = ACTIONS(384), [sym_set_n] = ACTIONS(384), [sym_name_at] = ACTIONS(386), @@ -84300,7 +99581,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(384), [anon_sym_DOT] = ACTIONS(386), [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(3697), + [anon_sym_RBRACE] = ACTIONS(4181), [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(394), @@ -84318,13 +99599,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(384), [sym_catchall_pragma] = ACTIONS(406), }, - [2202] = { - [sym__application] = STATE(3171), + [2624] = { + [sym__application] = STATE(3604), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), [sym_name_at] = ACTIONS(410), @@ -84333,7 +99614,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(410), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3697), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4181), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(416), [anon_sym_forall] = ACTIONS(418), @@ -84348,62 +99629,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2203] = { - [sym__application] = STATE(3180), - [sym__expr2] = STATE(1251), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [sym_non_absurd_lambda_clause] = STATE(3183), - [sym_absurd_lambda_clause] = STATE(3183), - [sym_lambda_clause] = STATE(3184), - [sym_lambda_where_clauses] = STATE(3185), - [aux_sym__application_repeat1] = STATE(3186), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(3701), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3701), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3707), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - [sym_catchall_pragma] = ACTIONS(3713), + [2625] = { + [sym_vopen] = STATE(3605), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), }, - [2204] = { - [sym_binding_name] = STATE(3187), - [sym__application] = STATE(3188), + [2626] = { + [sym_binding_name] = STATE(3606), + [sym__application] = STATE(3607), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), [anon_sym_QMARK] = ACTIONS(408), [anon_sym_Prop] = ACTIONS(408), [anon_sym_Set] = ACTIONS(408), @@ -84411,258 +99662,921 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(408), [anon_sym_unquote] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(3697), + [anon_sym_RPAREN] = ACTIONS(4181), [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2205] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3715), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [2627] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4183), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_PIPE_RPAREN] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + }, + [2628] = { + [sym_lambda_bindings] = STATE(3601), + [sym_untyped_bindings] = STATE(2628), + [sym_typed_bindings] = STATE(2628), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_LBRACE] = ACTIONS(4187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4189), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(4191), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_PIPE_RPAREN] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + }, + [2629] = { + [sym_expr] = STATE(3610), + [sym__expr1] = STATE(1702), + [sym__application] = STATE(1703), + [sym__expr2] = STATE(1704), + [sym__atomic_exprs1] = STATE(1705), + [sym_atomic_expr] = STATE(1706), + [sym__atomic_expr_curly] = STATE(1707), + [sym__atomic_expr_no_curly] = STATE(1707), + [sym_tele_arrow] = STATE(1708), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1709), + [aux_sym__application_repeat1] = STATE(1710), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2087), + [sym_set_n] = ACTIONS(2087), + [sym_name_at] = ACTIONS(2089), + [sym_qualified_name] = ACTIONS(2087), + [anon_sym__] = ACTIONS(2087), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2097), + [anon_sym_forall] = ACTIONS(2099), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_QMARK] = ACTIONS(2087), + [anon_sym_Prop] = ACTIONS(2087), + [anon_sym_Set] = ACTIONS(2087), + [anon_sym_quote] = ACTIONS(2087), + [anon_sym_quoteTerm] = ACTIONS(2087), + [anon_sym_unquote] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_LPAREN_PIPE] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2087), + }, + [2630] = { + [sym_where_clause] = STATE(3613), + [sym_rhs] = STATE(3614), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(170), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_PIPE_RPAREN] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(1168), + [anon_sym_module] = ACTIONS(170), + }, + [2631] = { + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_PIPE_RPAREN] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), + }, + [2632] = { + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_PIPE_RPAREN] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), + }, + [2633] = { + [sym__expr1] = STATE(438), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_lhs] = STATE(2630), + [sym__declaration] = STATE(2631), + [sym_function_clause] = STATE(2632), + [aux_sym_source_file_repeat1] = STATE(3615), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_PIPE_RPAREN] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + }, + [2634] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4173), + }, + [2635] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4173), + }, + [2636] = { + [sym_expr] = STATE(3616), + [sym__expr1] = STATE(1702), + [sym__application] = STATE(1703), + [sym__expr2] = STATE(1704), + [sym__atomic_exprs1] = STATE(1705), + [sym_atomic_expr] = STATE(1706), + [sym__atomic_expr_curly] = STATE(1707), + [sym__atomic_expr_no_curly] = STATE(1707), + [sym_tele_arrow] = STATE(1708), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1709), + [aux_sym__application_repeat1] = STATE(1710), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2087), + [sym_set_n] = ACTIONS(2087), + [sym_name_at] = ACTIONS(2089), + [sym_qualified_name] = ACTIONS(2087), + [anon_sym__] = ACTIONS(2087), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2097), + [anon_sym_forall] = ACTIONS(2099), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_QMARK] = ACTIONS(2087), + [anon_sym_Prop] = ACTIONS(2087), + [anon_sym_Set] = ACTIONS(2087), + [anon_sym_quote] = ACTIONS(2087), + [anon_sym_quoteTerm] = ACTIONS(2087), + [anon_sym_unquote] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_LPAREN_PIPE] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2087), + }, + [2637] = { + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_PIPE_RPAREN] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + }, + [2638] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_PIPE_RPAREN] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + }, + [2639] = { + [sym_atomic_expr] = STATE(3617), + [sym__atomic_expr_curly] = STATE(2646), + [sym__atomic_expr_no_curly] = STATE(2646), + [sym_literal] = ACTIONS(3137), + [sym_set_n] = ACTIONS(3137), + [sym_name_at] = ACTIONS(3139), + [sym_qualified_name] = ACTIONS(3137), + [anon_sym__] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3139), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3143), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3137), + [anon_sym_Prop] = ACTIONS(3137), + [anon_sym_Set] = ACTIONS(3137), + [anon_sym_quote] = ACTIONS(3137), + [anon_sym_quoteTerm] = ACTIONS(3137), + [anon_sym_unquote] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LPAREN_PIPE] = ACTIONS(3147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3137), + }, + [2640] = { + [sym_expr] = STATE(3619), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(4193), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [2641] = { + [sym_expr] = STATE(3620), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4195), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [2642] = { + [sym_expr] = STATE(3621), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(4195), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [2643] = { + [sym_expr] = STATE(3622), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [2644] = { + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_PIPE_RPAREN] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + }, + [2645] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_PIPE_RPAREN] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_module] = ACTIONS(164), + }, + [2646] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_PIPE_RPAREN] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + }, + [2647] = { + [sym__expr2] = STATE(2648), + [sym_atomic_expr] = STATE(2645), + [sym__atomic_expr_curly] = STATE(2646), + [sym__atomic_expr_no_curly] = STATE(2646), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(3137), + [sym_set_n] = ACTIONS(3137), + [sym_name_at] = ACTIONS(3139), + [sym_qualified_name] = ACTIONS(3137), + [anon_sym__] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3139), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3143), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(2097), + [anon_sym_forall] = ACTIONS(2099), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_QMARK] = ACTIONS(3137), + [anon_sym_Prop] = ACTIONS(3137), + [anon_sym_Set] = ACTIONS(3137), + [anon_sym_quote] = ACTIONS(3137), + [anon_sym_quoteTerm] = ACTIONS(3137), + [anon_sym_unquote] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LPAREN_PIPE] = ACTIONS(3147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3137), + }, + [2648] = { + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_PIPE_RPAREN] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), + }, + [2649] = { + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_PIPE_RPAREN] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + }, + [2650] = { + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_PIPE_RPAREN] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + }, + [2651] = { + [sym_vclose] = STATE(3623), + [sym__layout_close_brace] = ACTIONS(3149), + [sym_comment] = ACTIONS(86), + }, + [2652] = { + [sym_vopen] = STATE(1711), + [sym_declarations] = STATE(1712), + [sym__declarations0] = STATE(3624), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [2653] = { + [anon_sym_RBRACE] = ACTIONS(4197), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4199), + }, + [2654] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4197), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4201), + }, + [2655] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4197), + }, + [2656] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4203), }, - [2206] = { - [sym_lambda_bindings] = STATE(3168), - [sym_untyped_bindings] = STATE(2206), - [sym_typed_bindings] = STATE(2206), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3717), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_RBRACE] = ACTIONS(464), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3721), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3723), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [2657] = { + [ts_builtin_sym_end] = ACTIONS(1759), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), }, - [2207] = { - [sym_expr] = STATE(3185), - [sym__expr1] = STATE(2094), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2095), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2098), + [2658] = { + [sym_expr] = STATE(3629), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1254), - [aux_sym__application_repeat1] = STATE(2099), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2602), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2604), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1564), - [anon_sym_forall] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [2208] = { - [sym_where_clause] = STATE(1985), - [sym_rhs] = STATE(3193), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(3725), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1454), - [anon_sym_module] = ACTIONS(3727), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2209] = { - [sym__expr1] = STATE(200), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2208), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(3194), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [2659] = { + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), }, - [2210] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3689), + [2660] = { + [sym_expr] = STATE(3630), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2211] = { + [2661] = { + [sym_vclose] = STATE(3632), + [sym__layout_close_brace] = ACTIONS(4205), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(3689), }, - [2212] = { - [ts_builtin_sym_end] = ACTIONS(709), - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_in] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), + [2662] = { + [sym_expr] = STATE(3633), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2213] = { - [ts_builtin_sym_end] = ACTIONS(729), - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), + [2663] = { + [anon_sym_RBRACE] = ACTIONS(3153), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3155), }, - [2214] = { - [sym_expr] = STATE(2222), + [2664] = { + [sym_expr] = STATE(2672), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -84683,7 +100597,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(2732), + [anon_sym_RBRACE] = ACTIONS(3175), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -84699,8 +100613,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2215] = { - [sym_expr] = STATE(2223), + [2665] = { + [sym_expr] = STATE(2673), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -84722,7 +100636,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2734), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3177), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -84737,8 +100651,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2216] = { - [sym_expr] = STATE(2234), + [2666] = { + [sym_expr] = STATE(2674), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -84771,21 +100685,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(3177), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2217] = { + [2667] = { [ts_builtin_sym_end] = ACTIONS(186), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), [sym_name_at] = ACTIONS(186), [sym_qualified_name] = ACTIONS(186), [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(186), @@ -84795,7 +100707,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), [anon_sym_Prop] = ACTIONS(186), [anon_sym_Set] = ACTIONS(186), @@ -84803,15 +100714,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(186), [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), [anon_sym_module] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [2218] = { - [sym_expr] = STATE(2222), + [2668] = { + [sym_expr] = STATE(2672), [sym__expr1] = STATE(38), - [sym__application] = STATE(557), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -84830,7 +100742,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(2732), + [anon_sym_RBRACE] = ACTIONS(3175), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -84846,10 +100758,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2219] = { - [sym_expr] = STATE(2223), + [2669] = { + [sym_expr] = STATE(2673), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -84869,7 +100781,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2734), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3177), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -84884,10 +100796,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [2220] = { - [sym_expr] = STATE(2234), + [2670] = { + [sym_expr] = STATE(2674), [sym__expr1] = STATE(110), - [sym__application] = STATE(559), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -84918,21 +100830,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_RPAREN] = ACTIONS(3177), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2221] = { + [2671] = { [ts_builtin_sym_end] = ACTIONS(228), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), [sym_name_at] = ACTIONS(228), [sym_qualified_name] = ACTIONS(228), [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(228), @@ -84942,7 +100852,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), [anon_sym_Prop] = ACTIONS(228), [anon_sym_Set] = ACTIONS(228), @@ -84950,409 +100859,306 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(228), [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), [anon_sym_module] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [2222] = { - [anon_sym_RBRACE] = ACTIONS(3729), + [2672] = { + [anon_sym_RBRACE] = ACTIONS(4207), [sym_comment] = ACTIONS(86), }, - [2223] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3731), + [2673] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4209), [sym_comment] = ACTIONS(86), }, - [2224] = { - [anon_sym_LBRACE] = ACTIONS(3733), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3735), + [2674] = { [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(3737), + [anon_sym_RPAREN] = ACTIONS(4209), }, - [2225] = { - [sym__application] = STATE(3201), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(3202), - [aux_sym__application_repeat1] = STATE(311), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(3739), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(406), + [2675] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4209), }, - [2226] = { - [sym__application] = STATE(3203), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3739), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [2676] = { + [sym_expr] = STATE(3636), + [sym__expr1] = STATE(1740), + [sym__application] = STATE(471), + [sym__expr2] = STATE(472), + [sym__atomic_exprs1] = STATE(1741), + [sym_atomic_expr] = STATE(1742), + [sym__atomic_expr_curly] = STATE(1743), + [sym__atomic_expr_no_curly] = STATE(1743), + [sym_tele_arrow] = STATE(1744), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(475), + [aux_sym__application_repeat1] = STATE(1745), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2162), + [sym_set_n] = ACTIONS(2162), + [sym_name_at] = ACTIONS(2164), + [sym_qualified_name] = ACTIONS(2162), + [anon_sym__] = ACTIONS(2162), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2170), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(584), + [anon_sym_forall] = ACTIONS(586), + [anon_sym_let] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(2162), + [anon_sym_Prop] = ACTIONS(2162), + [anon_sym_Set] = ACTIONS(2162), + [anon_sym_quote] = ACTIONS(2162), + [anon_sym_quoteTerm] = ACTIONS(2162), + [anon_sym_unquote] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_LPAREN_PIPE] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2162), }, - [2227] = { - [sym__application] = STATE(3212), - [sym__expr2] = STATE(1270), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [sym_non_absurd_lambda_clause] = STATE(3215), - [sym_absurd_lambda_clause] = STATE(3215), - [sym_lambda_clause] = STATE(3216), - [sym_lambda_where_clauses] = STATE(3217), - [aux_sym__application_repeat1] = STATE(3218), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(3743), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3749), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), - [sym_catchall_pragma] = ACTIONS(3755), + [2677] = { + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), }, - [2228] = { - [sym_binding_name] = STATE(3219), - [sym__application] = STATE(3220), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [2678] = { + [sym_atomic_expr] = STATE(1927), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(3183), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(3739), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [2229] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3757), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [2230] = { - [sym_lambda_bindings] = STATE(3200), - [sym_untyped_bindings] = STATE(2230), - [sym_typed_bindings] = STATE(2230), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3759), - [anon_sym_DOT_DOT] = ACTIONS(3759), - [anon_sym_LBRACE] = ACTIONS(3761), - [anon_sym_RBRACE] = ACTIONS(464), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3763), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3765), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [2231] = { - [sym_expr] = STATE(3217), - [sym__expr1] = STATE(1268), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(1271), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(1274), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1275), - [aux_sym__application_repeat1] = STATE(1276), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(1576), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(1578), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1584), - [anon_sym_forall] = ACTIONS(1586), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [2679] = { + [sym_lambda_bindings] = STATE(3637), + [sym_untyped_bindings] = STATE(3638), + [sym_typed_bindings] = STATE(3638), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2382), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2384), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2388), }, - [2232] = { - [sym_where_clause] = STATE(2025), - [sym_rhs] = STATE(3225), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(833), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(3767), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_module] = ACTIONS(3769), + [2680] = { + [sym_forall_bindings] = STATE(3639), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), }, - [2233] = { - [sym__expr1] = STATE(200), + [2681] = { + [sym__expr1] = STATE(952), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2232), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(3226), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [2234] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3731), + [sym_lhs] = STATE(953), + [sym__declaration] = STATE(954), + [sym_function_clause] = STATE(955), + [aux_sym_source_file_repeat1] = STATE(3640), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(104), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [2235] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(3731), + [2682] = { + [sym__application] = STATE(1943), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(2683), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(3183), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3185), + [anon_sym_forall] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [2236] = { - [sym_expr] = STATE(3227), - [sym__expr1] = STATE(1268), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(1271), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(1274), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1275), - [aux_sym__application_repeat1] = STATE(1276), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(1576), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(1578), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), + [2683] = { + [sym__expr2] = STATE(1944), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(3183), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1584), - [anon_sym_forall] = ACTIONS(1586), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3185), + [anon_sym_forall] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [2237] = { - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_RPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), + [2684] = { + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_with] = ACTIONS(1212), }, - [2238] = { + [2685] = { + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_with] = ACTIONS(1214), + }, + [2686] = { [ts_builtin_sym_end] = ACTIONS(30), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), @@ -85361,6 +101167,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), @@ -85378,147 +101185,172 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), [anon_sym_module] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), }, - [2239] = { - [sym_atomic_expr] = STATE(3228), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(2754), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), + [2687] = { + [sym_atomic_expr] = STATE(3644), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3193), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4213), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(4215), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), }, - [2240] = { - [sym_expr] = STATE(3230), + [2688] = { + [sym_atomic_expr] = STATE(3644), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3193), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4219), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(4221), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [2689] = { + [sym_expr] = STATE(3649), [sym__expr1] = STATE(38), - [sym__application] = STATE(39), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3771), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(4223), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2241] = { - [sym_expr] = STATE(3231), + [2690] = { + [sym_expr] = STATE(3650), [sym__expr1] = STATE(60), - [sym__application] = STATE(61), + [sym__application] = STATE(185), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), + [aux_sym__application_repeat1] = STATE(188), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3773), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4225), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [2242] = { - [sym_expr] = STATE(3232), + [2691] = { + [sym_expr] = STATE(3651), [sym__expr1] = STATE(110), - [sym__application] = STATE(39), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3773), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(4225), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2243] = { - [sym_expr] = STATE(3233), + [2692] = { + [sym_expr] = STATE(3652), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -85554,42 +101386,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [2244] = { - [ts_builtin_sym_end] = ACTIONS(709), - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_in] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), + [2693] = { + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_RPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + [anon_sym_with] = ACTIONS(1244), }, - [2245] = { + [2694] = { + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), + }, + [2695] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4229), + [anon_sym_PIPE] = ACTIONS(162), + }, + [2696] = { [ts_builtin_sym_end] = ACTIONS(164), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), @@ -85598,6 +101465,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), @@ -85615,13 +101483,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(164), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), [anon_sym_module] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [2246] = { + [2697] = { [ts_builtin_sym_end] = ACTIONS(168), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), @@ -85630,6 +101499,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), @@ -85647,379 +101517,659 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), [anon_sym_module] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [2247] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(2245), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(2754), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), + [2698] = { + [sym_expr] = STATE(3654), + [sym__expr1] = STATE(2694), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(2695), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(2698), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2682), + [aux_sym__application_repeat1] = STATE(2699), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3193), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3185), + [anon_sym_forall] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [2699] = { + [sym__expr2] = STATE(1944), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3193), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4213), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1584), - [anon_sym_forall] = ACTIONS(1586), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - }, - [2248] = { - [ts_builtin_sym_end] = ACTIONS(729), - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), + [anon_sym_BSLASH] = ACTIONS(3185), + [anon_sym_forall] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(4215), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), }, - [2249] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [2700] = { + [sym_vclose] = STATE(3656), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1195), - [sym__declaration] = STATE(3234), - [sym_function_clause] = STATE(203), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(3657), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(4231), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [2250] = { - [sym_semi] = STATE(2249), - [aux_sym__declarations1_repeat1] = STATE(3235), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), + [2701] = { + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_RPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), + [anon_sym_with] = ACTIONS(1284), }, - [2251] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1195), - [sym__declaration] = STATE(1277), - [sym_function_clause] = STATE(203), - [sym__declarations1] = STATE(3236), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [2702] = { + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_with] = ACTIONS(1286), }, - [2252] = { - [sym_atomic_expr] = STATE(566), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2766), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_LBRACE_LBRACE] = ACTIONS(753), + [2703] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(4233), + }, + [2704] = { + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), + [anon_sym_with] = ACTIONS(1292), + }, + [2705] = { + [anon_sym_RBRACE] = ACTIONS(4235), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4237), + }, + [2706] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4235), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4239), + }, + [2707] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4235), + }, + [2708] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4241), + }, + [2709] = { + [ts_builtin_sym_end] = ACTIONS(1759), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + }, + [2710] = { + [sym_expr] = STATE(3663), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2253] = { - [sym_atomic_expr] = STATE(566), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2766), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_LBRACE_LBRACE] = ACTIONS(759), + [2711] = { + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + }, + [2712] = { + [sym_expr] = STATE(3664), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(761), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2254] = { - [anon_sym_SEMI] = ACTIONS(280), + [2713] = { + [sym_vclose] = STATE(3666), + [sym__layout_close_brace] = ACTIONS(4243), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3775), - [anon_sym_RPAREN] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(280), }, - [2255] = { + [2714] = { + [sym_expr] = STATE(3667), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [2715] = { + [anon_sym_RBRACE] = ACTIONS(3207), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3775), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(3209), }, - [2256] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(2254), + [2716] = { + [sym_expr] = STATE(2724), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2255), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2256), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2257), - [aux_sym__application_repeat1] = STATE(2258), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2766), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2768), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1612), - [anon_sym_forall] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2257] = { - [sym__application] = STATE(225), + [2717] = { + [sym_expr] = STATE(2725), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3231), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [2718] = { + [sym_expr] = STATE(2726), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2083), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(3239), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(3777), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(3777), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1612), - [anon_sym_forall] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(3231), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [2719] = { + [ts_builtin_sym_end] = ACTIONS(186), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [2258] = { - [sym__expr2] = STATE(229), + [2720] = { + [sym_expr] = STATE(2724), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [aux_sym__application_repeat1] = STATE(230), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2766), + [sym_name_at] = ACTIONS(208), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_LBRACE_LBRACE] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1612), - [anon_sym_forall] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1616), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), [anon_sym_quote] = ACTIONS(206), [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(224), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2259] = { - [anon_sym_SEMI] = ACTIONS(819), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3779), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(819), - [anon_sym_COLON] = ACTIONS(819), - }, - [2260] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(2260), - [sym_typed_bindings] = STATE(2260), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_RPAREN] = ACTIONS(825), - [anon_sym_COLON] = ACTIONS(825), + [2721] = { + [sym_expr] = STATE(2725), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3231), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [2261] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(2254), - [sym__application] = STATE(39), + [2722] = { + [sym_expr] = STATE(2726), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2255), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2256), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2257), - [aux_sym__application_repeat1] = STATE(2258), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2766), + [sym_name_at] = ACTIONS(268), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1612), - [anon_sym_forall] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1616), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -86027,70 +102177,195 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(3231), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2262] = { - [sym_where_clause] = STATE(1151), - [sym_rhs] = STATE(1297), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [2723] = { + [ts_builtin_sym_end] = ACTIONS(228), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3781), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1624), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(3781), - [anon_sym_module] = ACTIONS(1626), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [2263] = { - [sym__expr1] = STATE(1688), + [2724] = { + [anon_sym_RBRACE] = ACTIONS(4245), + [sym_comment] = ACTIONS(86), + }, + [2725] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4247), + [sym_comment] = ACTIONS(86), + }, + [2726] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4247), + }, + [2727] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4247), + }, + [2728] = { + [sym_expr] = STATE(3670), + [sym__expr1] = STATE(1778), + [sym__application] = STATE(487), + [sym__expr2] = STATE(488), + [sym__atomic_exprs1] = STATE(1779), + [sym_atomic_expr] = STATE(1780), + [sym__atomic_expr_curly] = STATE(1781), + [sym__atomic_expr_no_curly] = STATE(1781), + [sym_tele_arrow] = STATE(1782), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(491), + [aux_sym__application_repeat1] = STATE(1783), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2200), + [sym_set_n] = ACTIONS(2200), + [sym_name_at] = ACTIONS(2202), + [sym_qualified_name] = ACTIONS(2200), + [anon_sym__] = ACTIONS(2200), + [anon_sym_DOT] = ACTIONS(2204), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2206), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2208), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(602), + [anon_sym_forall] = ACTIONS(604), + [anon_sym_let] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(2200), + [anon_sym_Prop] = ACTIONS(2200), + [anon_sym_Set] = ACTIONS(2200), + [anon_sym_quote] = ACTIONS(2200), + [anon_sym_quoteTerm] = ACTIONS(2200), + [anon_sym_unquote] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2210), + [anon_sym_LPAREN_PIPE] = ACTIONS(2212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2200), + }, + [2729] = { + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + }, + [2730] = { + [sym_atomic_expr] = STATE(1945), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(3237), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + }, + [2731] = { + [sym_lambda_bindings] = STATE(3671), + [sym_untyped_bindings] = STATE(3672), + [sym_typed_bindings] = STATE(3672), + [anon_sym_DOT] = ACTIONS(2394), + [anon_sym_DOT_DOT] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2400), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2404), + }, + [2732] = { + [sym_forall_bindings] = STATE(3673), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [2733] = { + [sym__expr1] = STATE(973), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2262), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(3242), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), + [sym_lhs] = STATE(974), + [sym__declaration] = STATE(975), + [sym_function_clause] = STATE(976), + [aux_sym_source_file_repeat1] = STATE(3674), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), [sym_literal] = ACTIONS(102), [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(2109), + [sym_name_at] = ACTIONS(104), [sym_qualified_name] = ACTIONS(102), [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), + [anon_sym_DOT] = ACTIONS(104), [anon_sym_LBRACE] = ACTIONS(106), [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(3783), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), [anon_sym_QMARK] = ACTIONS(102), [anon_sym_Prop] = ACTIONS(102), [anon_sym_Set] = ACTIONS(102), @@ -86098,455 +102373,400 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(102), [anon_sym_unquote] = ACTIONS(102), [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(460), [anon_sym_LPAREN_PIPE] = ACTIONS(118), [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(460), - }, - [2264] = { - [sym_expr] = STATE(1500), - [sym__expr1] = STATE(2254), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2255), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2256), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2257), - [aux_sym__application_repeat1] = STATE(2258), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2766), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1612), - [anon_sym_forall] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [2265] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(1139), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(1608), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3785), - [anon_sym_BSLASH] = ACTIONS(1612), - [anon_sym_forall] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), - }, - [2266] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(1139), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(2162), - [aux_sym__application_repeat1] = STATE(1288), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(1608), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1610), - [anon_sym_BSLASH] = ACTIONS(1612), - [anon_sym_forall] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), - [sym_catchall_pragma] = ACTIONS(1618), - }, - [2267] = { - [sym_semi] = STATE(2266), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3244), - [anon_sym_SEMI] = ACTIONS(1014), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2674), - [anon_sym_RPAREN] = ACTIONS(2674), - [anon_sym_COLON] = ACTIONS(2674), - }, - [2268] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(1290), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1291), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1292), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1293), - [aux_sym__application_repeat1] = STATE(214), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2269] = { - [sym_atomic_expr] = STATE(3050), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(2774), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), + [2734] = { + [sym__application] = STATE(1960), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1128), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(2735), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(3237), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(3239), + [anon_sym_forall] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), }, - [2270] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(2083), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), + [2735] = { + [sym__expr2] = STATE(1961), + [sym_atomic_expr] = STATE(1128), + [sym__atomic_expr_curly] = STATE(1129), + [sym__atomic_expr_no_curly] = STATE(1129), [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(2774), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), + [sym_literal] = ACTIONS(1388), + [sym_set_n] = ACTIONS(1388), + [sym_name_at] = ACTIONS(3237), + [sym_qualified_name] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1394), [sym_comment] = ACTIONS(18), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(3239), + [anon_sym_forall] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_Prop] = ACTIONS(1388), + [anon_sym_Set] = ACTIONS(1388), + [anon_sym_quote] = ACTIONS(1388), + [anon_sym_quoteTerm] = ACTIONS(1388), + [anon_sym_unquote] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LPAREN_PIPE] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), }, - [2271] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2776), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2776), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [2736] = { + [sym_atomic_expr] = STATE(2885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(3245), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3385), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [2272] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2776), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2776), - [anon_sym_LBRACE] = ACTIONS(3552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3554), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3556), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [2737] = { + [sym_atomic_expr] = STATE(2885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(3245), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3391), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [2273] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3787), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [2738] = { + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), }, - [2274] = { + [2739] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3789), + [anon_sym_DASH_GT] = ACTIONS(4251), [anon_sym_PIPE] = ACTIONS(162), }, - [2275] = { - [sym_expr] = STATE(3069), - [sym__expr1] = STATE(2273), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2274), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2275), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1728), - [aux_sym__application_repeat1] = STATE(2276), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2776), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2153), - [anon_sym_forall] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [2740] = { + [sym_expr] = STATE(2895), + [sym__expr1] = STATE(2738), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2739), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2740), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2734), + [aux_sym__application_repeat1] = STATE(2741), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(3245), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3247), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3239), + [anon_sym_forall] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [2276] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), + [2741] = { + [sym__expr2] = STATE(1961), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2776), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2776), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(3245), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3385), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2153), - [anon_sym_forall] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [anon_sym_BSLASH] = ACTIONS(3239), + [anon_sym_forall] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [2277] = { - [sym_semi] = STATE(3246), - [aux_sym__declarations1_repeat1] = STATE(3247), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), + [2742] = { + [sym_vclose] = STATE(3677), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(3678), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(4253), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [2278] = { + [2743] = { + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_RPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), + }, + [2744] = { + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + }, + [2745] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3791), + [anon_sym_where] = ACTIONS(4255), }, - [2279] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), + [2746] = { + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), }, - [2280] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), + [2747] = { + [anon_sym_RBRACE] = ACTIONS(4257), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4259), }, - [2281] = { - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3147), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3147), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_COLON] = ACTIONS(3147), + [2748] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4257), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4261), }, - [2282] = { - [sym_expr] = STATE(3249), + [2749] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4257), + }, + [2750] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4263), + }, + [2751] = { + [ts_builtin_sym_end] = ACTIONS(1759), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + }, + [2752] = { + [sym_expr] = STATE(3684), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -86582,8 +102802,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2283] = { - [sym_expr] = STATE(3250), + [2753] = { + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + }, + [2754] = { + [sym_expr] = STATE(3685), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -86619,8 +102866,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2284] = { - [sym_expr] = STATE(3251), + [2755] = { + [sym_vclose] = STATE(3687), + [sym__layout_close_brace] = ACTIONS(4265), + [sym_comment] = ACTIONS(86), + }, + [2756] = { + [sym_expr] = STATE(3688), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -86656,704 +102908,1544 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2285] = { - [anon_sym_RBRACE] = ACTIONS(3793), + [2757] = { + [anon_sym_RBRACE] = ACTIONS(3251), [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3253), }, - [2286] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3793), - [sym_comment] = ACTIONS(86), + [2758] = { + [sym_expr] = STATE(3689), + [sym__expr1] = STATE(1807), + [sym__application] = STATE(506), + [sym__expr2] = STATE(507), + [sym__atomic_exprs1] = STATE(1808), + [sym_atomic_expr] = STATE(509), + [sym__atomic_expr_curly] = STATE(510), + [sym__atomic_expr_no_curly] = STATE(510), + [sym_tele_arrow] = STATE(1809), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(512), + [aux_sym__application_repeat1] = STATE(513), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(616), + [sym_set_n] = ACTIONS(616), + [sym_name_at] = ACTIONS(618), + [sym_qualified_name] = ACTIONS(616), + [anon_sym__] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_LBRACE_LBRACE] = ACTIONS(624), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_forall] = ACTIONS(628), + [anon_sym_let] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_Prop] = ACTIONS(616), + [anon_sym_Set] = ACTIONS(616), + [anon_sym_quote] = ACTIONS(616), + [anon_sym_quoteTerm] = ACTIONS(616), + [anon_sym_unquote] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_LPAREN_PIPE] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), }, - [2287] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), + [2759] = { + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), }, - [2288] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), + [2760] = { + [sym_atomic_expr] = STATE(1965), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(3265), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2408), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), }, - [2289] = { - [sym_expr] = STATE(739), - [sym__expr1] = STATE(1323), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(1324), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(1325), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1326), - [aux_sym__application_repeat1] = STATE(1327), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(1664), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(1666), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_forall] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [2761] = { + [sym_atomic_expr] = STATE(1965), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(3265), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(2412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2414), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), }, - [2290] = { - [sym_atomic_expr] = STATE(740), - [sym__atomic_expr_curly] = STATE(287), - [sym__atomic_expr_no_curly] = STATE(287), - [sym_literal] = ACTIONS(366), - [sym_set_n] = ACTIONS(366), - [sym_name_at] = ACTIONS(2800), - [sym_qualified_name] = ACTIONS(366), - [anon_sym__] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(370), - [anon_sym_LBRACE_LBRACE] = ACTIONS(372), + [2762] = { + [sym_lambda_bindings] = STATE(3690), + [sym_untyped_bindings] = STATE(3691), + [sym_typed_bindings] = STATE(3691), + [anon_sym_DOT] = ACTIONS(2422), + [anon_sym_DOT_DOT] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2428), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2432), + }, + [2763] = { + [sym_forall_bindings] = STATE(3692), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [2764] = { + [sym__expr1] = STATE(973), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(1000), + [sym__declaration] = STATE(1001), + [sym_function_clause] = STATE(1002), + [aux_sym_source_file_repeat1] = STATE(3693), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [sym_literal] = ACTIONS(102), + [sym_set_n] = ACTIONS(102), + [sym_name_at] = ACTIONS(104), + [sym_qualified_name] = ACTIONS(102), + [anon_sym__] = ACTIONS(102), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(106), + [anon_sym_LBRACE_LBRACE] = ACTIONS(108), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(366), - [anon_sym_Prop] = ACTIONS(366), - [anon_sym_Set] = ACTIONS(366), - [anon_sym_quote] = ACTIONS(366), - [anon_sym_quoteTerm] = ACTIONS(366), - [anon_sym_unquote] = ACTIONS(366), - [anon_sym_LPAREN] = ACTIONS(374), - [anon_sym_LPAREN_PIPE] = ACTIONS(376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(366), + [anon_sym_BSLASH] = ACTIONS(110), + [anon_sym_forall] = ACTIONS(112), + [anon_sym_let] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_Prop] = ACTIONS(102), + [anon_sym_Set] = ACTIONS(102), + [anon_sym_quote] = ACTIONS(102), + [anon_sym_quoteTerm] = ACTIONS(102), + [anon_sym_unquote] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(116), + [anon_sym_LPAREN_PIPE] = ACTIONS(118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [2291] = { - [sym__expr2] = STATE(289), - [sym_atomic_expr] = STATE(286), - [sym__atomic_expr_curly] = STATE(287), - [sym__atomic_expr_no_curly] = STATE(287), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(366), - [sym_set_n] = ACTIONS(366), - [sym_name_at] = ACTIONS(2800), - [sym_qualified_name] = ACTIONS(366), - [anon_sym__] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(370), - [anon_sym_LBRACE_LBRACE] = ACTIONS(372), + [2765] = { + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [2766] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4269), + [anon_sym_PIPE] = ACTIONS(162), + }, + [2767] = { + [sym_expr] = STATE(1985), + [sym__expr1] = STATE(2765), + [sym__application] = STATE(1145), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(2766), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_tele_arrow] = STATE(2767), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2768), + [aux_sym__application_repeat1] = STATE(2769), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(3265), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3269), + [anon_sym_forall] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), + }, + [2768] = { + [sym__application] = STATE(1992), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1993), + [sym__atomic_expr_curly] = STATE(1994), + [sym__atomic_expr_no_curly] = STATE(1994), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(3696), + [sym_literal] = ACTIONS(2438), + [sym_set_n] = ACTIONS(2438), + [sym_name_at] = ACTIONS(4271), + [sym_qualified_name] = ACTIONS(2438), + [anon_sym__] = ACTIONS(2438), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2444), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3269), + [anon_sym_forall] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_QMARK] = ACTIONS(2438), + [anon_sym_Prop] = ACTIONS(2438), + [anon_sym_Set] = ACTIONS(2438), + [anon_sym_quote] = ACTIONS(2438), + [anon_sym_quoteTerm] = ACTIONS(2438), + [anon_sym_unquote] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_LPAREN_PIPE] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2438), + }, + [2769] = { + [sym__expr2] = STATE(1996), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(3265), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2408), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_forall] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_QMARK] = ACTIONS(366), - [anon_sym_Prop] = ACTIONS(366), - [anon_sym_Set] = ACTIONS(366), - [anon_sym_quote] = ACTIONS(366), - [anon_sym_quoteTerm] = ACTIONS(366), - [anon_sym_unquote] = ACTIONS(366), - [anon_sym_LPAREN] = ACTIONS(374), - [anon_sym_LPAREN_PIPE] = ACTIONS(376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(366), + [anon_sym_BSLASH] = ACTIONS(3269), + [anon_sym_forall] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), }, - [2292] = { - [sym_expr] = STATE(1314), - [sym__expr1] = STATE(1323), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(1324), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(1325), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1326), - [aux_sym__application_repeat1] = STATE(1327), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(1664), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(1666), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_forall] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [2770] = { + [sym_vclose] = STATE(3698), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(3699), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(4273), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [2293] = { + [2771] = { + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_RPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), + }, + [2772] = { + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + }, + [2773] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(4275), + }, + [2774] = { + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), + }, + [2775] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [2776] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [2777] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_rewrite] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [2778] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_rewrite] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [2779] = { + [sym__application] = STATE(3701), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3795), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [2294] = { - [sym_lambda_bindings] = STATE(1355), - [sym_untyped_bindings] = STATE(2294), - [sym_typed_bindings] = STATE(2294), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_DOT_DOT] = ACTIONS(1712), - [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1716), - [anon_sym_RBRACE_RBRACE] = ACTIONS(464), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_rewrite] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), - }, - [2295] = { - [sym_expr] = STATE(1372), - [sym__expr1] = STATE(2324), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(2325), - [sym_atomic_expr] = STATE(1387), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_tele_arrow] = STATE(2326), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(2327), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(2826), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1728), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), }, - [2296] = { - [sym_rewrite_equations] = STATE(3256), - [sym_with_expressions] = STATE(1394), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE_RBRACE] = ACTIONS(152), + [2780] = { + [sym__application] = STATE(3702), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(3797), - [anon_sym_with] = ACTIONS(3799), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2297] = { - [sym_where_clause] = STATE(1398), - [sym_rhs] = STATE(1399), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE_RBRACE] = ACTIONS(170), + [2781] = { + [sym_binding_name] = STATE(3703), + [sym__application] = STATE(3704), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3801), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1740), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(3801), - [anon_sym_module] = ACTIONS(1742), - [anon_sym_rewrite] = ACTIONS(170), - [anon_sym_with] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2298] = { - [sym__expr1] = STATE(2296), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2297), - [sym__declaration] = STATE(722), - [sym_function_clause] = STATE(723), - [aux_sym_source_file_repeat1] = STATE(3258), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), + [2782] = { + [sym__layout_semicolon] = ACTIONS(1356), + [sym__layout_close_brace] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_where] = ACTIONS(1356), + [anon_sym_COLON] = ACTIONS(1356), + [anon_sym_module] = ACTIONS(1356), + [anon_sym_rewrite] = ACTIONS(1356), + [anon_sym_with] = ACTIONS(1356), + }, + [2783] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(4277), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4279), + }, + [2784] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(4281), + [sym_comment] = ACTIONS(86), + }, + [2785] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4277), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4283), + }, + [2786] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(3709), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [2787] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4277), + }, + [2788] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4285), + }, + [2789] = { + [sym_expr] = STATE(3707), + [sym__expr1] = STATE(2799), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(2800), + [sym_atomic_expr] = STATE(2801), + [sym__atomic_expr_curly] = STATE(2802), + [sym__atomic_expr_no_curly] = STATE(2802), + [sym_tele_arrow] = STATE(2803), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(2804), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3297), + [sym_set_n] = ACTIONS(3297), + [sym_name_at] = ACTIONS(3299), + [sym_qualified_name] = ACTIONS(3297), + [anon_sym__] = ACTIONS(3297), + [anon_sym_DOT] = ACTIONS(3301), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3305), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_Prop] = ACTIONS(3297), + [anon_sym_Set] = ACTIONS(3297), + [anon_sym_quote] = ACTIONS(3297), + [anon_sym_quoteTerm] = ACTIONS(3297), + [anon_sym_unquote] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_LPAREN_PIPE] = ACTIONS(3309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), + }, + [2790] = { + [sym__application] = STATE(3711), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), }, - [2299] = { - [sym__expr1] = STATE(1410), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1413), - [sym__atomic_expr_curly] = STATE(1414), - [sym__atomic_expr_no_curly] = STATE(1414), - [aux_sym__expr1_repeat1] = STATE(3263), - [aux_sym__application_repeat1] = STATE(3264), - [sym_literal] = ACTIONS(1744), - [sym_set_n] = ACTIONS(1744), - [sym_name_at] = ACTIONS(3803), - [sym_qualified_name] = ACTIONS(1744), - [anon_sym__] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1750), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(1744), - [anon_sym_Prop] = ACTIONS(1744), - [anon_sym_Set] = ACTIONS(1744), - [anon_sym_quote] = ACTIONS(1744), - [anon_sym_quoteTerm] = ACTIONS(1744), - [anon_sym_unquote] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1744), + [2791] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [anon_sym_SEMI] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_rewrite] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), }, - [2300] = { - [sym__expr1] = STATE(1426), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1429), - [sym__atomic_expr_curly] = STATE(1430), - [sym__atomic_expr_no_curly] = STATE(1430), - [aux_sym__expr1_repeat1] = STATE(3269), - [aux_sym__application_repeat1] = STATE(3270), - [sym_literal] = ACTIONS(1762), - [sym_set_n] = ACTIONS(1762), - [sym_name_at] = ACTIONS(3811), - [sym_qualified_name] = ACTIONS(1762), - [anon_sym__] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(3811), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1768), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(1762), - [anon_sym_Prop] = ACTIONS(1762), - [anon_sym_Set] = ACTIONS(1762), - [anon_sym_quote] = ACTIONS(1762), - [anon_sym_quoteTerm] = ACTIONS(1762), - [anon_sym_unquote] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_LPAREN_PIPE] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), + [2792] = { + [sym_atomic_expr] = STATE(3715), + [sym__atomic_expr_curly] = STATE(2802), + [sym__atomic_expr_no_curly] = STATE(2802), + [sym_literal] = ACTIONS(3297), + [sym_set_n] = ACTIONS(3297), + [sym_name_at] = ACTIONS(3299), + [sym_qualified_name] = ACTIONS(3297), + [anon_sym__] = ACTIONS(3297), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_Prop] = ACTIONS(3297), + [anon_sym_Set] = ACTIONS(3297), + [anon_sym_quote] = ACTIONS(3297), + [anon_sym_quoteTerm] = ACTIONS(3297), + [anon_sym_unquote] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_LPAREN_PIPE] = ACTIONS(3309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), }, - [2301] = { - [sym_with_expressions] = STATE(1433), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE_RBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(2806), + [2793] = { + [sym_atomic_expr] = STATE(3715), + [sym__atomic_expr_curly] = STATE(2802), + [sym__atomic_expr_no_curly] = STATE(2802), + [sym_literal] = ACTIONS(3297), + [sym_set_n] = ACTIONS(3297), + [sym_name_at] = ACTIONS(3299), + [sym_qualified_name] = ACTIONS(3297), + [anon_sym__] = ACTIONS(3297), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4295), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_Prop] = ACTIONS(3297), + [anon_sym_Set] = ACTIONS(3297), + [anon_sym_quote] = ACTIONS(3297), + [anon_sym_quoteTerm] = ACTIONS(3297), + [anon_sym_unquote] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_LPAREN_PIPE] = ACTIONS(3309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), }, - [2302] = { - [sym_expr] = STATE(1444), - [sym__expr1] = STATE(3276), - [sym__application] = STATE(1446), - [sym__expr2] = STATE(1447), - [sym__atomic_exprs1] = STATE(3277), - [sym_atomic_expr] = STATE(1449), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_tele_arrow] = STATE(3278), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3279), - [aux_sym__application_repeat1] = STATE(3280), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(3819), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3821), + [2794] = { + [sym_expr] = STATE(3720), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(4299), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2303] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(1336), - [sym__declaration] = STATE(269), - [sym_function_clause] = STATE(270), - [aux_sym_source_file_repeat1] = STATE(2303), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(1802), - [sym_set_n] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(3829), - [sym_qualified_name] = ACTIONS(1802), - [anon_sym__] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE_RBRACE] = ACTIONS(680), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(3832), - [anon_sym_forall] = ACTIONS(3835), - [anon_sym_let] = ACTIONS(3838), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1802), - [anon_sym_Prop] = ACTIONS(1802), - [anon_sym_Set] = ACTIONS(1802), - [anon_sym_quote] = ACTIONS(1802), - [anon_sym_quoteTerm] = ACTIONS(1802), - [anon_sym_unquote] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LPAREN_PIPE] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), + [2795] = { + [sym_expr] = STATE(3721), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4301), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [2304] = { - [anon_sym_SEMI] = ACTIONS(2988), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2988), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2988), + [2796] = { + [sym_expr] = STATE(3722), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2305] = { - [sym_expr] = STATE(3281), - [sym__expr1] = STATE(1323), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(1324), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(1325), + [2797] = { + [sym_expr] = STATE(3723), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1326), - [aux_sym__application_repeat1] = STATE(1327), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(1664), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(1666), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_forall] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [2798] = { + [sym__layout_semicolon] = ACTIONS(1360), + [sym__layout_close_brace] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_where] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [anon_sym_module] = ACTIONS(1360), + [anon_sym_rewrite] = ACTIONS(1360), + [anon_sym_with] = ACTIONS(1360), + }, + [2799] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym__layout_close_brace] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(280), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_module] = ACTIONS(280), + [anon_sym_rewrite] = ACTIONS(280), + [anon_sym_with] = ACTIONS(280), + }, + [2800] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(162), + }, + [2801] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_rewrite] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), + }, + [2802] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_rewrite] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), + }, + [2803] = { + [sym_expr] = STATE(3725), + [sym__expr1] = STATE(2799), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(2800), + [sym_atomic_expr] = STATE(2801), + [sym__atomic_expr_curly] = STATE(2802), + [sym__atomic_expr_no_curly] = STATE(2802), + [sym_tele_arrow] = STATE(2803), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(2804), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3297), + [sym_set_n] = ACTIONS(3297), + [sym_name_at] = ACTIONS(3299), + [sym_qualified_name] = ACTIONS(3297), + [anon_sym__] = ACTIONS(3297), + [anon_sym_DOT] = ACTIONS(3301), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3305), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_Prop] = ACTIONS(3297), + [anon_sym_Set] = ACTIONS(3297), + [anon_sym_quote] = ACTIONS(3297), + [anon_sym_quoteTerm] = ACTIONS(3297), + [anon_sym_unquote] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_LPAREN_PIPE] = ACTIONS(3309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), + }, + [2804] = { + [sym__expr2] = STATE(1856), + [sym_atomic_expr] = STATE(2801), + [sym__atomic_expr_curly] = STATE(2802), + [sym__atomic_expr_no_curly] = STATE(2802), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(3297), + [sym_set_n] = ACTIONS(3297), + [sym_name_at] = ACTIONS(3299), + [sym_qualified_name] = ACTIONS(3297), + [anon_sym__] = ACTIONS(3297), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4289), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_Prop] = ACTIONS(3297), + [anon_sym_Set] = ACTIONS(3297), + [anon_sym_quote] = ACTIONS(3297), + [anon_sym_quoteTerm] = ACTIONS(3297), + [anon_sym_unquote] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_LPAREN_PIPE] = ACTIONS(3309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), }, - [2306] = { - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3624), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3624), - [anon_sym_COLON] = ACTIONS(3624), + [2805] = { + [sym__expr1] = STATE(3726), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), }, - [2307] = { - [sym_semi] = STATE(1345), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2307), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3624), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3624), + [2806] = { + [sym__expr1] = STATE(3727), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), }, - [2308] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3793), + [2807] = { + [sym_with_expressions] = STATE(3728), + [sym__layout_semicolon] = ACTIONS(2746), + [sym__layout_close_brace] = ACTIONS(2746), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_rewrite] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), }, - [2309] = { - [anon_sym_RBRACE] = ACTIONS(3841), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3843), + [2808] = { + [sym__layout_semicolon] = ACTIONS(2746), + [sym__layout_close_brace] = ACTIONS(2746), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_rewrite] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), }, - [2310] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3841), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3845), + [2809] = { + [sym_expr] = STATE(3729), + [sym__expr1] = STATE(3404), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(3405), + [sym_atomic_expr] = STATE(3406), + [sym__atomic_expr_curly] = STATE(3407), + [sym__atomic_expr_no_curly] = STATE(3407), + [sym_tele_arrow] = STATE(3408), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(3409), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3947), + [sym_set_n] = ACTIONS(3947), + [sym_name_at] = ACTIONS(3949), + [sym_qualified_name] = ACTIONS(3947), + [anon_sym__] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3955), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_Prop] = ACTIONS(3947), + [anon_sym_Set] = ACTIONS(3947), + [anon_sym_quote] = ACTIONS(3947), + [anon_sym_quoteTerm] = ACTIONS(3947), + [anon_sym_unquote] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3947), }, - [2311] = { + [2810] = { + [sym_vopen] = STATE(3730), + [sym_declarations] = STATE(3731), + [sym__declarations0] = STATE(3732), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3841), }, - [2312] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3847), + [2811] = { + [sym_anonymous_name] = STATE(3733), + [sym_name] = ACTIONS(4305), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), }, - [2313] = { - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_rewrite] = ACTIONS(1891), - [anon_sym_with] = ACTIONS(1891), + [2812] = { + [sym__layout_semicolon] = ACTIONS(2764), + [sym__layout_close_brace] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_rewrite] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), }, - [2314] = { - [sym_expr] = STATE(3286), + [2813] = { + [sym_where_clause] = STATE(3734), + [sym__layout_semicolon] = ACTIONS(2764), + [sym__layout_close_brace] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_rewrite] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), + }, + [2814] = { + [sym__expr1] = STATE(1835), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(1836), + [sym__declaration] = STATE(1837), + [sym_function_clause] = STATE(1838), + [aux_sym_source_file_repeat1] = STATE(2814), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(2766), + [sym__layout_close_brace] = ACTIONS(2766), + [sym_literal] = ACTIONS(4019), + [sym_set_n] = ACTIONS(4019), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(4022), + [sym_qualified_name] = ACTIONS(4019), + [anon_sym__] = ACTIONS(4019), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4025), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4028), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(4031), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(4034), + [anon_sym_let] = ACTIONS(4037), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_Prop] = ACTIONS(4019), + [anon_sym_Set] = ACTIONS(4019), + [anon_sym_quote] = ACTIONS(4019), + [anon_sym_quoteTerm] = ACTIONS(4019), + [anon_sym_unquote] = ACTIONS(4019), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LPAREN_PIPE] = ACTIONS(4043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4019), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_rewrite] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), + }, + [2815] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [anon_sym_SEMI] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), + }, + [2816] = { + [sym_atomic_expr] = STATE(3735), + [sym__atomic_expr_curly] = STATE(2828), + [sym__atomic_expr_no_curly] = STATE(2828), + [sym_literal] = ACTIONS(3313), + [sym_set_n] = ACTIONS(3313), + [sym_name_at] = ACTIONS(3315), + [sym_qualified_name] = ACTIONS(3313), + [anon_sym__] = ACTIONS(3313), + [anon_sym_DOT] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3319), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3313), + [anon_sym_Prop] = ACTIONS(3313), + [anon_sym_Set] = ACTIONS(3313), + [anon_sym_quote] = ACTIONS(3313), + [anon_sym_quoteTerm] = ACTIONS(3313), + [anon_sym_unquote] = ACTIONS(3313), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_LPAREN_PIPE] = ACTIONS(3329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3313), + }, + [2817] = { + [sym_expr] = STATE(3737), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -87374,6 +104466,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(4307), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -87389,40 +104482,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2315] = { - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_COLON] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_rewrite] = ACTIONS(1905), - [anon_sym_with] = ACTIONS(1905), - }, - [2316] = { - [sym_expr] = STATE(3287), + [2818] = { + [sym_expr] = STATE(3738), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -87444,6 +104505,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4309), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -87458,438 +104520,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2317] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_rewrite] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), - }, - [2318] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_rewrite] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), - }, - [2319] = { - [anon_sym_RBRACE] = ACTIONS(3849), - [sym_comment] = ACTIONS(86), - }, - [2320] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3851), - [sym_comment] = ACTIONS(86), - }, - [2321] = { - [sym_atomic_expr] = STATE(2340), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(2826), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2836), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), - }, - [2322] = { - [sym_atomic_expr] = STATE(2340), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(2826), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2842), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), - }, - [2323] = { - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_in] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_rewrite] = ACTIONS(1983), - [anon_sym_with] = ACTIONS(1983), - }, - [2324] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3853), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_rewrite] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), - }, - [2325] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3855), - [anon_sym_PIPE] = ACTIONS(162), - }, - [2326] = { - [sym_expr] = STATE(2350), - [sym__expr1] = STATE(2324), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(2325), - [sym_atomic_expr] = STATE(1387), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_tele_arrow] = STATE(2326), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(2327), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(2826), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1728), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), - }, - [2327] = { - [sym__expr2] = STATE(738), - [sym_atomic_expr] = STATE(1387), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(2826), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2836), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), - }, - [2328] = { + [2819] = { + [sym_lambda_bindings] = STATE(3744), + [sym_untyped_bindings] = STATE(3745), + [sym_typed_bindings] = STATE(3745), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_DOT_DOT] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4317), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3851), + [anon_sym_where] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4321), }, - [2329] = { + [2820] = { + [sym_forall_bindings] = STATE(3746), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(3851), - }, - [2330] = { - [sym_expr] = STATE(3291), - [sym__expr1] = STATE(2324), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(2325), - [sym_atomic_expr] = STATE(1387), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_tele_arrow] = STATE(2326), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(2327), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(2826), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1728), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), - }, - [2331] = { - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_rewrite] = ACTIONS(1997), - [anon_sym_with] = ACTIONS(1997), - }, - [2332] = { - [sym__expr2] = STATE(738), - [sym_atomic_expr] = STATE(1368), - [sym__atomic_expr_curly] = STATE(1369), - [sym__atomic_expr_no_curly] = STATE(1369), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1694), - [sym_set_n] = ACTIONS(1694), - [sym_name_at] = ACTIONS(1696), - [sym_qualified_name] = ACTIONS(1694), - [anon_sym__] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1700), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3857), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(1694), - [anon_sym_Prop] = ACTIONS(1694), - [anon_sym_Set] = ACTIONS(1694), - [anon_sym_quote] = ACTIONS(1694), - [anon_sym_quoteTerm] = ACTIONS(1694), - [anon_sym_unquote] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1704), - [anon_sym_LPAREN_PIPE] = ACTIONS(1706), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1694), - }, - [2333] = { - [sym__application] = STATE(1367), - [sym__expr2] = STATE(265), - [sym_atomic_expr] = STATE(1368), - [sym__atomic_expr_curly] = STATE(1369), - [sym__atomic_expr_no_curly] = STATE(1369), - [sym_non_absurd_lambda_clause] = STATE(1370), - [sym_absurd_lambda_clause] = STATE(1370), - [sym_lambda_clause] = STATE(3293), - [aux_sym__application_repeat1] = STATE(1373), - [sym_literal] = ACTIONS(1694), - [sym_set_n] = ACTIONS(1694), - [sym_name_at] = ACTIONS(1696), - [sym_qualified_name] = ACTIONS(1694), - [anon_sym__] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1700), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1702), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(1694), - [anon_sym_Prop] = ACTIONS(1694), - [anon_sym_Set] = ACTIONS(1694), - [anon_sym_quote] = ACTIONS(1694), - [anon_sym_quoteTerm] = ACTIONS(1694), - [anon_sym_unquote] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1704), - [anon_sym_LPAREN_PIPE] = ACTIONS(1706), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1694), - [sym_catchall_pragma] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(100), }, - [2334] = { - [sym_semi] = STATE(2333), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3294), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_rewrite] = ACTIONS(2001), - [anon_sym_with] = ACTIONS(2001), + [2821] = { + [sym__expr1] = STATE(3747), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(3748), + [sym__declaration] = STATE(3749), + [sym_function_clause] = STATE(3750), + [aux_sym_source_file_repeat1] = STATE(3751), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), }, - [2335] = { - [sym_expr] = STATE(3295), + [2822] = { + [sym_expr] = STATE(3752), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -87922,16 +104615,260 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(4309), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2336] = { - [anon_sym_RBRACE] = ACTIONS(2814), + [2823] = { + [sym_expr] = STATE(3753), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [2824] = { + [sym__layout_semicolon] = ACTIONS(3747), + [sym__layout_close_brace] = ACTIONS(3747), + [anon_sym_SEMI] = ACTIONS(3747), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2816), + [anon_sym_EQ] = ACTIONS(3747), + [anon_sym_where] = ACTIONS(3747), + [anon_sym_COLON] = ACTIONS(3747), + [anon_sym_module] = ACTIONS(3747), + [anon_sym_with] = ACTIONS(3747), }, - [2337] = { - [sym_expr] = STATE(2345), + [2825] = { + [sym__layout_semicolon] = ACTIONS(284), + [sym__layout_close_brace] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(284), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_where] = ACTIONS(284), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), + [anon_sym_with] = ACTIONS(284), + }, + [2826] = { + [sym__layout_semicolon] = ACTIONS(286), + [sym__layout_close_brace] = ACTIONS(286), + [anon_sym_SEMI] = ACTIONS(286), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_where] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_module] = ACTIONS(286), + [anon_sym_with] = ACTIONS(286), + }, + [2827] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), + }, + [2828] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), + }, + [2829] = { + [sym__application] = STATE(3754), + [sym__expr2] = STATE(2826), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(2827), + [sym__atomic_expr_curly] = STATE(2828), + [sym__atomic_expr_no_curly] = STATE(2828), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(2830), + [sym_literal] = ACTIONS(3313), + [sym_set_n] = ACTIONS(3313), + [sym_name_at] = ACTIONS(3315), + [sym_qualified_name] = ACTIONS(3313), + [anon_sym__] = ACTIONS(3313), + [anon_sym_DOT] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3319), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3321), + [anon_sym_forall] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_QMARK] = ACTIONS(3313), + [anon_sym_Prop] = ACTIONS(3313), + [anon_sym_Set] = ACTIONS(3313), + [anon_sym_quote] = ACTIONS(3313), + [anon_sym_quoteTerm] = ACTIONS(3313), + [anon_sym_unquote] = ACTIONS(3313), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_LPAREN_PIPE] = ACTIONS(3329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3313), + }, + [2830] = { + [sym__expr2] = STATE(3755), + [sym_atomic_expr] = STATE(2827), + [sym__atomic_expr_curly] = STATE(2828), + [sym__atomic_expr_no_curly] = STATE(2828), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(3313), + [sym_set_n] = ACTIONS(3313), + [sym_name_at] = ACTIONS(3315), + [sym_qualified_name] = ACTIONS(3313), + [anon_sym__] = ACTIONS(3313), + [anon_sym_DOT] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3319), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3321), + [anon_sym_forall] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_QMARK] = ACTIONS(3313), + [anon_sym_Prop] = ACTIONS(3313), + [anon_sym_Set] = ACTIONS(3313), + [anon_sym_quote] = ACTIONS(3313), + [anon_sym_quoteTerm] = ACTIONS(3313), + [anon_sym_unquote] = ACTIONS(3313), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_LPAREN_PIPE] = ACTIONS(3329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3313), + }, + [2831] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [anon_sym_SEMI] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + }, + [2832] = { + [sym_atomic_expr] = STATE(3756), + [sym__atomic_expr_curly] = STATE(2844), + [sym__atomic_expr_no_curly] = STATE(2844), + [sym_literal] = ACTIONS(3331), + [sym_set_n] = ACTIONS(3331), + [sym_name_at] = ACTIONS(3333), + [sym_qualified_name] = ACTIONS(3331), + [anon_sym__] = ACTIONS(3331), + [anon_sym_DOT] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3335), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3337), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3331), + [anon_sym_Prop] = ACTIONS(3331), + [anon_sym_Set] = ACTIONS(3331), + [anon_sym_quote] = ACTIONS(3331), + [anon_sym_quoteTerm] = ACTIONS(3331), + [anon_sym_unquote] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_LPAREN_PIPE] = ACTIONS(3347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3331), + }, + [2833] = { + [sym_expr] = STATE(3758), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -87952,1660 +104889,1009 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(4323), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [2338] = { - [sym_expr] = STATE(2346), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2848), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), - }, - [2339] = { - [sym_expr] = STATE(2347), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(2848), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [2340] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_rewrite] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), - }, - [2341] = { - [sym_expr] = STATE(2345), - [sym__expr1] = STATE(38), - [sym__application] = STATE(557), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(2846), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2342] = { - [sym_expr] = STATE(2346), + [2834] = { + [sym_expr] = STATE(3759), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(61), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4325), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2343] = { - [sym_expr] = STATE(2347), + [2835] = { + [sym_lambda_bindings] = STATE(3765), + [sym_untyped_bindings] = STATE(3766), + [sym_typed_bindings] = STATE(3766), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4333), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_LPAREN] = ACTIONS(4337), + }, + [2836] = { + [sym_forall_bindings] = STATE(3767), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [2837] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(3768), + [sym__declaration] = STATE(3769), + [sym_function_clause] = STATE(3770), + [aux_sym_source_file_repeat1] = STATE(3771), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), + }, + [2838] = { + [sym_expr] = STATE(3772), [sym__expr1] = STATE(110), - [sym__application] = STATE(559), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(2848), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [2344] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_rewrite] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), - }, - [2345] = { - [anon_sym_RBRACE] = ACTIONS(3859), - [sym_comment] = ACTIONS(86), - }, - [2346] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3861), - [sym_comment] = ACTIONS(86), - }, - [2347] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3861), - }, - [2348] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(3861), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(4325), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2349] = { - [sym_expr] = STATE(3298), - [sym__expr1] = STATE(1385), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(1386), - [sym_atomic_expr] = STATE(1387), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_tele_arrow] = STATE(1389), + [2839] = { + [sym_expr] = STATE(3773), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(1390), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(1722), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(1724), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1728), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(352), - [anon_sym_forall] = ACTIONS(354), - [anon_sym_let] = ACTIONS(356), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), - }, - [2350] = { - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_rewrite] = ACTIONS(2061), - [anon_sym_with] = ACTIONS(2061), - }, - [2351] = { - [sym_literal] = ACTIONS(1302), - [sym_set_n] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [sym_name_at] = ACTIONS(1302), - [sym_qualified_name] = ACTIONS(1302), - [anon_sym__] = ACTIONS(1302), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1302), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_BSLASH] = ACTIONS(1302), - [anon_sym_where] = ACTIONS(1302), - [anon_sym_forall] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1302), - [anon_sym_Prop] = ACTIONS(1302), - [anon_sym_Set] = ACTIONS(1302), - [anon_sym_quote] = ACTIONS(1302), - [anon_sym_quoteTerm] = ACTIONS(1302), - [anon_sym_unquote] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LPAREN_PIPE] = ACTIONS(1302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_COLON] = ACTIONS(1302), - [anon_sym_module] = ACTIONS(1302), - [anon_sym_rewrite] = ACTIONS(1302), - [anon_sym_with] = ACTIONS(1302), - }, - [2352] = { - [sym_literal] = ACTIONS(1320), - [sym_set_n] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_name_at] = ACTIONS(1320), - [sym_qualified_name] = ACTIONS(1320), - [anon_sym__] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1320), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_BSLASH] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_forall] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_Prop] = ACTIONS(1320), - [anon_sym_Set] = ACTIONS(1320), - [anon_sym_quote] = ACTIONS(1320), - [anon_sym_quoteTerm] = ACTIONS(1320), - [anon_sym_unquote] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_LPAREN_PIPE] = ACTIONS(1320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1320), - [anon_sym_COLON] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_rewrite] = ACTIONS(1320), - [anon_sym_with] = ACTIONS(1320), - }, - [2353] = { - [sym_literal] = ACTIONS(1322), - [sym_set_n] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [sym_name_at] = ACTIONS(1322), - [sym_qualified_name] = ACTIONS(1322), - [anon_sym__] = ACTIONS(1322), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1322), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_BSLASH] = ACTIONS(1322), - [anon_sym_where] = ACTIONS(1322), - [anon_sym_forall] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_in] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_Prop] = ACTIONS(1322), - [anon_sym_Set] = ACTIONS(1322), - [anon_sym_quote] = ACTIONS(1322), - [anon_sym_quoteTerm] = ACTIONS(1322), - [anon_sym_unquote] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_LPAREN_PIPE] = ACTIONS(1322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_module] = ACTIONS(1322), - [anon_sym_rewrite] = ACTIONS(1322), - [anon_sym_with] = ACTIONS(1322), - }, - [2354] = { - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_COLON] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_rewrite] = ACTIONS(1352), - [anon_sym_with] = ACTIONS(1352), - }, - [2355] = { - [sym_semi] = STATE(3299), - [aux_sym__declarations1_repeat1] = STATE(3300), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_rewrite] = ACTIONS(1376), - [anon_sym_with] = ACTIONS(1376), - }, - [2356] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_where] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1380), - [anon_sym_module] = ACTIONS(1380), - [anon_sym_rewrite] = ACTIONS(1380), - [anon_sym_with] = ACTIONS(1380), - }, - [2357] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3863), - }, - [2358] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_where] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_rewrite] = ACTIONS(1386), - [anon_sym_with] = ACTIONS(1386), - }, - [2359] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), - }, - [2360] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [2361] = { - [anon_sym_RBRACE] = ACTIONS(3865), + [2840] = { + [sym__layout_semicolon] = ACTIONS(3765), + [sym__layout_close_brace] = ACTIONS(3765), + [anon_sym_SEMI] = ACTIONS(3765), [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3765), + [anon_sym_where] = ACTIONS(3765), + [anon_sym_COLON] = ACTIONS(3765), + [anon_sym_module] = ACTIONS(3765), }, - [2362] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3867), + [2841] = { + [sym__layout_semicolon] = ACTIONS(284), + [sym__layout_close_brace] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(284), [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_where] = ACTIONS(284), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), }, - [2363] = { - [anon_sym_LBRACE] = ACTIONS(3869), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3871), + [2842] = { + [sym__layout_semicolon] = ACTIONS(286), + [sym__layout_close_brace] = ACTIONS(286), + [anon_sym_SEMI] = ACTIONS(286), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(3873), - }, - [2364] = { - [sym__application] = STATE(3308), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(3309), - [aux_sym__application_repeat1] = STATE(311), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(3875), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_where] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_module] = ACTIONS(286), }, - [2365] = { - [sym__application] = STATE(3310), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3875), + [2843] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [2366] = { - [sym__application] = STATE(3319), - [sym__expr2] = STATE(1412), - [sym_atomic_expr] = STATE(3320), - [sym__atomic_expr_curly] = STATE(3321), - [sym__atomic_expr_no_curly] = STATE(3321), - [sym_non_absurd_lambda_clause] = STATE(3322), - [sym_absurd_lambda_clause] = STATE(3322), - [sym_lambda_clause] = STATE(3323), - [sym_lambda_where_clauses] = STATE(3324), - [aux_sym__application_repeat1] = STATE(3325), - [sym_literal] = ACTIONS(3877), - [sym_set_n] = ACTIONS(3877), - [sym_name_at] = ACTIONS(3879), - [sym_qualified_name] = ACTIONS(3877), - [anon_sym__] = ACTIONS(3877), - [anon_sym_DOT] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3883), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3885), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3877), - [anon_sym_Prop] = ACTIONS(3877), - [anon_sym_Set] = ACTIONS(3877), - [anon_sym_quote] = ACTIONS(3877), - [anon_sym_quoteTerm] = ACTIONS(3877), - [anon_sym_unquote] = ACTIONS(3877), - [anon_sym_LPAREN] = ACTIONS(3887), - [anon_sym_LPAREN_PIPE] = ACTIONS(3889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3877), - [sym_catchall_pragma] = ACTIONS(3891), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), }, - [2367] = { - [sym_binding_name] = STATE(3326), - [sym__application] = STATE(3327), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [2844] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(3875), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [2368] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3893), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [2369] = { - [sym_lambda_bindings] = STATE(3307), - [sym_untyped_bindings] = STATE(2369), - [sym_typed_bindings] = STATE(2369), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_DOT_DOT] = ACTIONS(3895), - [anon_sym_LBRACE] = ACTIONS(3897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3899), - [anon_sym_RBRACE_RBRACE] = ACTIONS(464), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3901), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), }, - [2370] = { - [sym_expr] = STATE(3324), - [sym__expr1] = STATE(3337), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(3338), - [sym_atomic_expr] = STATE(3339), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_tele_arrow] = STATE(3341), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1415), - [aux_sym__application_repeat1] = STATE(3342), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(3905), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3911), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1752), - [anon_sym_forall] = ACTIONS(1754), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), + [2845] = { + [sym__application] = STATE(3774), + [sym__expr2] = STATE(2842), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(2843), + [sym__atomic_expr_curly] = STATE(2844), + [sym__atomic_expr_no_curly] = STATE(2844), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(2846), + [sym_literal] = ACTIONS(3331), + [sym_set_n] = ACTIONS(3331), + [sym_name_at] = ACTIONS(3333), + [sym_qualified_name] = ACTIONS(3331), + [anon_sym__] = ACTIONS(3331), + [anon_sym_DOT] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3335), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3337), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3339), + [anon_sym_forall] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_QMARK] = ACTIONS(3331), + [anon_sym_Prop] = ACTIONS(3331), + [anon_sym_Set] = ACTIONS(3331), + [anon_sym_quote] = ACTIONS(3331), + [anon_sym_quoteTerm] = ACTIONS(3331), + [anon_sym_unquote] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_LPAREN_PIPE] = ACTIONS(3347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3331), }, - [2371] = { - [sym_rewrite_equations] = STATE(3344), - [sym_with_expressions] = STATE(3345), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE_RBRACE] = ACTIONS(152), + [2846] = { + [sym__expr2] = STATE(3775), + [sym_atomic_expr] = STATE(2843), + [sym__atomic_expr_curly] = STATE(2844), + [sym__atomic_expr_no_curly] = STATE(2844), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(3331), + [sym_set_n] = ACTIONS(3331), + [sym_name_at] = ACTIONS(3333), + [sym_qualified_name] = ACTIONS(3331), + [anon_sym__] = ACTIONS(3331), + [anon_sym_DOT] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3335), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3337), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(948), - [anon_sym_with] = ACTIONS(3917), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3339), + [anon_sym_forall] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_QMARK] = ACTIONS(3331), + [anon_sym_Prop] = ACTIONS(3331), + [anon_sym_Set] = ACTIONS(3331), + [anon_sym_quote] = ACTIONS(3331), + [anon_sym_quoteTerm] = ACTIONS(3331), + [anon_sym_unquote] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_LPAREN_PIPE] = ACTIONS(3347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3331), }, - [2372] = { - [sym_where_clause] = STATE(3349), - [sym_rhs] = STATE(3350), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE_RBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3919), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(3921), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(3919), - [anon_sym_module] = ACTIONS(3923), - [anon_sym_with] = ACTIONS(170), + [2847] = { + [sym__layout_semicolon] = ACTIONS(3767), + [sym__layout_close_brace] = ACTIONS(3767), + [anon_sym_SEMI] = ACTIONS(3767), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3767), + [anon_sym_where] = ACTIONS(3767), + [anon_sym_COLON] = ACTIONS(3767), + [anon_sym_module] = ACTIONS(3767), }, - [2373] = { - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), - [anon_sym_RBRACE_RBRACE] = ACTIONS(178), + [2848] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [anon_sym_SEMI] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_where] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_in] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - [anon_sym_COLON] = ACTIONS(178), - [anon_sym_module] = ACTIONS(178), - [anon_sym_with] = ACTIONS(178), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), }, - [2374] = { - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), - [anon_sym_RBRACE_RBRACE] = ACTIONS(180), + [2849] = { + [sym_atomic_expr] = STATE(3779), + [sym__atomic_expr_curly] = STATE(2864), + [sym__atomic_expr_no_curly] = STATE(2864), + [sym_literal] = ACTIONS(3349), + [sym_set_n] = ACTIONS(3349), + [sym_name_at] = ACTIONS(3351), + [sym_qualified_name] = ACTIONS(3349), + [anon_sym__] = ACTIONS(3349), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(4339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4341), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3349), + [anon_sym_Prop] = ACTIONS(3349), + [anon_sym_Set] = ACTIONS(3349), + [anon_sym_quote] = ACTIONS(3349), + [anon_sym_quoteTerm] = ACTIONS(3349), + [anon_sym_unquote] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(4343), + [anon_sym_LPAREN_PIPE] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), + }, + [2850] = { + [sym_atomic_expr] = STATE(3779), + [sym__atomic_expr_curly] = STATE(2864), + [sym__atomic_expr_no_curly] = STATE(2864), + [sym_literal] = ACTIONS(3349), + [sym_set_n] = ACTIONS(3349), + [sym_name_at] = ACTIONS(3351), + [sym_qualified_name] = ACTIONS(3349), + [anon_sym__] = ACTIONS(3349), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4347), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3349), + [anon_sym_Prop] = ACTIONS(3349), + [anon_sym_Set] = ACTIONS(3349), + [anon_sym_quote] = ACTIONS(3349), + [anon_sym_quoteTerm] = ACTIONS(3349), + [anon_sym_unquote] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_LPAREN_PIPE] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), + }, + [2851] = { + [sym_expr] = STATE(3784), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(180), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_where] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_in] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), - [anon_sym_COLON] = ACTIONS(180), - [anon_sym_module] = ACTIONS(180), - [anon_sym_with] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2375] = { - [sym__expr1] = STATE(2371), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2372), - [sym__declaration] = STATE(2373), - [sym_function_clause] = STATE(2374), - [aux_sym_source_file_repeat1] = STATE(3351), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [2852] = { + [sym_expr] = STATE(3785), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4353), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [2376] = { + [2853] = { + [sym_lambda_bindings] = STATE(3791), + [sym_untyped_bindings] = STATE(3792), + [sym_typed_bindings] = STATE(3792), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_LBRACE] = ACTIONS(4359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4361), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3867), + [anon_sym_where] = ACTIONS(4363), + [anon_sym_LPAREN] = ACTIONS(4365), }, - [2377] = { + [2854] = { + [sym_forall_bindings] = STATE(3793), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(3867), + [anon_sym_LPAREN] = ACTIONS(100), }, - [2378] = { - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [anon_sym_RBRACE_RBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_in] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), - [anon_sym_with] = ACTIONS(709), + [2855] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(3794), + [sym__declaration] = STATE(3795), + [sym_function_clause] = STATE(3796), + [aux_sym_source_file_repeat1] = STATE(3797), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), }, - [2379] = { - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [anon_sym_RBRACE_RBRACE] = ACTIONS(729), + [2856] = { + [sym_expr] = STATE(3798), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_with] = ACTIONS(729), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(4353), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2380] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), + [2857] = { + [sym_expr] = STATE(3799), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [2381] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), + [2858] = { + [sym__layout_semicolon] = ACTIONS(3785), + [sym__layout_close_brace] = ACTIONS(3785), + [anon_sym_SEMI] = ACTIONS(3785), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(3785), + [anon_sym_module] = ACTIONS(3785), }, - [2382] = { - [anon_sym_RBRACE] = ACTIONS(3925), + [2859] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym__layout_close_brace] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(280), [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_where] = ACTIONS(280), + [anon_sym_module] = ACTIONS(280), }, - [2383] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3927), + [2860] = { + [sym__layout_semicolon] = ACTIONS(284), + [sym__layout_close_brace] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(284), [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_where] = ACTIONS(284), + [anon_sym_module] = ACTIONS(284), }, - [2384] = { - [anon_sym_LBRACE] = ACTIONS(3929), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3931), + [2861] = { + [sym__layout_semicolon] = ACTIONS(286), + [sym__layout_close_brace] = ACTIONS(286), + [anon_sym_SEMI] = ACTIONS(286), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_where] = ACTIONS(286), + [anon_sym_module] = ACTIONS(286), }, - [2385] = { - [sym__application] = STATE(3358), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(3359), - [aux_sym__application_repeat1] = STATE(311), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(3935), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(406), + [2862] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(162), }, - [2386] = { - [sym__application] = STATE(3360), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3935), + [2863] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_module] = ACTIONS(164), }, - [2387] = { - [sym__application] = STATE(3369), - [sym__expr2] = STATE(1428), - [sym_atomic_expr] = STATE(3370), - [sym__atomic_expr_curly] = STATE(3371), - [sym__atomic_expr_no_curly] = STATE(3371), - [sym_non_absurd_lambda_clause] = STATE(3372), - [sym_absurd_lambda_clause] = STATE(3372), - [sym_lambda_clause] = STATE(3373), - [sym_lambda_where_clauses] = STATE(3374), - [aux_sym__application_repeat1] = STATE(3375), - [sym_literal] = ACTIONS(3937), - [sym_set_n] = ACTIONS(3937), - [sym_name_at] = ACTIONS(3939), - [sym_qualified_name] = ACTIONS(3937), - [anon_sym__] = ACTIONS(3937), - [anon_sym_DOT] = ACTIONS(3939), - [anon_sym_LBRACE] = ACTIONS(3941), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3943), + [2864] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3945), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(3937), - [anon_sym_Prop] = ACTIONS(3937), - [anon_sym_Set] = ACTIONS(3937), - [anon_sym_quote] = ACTIONS(3937), - [anon_sym_quoteTerm] = ACTIONS(3937), - [anon_sym_unquote] = ACTIONS(3937), - [anon_sym_LPAREN] = ACTIONS(3947), - [anon_sym_LPAREN_PIPE] = ACTIONS(3949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3937), - [sym_catchall_pragma] = ACTIONS(3951), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), }, - [2388] = { - [sym_binding_name] = STATE(3376), - [sym__application] = STATE(3377), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [2865] = { + [sym_expr] = STATE(3801), + [sym__expr1] = STATE(2859), + [sym__application] = STATE(2860), + [sym__expr2] = STATE(2861), + [sym__atomic_exprs1] = STATE(2862), + [sym_atomic_expr] = STATE(2863), + [sym__atomic_expr_curly] = STATE(2864), + [sym__atomic_expr_no_curly] = STATE(2864), + [sym_tele_arrow] = STATE(2865), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2866), + [aux_sym__application_repeat1] = STATE(2867), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3349), + [sym_set_n] = ACTIONS(3349), + [sym_name_at] = ACTIONS(3351), + [sym_qualified_name] = ACTIONS(3349), + [anon_sym__] = ACTIONS(3349), + [anon_sym_DOT] = ACTIONS(3353), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3357), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3359), + [anon_sym_forall] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_QMARK] = ACTIONS(3349), + [anon_sym_Prop] = ACTIONS(3349), + [anon_sym_Set] = ACTIONS(3349), + [anon_sym_quote] = ACTIONS(3349), + [anon_sym_quoteTerm] = ACTIONS(3349), + [anon_sym_unquote] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_LPAREN_PIPE] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), + }, + [2866] = { + [sym__application] = STATE(3808), + [sym__expr2] = STATE(2861), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(3809), + [sym__atomic_expr_curly] = STATE(3810), + [sym__atomic_expr_no_curly] = STATE(3810), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(3811), + [sym_literal] = ACTIONS(4369), + [sym_set_n] = ACTIONS(4369), + [sym_name_at] = ACTIONS(4371), + [sym_qualified_name] = ACTIONS(4369), + [anon_sym__] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4371), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4375), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3359), + [anon_sym_forall] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_QMARK] = ACTIONS(4369), + [anon_sym_Prop] = ACTIONS(4369), + [anon_sym_Set] = ACTIONS(4369), + [anon_sym_quote] = ACTIONS(4369), + [anon_sym_quoteTerm] = ACTIONS(4369), + [anon_sym_unquote] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_LPAREN_PIPE] = ACTIONS(4379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4369), + }, + [2867] = { + [sym__expr2] = STATE(3812), + [sym_atomic_expr] = STATE(2863), + [sym__atomic_expr_curly] = STATE(2864), + [sym__atomic_expr_no_curly] = STATE(2864), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(3349), + [sym_set_n] = ACTIONS(3349), + [sym_name_at] = ACTIONS(3351), + [sym_qualified_name] = ACTIONS(3349), + [anon_sym__] = ACTIONS(3349), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(4339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4341), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(3935), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3359), + [anon_sym_forall] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_QMARK] = ACTIONS(3349), + [anon_sym_Prop] = ACTIONS(3349), + [anon_sym_Set] = ACTIONS(3349), + [anon_sym_quote] = ACTIONS(3349), + [anon_sym_quoteTerm] = ACTIONS(3349), + [anon_sym_unquote] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(4343), + [anon_sym_LPAREN_PIPE] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), }, - [2389] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3953), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [2868] = { + [sym_vclose] = STATE(3814), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(3815), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(4381), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [2869] = { + [sym__layout_semicolon] = ACTIONS(3793), + [sym__layout_close_brace] = ACTIONS(3793), + [anon_sym_SEMI] = ACTIONS(3793), + [sym_comment] = ACTIONS(86), + }, + [2870] = { + [sym__layout_semicolon] = ACTIONS(3795), + [sym__layout_close_brace] = ACTIONS(3795), + [anon_sym_SEMI] = ACTIONS(3795), + [sym_comment] = ACTIONS(86), + }, + [2871] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(4383), + }, + [2872] = { + [sym__layout_semicolon] = ACTIONS(3799), + [sym__layout_close_brace] = ACTIONS(3799), + [anon_sym_SEMI] = ACTIONS(3799), + [sym_comment] = ACTIONS(86), }, - [2390] = { - [sym_lambda_bindings] = STATE(3357), - [sym_untyped_bindings] = STATE(2390), - [sym_typed_bindings] = STATE(2390), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_DOT_DOT] = ACTIONS(3955), - [anon_sym_LBRACE] = ACTIONS(3957), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3959), - [anon_sym_RBRACE_RBRACE] = ACTIONS(464), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [2873] = { + [sym__layout_semicolon] = ACTIONS(4385), + [sym__layout_close_brace] = ACTIONS(4385), + [anon_sym_SEMI] = ACTIONS(4385), + [sym_comment] = ACTIONS(86), }, - [2391] = { - [sym_expr] = STATE(3374), - [sym__expr1] = STATE(2145), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(2146), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(2149), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1431), - [aux_sym__application_repeat1] = STATE(2150), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(2644), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2646), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1770), - [anon_sym_forall] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [2874] = { + [sym_semi] = STATE(1852), + [aux_sym__declarations1_repeat1] = STATE(2874), + [sym__layout_semicolon] = ACTIONS(4387), + [sym__layout_close_brace] = ACTIONS(4385), + [anon_sym_SEMI] = ACTIONS(4387), + [sym_comment] = ACTIONS(86), }, - [2392] = { - [sym_where_clause] = STATE(3382), - [sym_rhs] = STATE(3383), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE_RBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(3963), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1490), - [anon_sym_module] = ACTIONS(3965), + [2875] = { + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4392), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4392), + [anon_sym_EQ] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_RPAREN] = ACTIONS(4392), + [anon_sym_PIPE_RPAREN] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(4392), }, - [2393] = { - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), - [anon_sym_RBRACE_RBRACE] = ACTIONS(178), + [2876] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_where] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_in] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - [anon_sym_COLON] = ACTIONS(178), - [anon_sym_module] = ACTIONS(178), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_RPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), }, - [2394] = { - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), - [anon_sym_RBRACE_RBRACE] = ACTIONS(180), + [2877] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(180), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_where] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_in] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), - [anon_sym_COLON] = ACTIONS(180), - [anon_sym_module] = ACTIONS(180), - }, - [2395] = { - [sym__expr1] = STATE(263), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2392), - [sym__declaration] = STATE(2393), - [sym_function_clause] = STATE(2394), - [aux_sym_source_file_repeat1] = STATE(3384), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), }, - [2396] = { + [2878] = { + [anon_sym_RBRACE] = ACTIONS(4394), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3927), }, - [2397] = { + [2879] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4396), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(3927), }, - [2398] = { - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [anon_sym_RBRACE_RBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_in] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), + [2880] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4396), }, - [2399] = { - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [anon_sym_RBRACE_RBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), + [2881] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4396), }, - [2400] = { - [sym_expr] = STATE(2408), + [2882] = { + [sym_expr] = STATE(2890), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -89626,7 +105912,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(3395), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -89642,8 +105928,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2401] = { - [sym_expr] = STATE(2409), + [2883] = { + [sym_expr] = STATE(2891), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -89665,7 +105951,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2902), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3397), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -89680,8 +105966,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2402] = { - [sym_expr] = STATE(2422), + [2884] = { + [sym_expr] = STATE(2892), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -89714,21 +106000,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(2902), + [anon_sym_RPAREN] = ACTIONS(3397), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2403] = { + [2885] = { + [ts_builtin_sym_end] = ACTIONS(186), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), [sym_name_at] = ACTIONS(186), [sym_qualified_name] = ACTIONS(186), [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(186), [anon_sym_EQ] = ACTIONS(186), @@ -89745,14 +106031,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(186), [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_RPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), [anon_sym_module] = ACTIONS(186), }, - [2404] = { - [sym_expr] = STATE(2408), + [2886] = { + [sym_expr] = STATE(2890), [sym__expr1] = STATE(38), - [sym__application] = STATE(557), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -89771,7 +106059,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(3395), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -89787,10 +106075,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2405] = { - [sym_expr] = STATE(2409), + [2887] = { + [sym_expr] = STATE(2891), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -89810,7 +106098,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2902), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3397), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -89825,10 +106113,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [2406] = { - [sym_expr] = STATE(2422), + [2888] = { + [sym_expr] = STATE(2892), [sym__expr1] = STATE(110), - [sym__application] = STATE(559), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -89859,21 +106147,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(2902), + [anon_sym_RPAREN] = ACTIONS(3397), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2407] = { + [2889] = { + [ts_builtin_sym_end] = ACTIONS(228), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), [sym_name_at] = ACTIONS(228), [sym_qualified_name] = ACTIONS(228), [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(228), [anon_sym_EQ] = ACTIONS(228), @@ -89890,514 +106178,236 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(228), [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), [anon_sym_module] = ACTIONS(228), }, - [2408] = { - [anon_sym_RBRACE] = ACTIONS(3967), + [2890] = { + [anon_sym_RBRACE] = ACTIONS(4398), [sym_comment] = ACTIONS(86), }, - [2409] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(3969), + [2891] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4400), [sym_comment] = ACTIONS(86), }, - [2410] = { - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3973), + [2892] = { [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(3975), - }, - [2411] = { - [sym__application] = STATE(3391), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(3392), - [aux_sym__application_repeat1] = STATE(311), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(406), + [anon_sym_RPAREN] = ACTIONS(4400), }, - [2412] = { - [sym__application] = STATE(3393), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3977), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [2893] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4400), }, - [2413] = { - [sym__application] = STATE(3402), - [sym__expr2] = STATE(1447), - [sym_atomic_expr] = STATE(3403), - [sym__atomic_expr_curly] = STATE(3404), - [sym__atomic_expr_no_curly] = STATE(3404), - [sym_non_absurd_lambda_clause] = STATE(3405), - [sym_absurd_lambda_clause] = STATE(3405), - [sym_lambda_clause] = STATE(3406), - [sym_lambda_where_clauses] = STATE(3407), - [aux_sym__application_repeat1] = STATE(3408), - [sym_literal] = ACTIONS(3979), - [sym_set_n] = ACTIONS(3979), - [sym_name_at] = ACTIONS(3981), - [sym_qualified_name] = ACTIONS(3979), - [anon_sym__] = ACTIONS(3979), - [anon_sym_DOT] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3985), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3987), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(3979), - [anon_sym_Prop] = ACTIONS(3979), - [anon_sym_Set] = ACTIONS(3979), - [anon_sym_quote] = ACTIONS(3979), - [anon_sym_quoteTerm] = ACTIONS(3979), - [anon_sym_unquote] = ACTIONS(3979), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), - [sym_catchall_pragma] = ACTIONS(3993), + [2894] = { + [sym_expr] = STATE(3821), + [sym__expr1] = STATE(1883), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(1884), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(1887), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1130), + [aux_sym__application_repeat1] = STATE(1888), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2320), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2322), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_forall] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [2414] = { - [sym_binding_name] = STATE(3409), - [sym__application] = STATE(3410), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(3977), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [2895] = { + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_RPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), }, - [2415] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3995), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [2896] = { + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_RPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), }, - [2416] = { - [sym_lambda_bindings] = STATE(3390), - [sym_untyped_bindings] = STATE(2416), - [sym_typed_bindings] = STATE(2416), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3997), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3999), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4001), - [anon_sym_RBRACE_RBRACE] = ACTIONS(464), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(4003), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [2897] = { + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_RPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), }, - [2417] = { - [sym_expr] = STATE(3407), - [sym__expr1] = STATE(1445), - [sym__application] = STATE(1446), - [sym__expr2] = STATE(1447), - [sym__atomic_exprs1] = STATE(1448), - [sym_atomic_expr] = STATE(1449), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_tele_arrow] = STATE(1451), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1452), - [aux_sym__application_repeat1] = STATE(1453), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(1782), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1788), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1790), - [anon_sym_forall] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1794), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), + [2898] = { + [sym_vclose] = STATE(3822), + [sym__layout_close_brace] = ACTIONS(3403), + [sym_comment] = ACTIONS(86), }, - [2418] = { - [sym_where_clause] = STATE(3415), - [sym_rhs] = STATE(3416), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE_RBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(952), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(952), - [anon_sym_module] = ACTIONS(4007), + [2899] = { + [sym_vopen] = STATE(1889), + [sym_declarations] = STATE(1890), + [sym__declarations0] = STATE(3823), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [2419] = { - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), - [anon_sym_RBRACE_RBRACE] = ACTIONS(178), + [2900] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE_RBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_where] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_in] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - [anon_sym_module] = ACTIONS(178), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), }, - [2420] = { - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), - [anon_sym_RBRACE_RBRACE] = ACTIONS(180), + [2901] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE_RBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(180), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_where] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_in] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), - [anon_sym_module] = ACTIONS(180), - }, - [2421] = { - [sym__expr1] = STATE(263), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2418), - [sym__declaration] = STATE(2419), - [sym_function_clause] = STATE(2420), - [aux_sym_source_file_repeat1] = STATE(3417), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [2422] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), }, - [2423] = { + [2902] = { + [anon_sym_RBRACE] = ACTIONS(4402), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(3969), - }, - [2424] = { - [sym_expr] = STATE(3418), - [sym__expr1] = STATE(1445), - [sym__application] = STATE(1446), - [sym__expr2] = STATE(1447), - [sym__atomic_exprs1] = STATE(1448), - [sym_atomic_expr] = STATE(1449), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_tele_arrow] = STATE(1451), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1452), - [aux_sym__application_repeat1] = STATE(1453), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(1782), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1788), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1790), - [anon_sym_forall] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1794), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), }, - [2425] = { - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - }, - [2426] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), + [2903] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4404), + [sym_comment] = ACTIONS(86), }, - [2427] = { - [sym_atomic_expr] = STATE(3419), - [sym__atomic_expr_curly] = STATE(2434), - [sym__atomic_expr_no_curly] = STATE(2434), - [sym_literal] = ACTIONS(2920), - [sym_set_n] = ACTIONS(2920), - [sym_name_at] = ACTIONS(2922), - [sym_qualified_name] = ACTIONS(2920), - [anon_sym__] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2926), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2920), - [anon_sym_Prop] = ACTIONS(2920), - [anon_sym_Set] = ACTIONS(2920), - [anon_sym_quote] = ACTIONS(2920), - [anon_sym_quoteTerm] = ACTIONS(2920), - [anon_sym_unquote] = ACTIONS(2920), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_LPAREN_PIPE] = ACTIONS(2930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2920), + [2904] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4404), }, - [2428] = { - [sym_expr] = STATE(3421), + [2905] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4404), + }, + [2906] = { + [sym_expr] = STATE(2914), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -90418,7 +106428,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(3427), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -90434,8 +106444,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2429] = { - [sym_expr] = STATE(3422), + [2907] = { + [sym_expr] = STATE(2915), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -90457,7 +106467,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4011), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3429), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -90472,8 +106482,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2430] = { - [sym_expr] = STATE(3423), + [2908] = { + [sym_expr] = STATE(2916), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -90506,337 +106516,144 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(4011), + [anon_sym_RPAREN] = ACTIONS(3429), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2431] = { - [sym_expr] = STATE(3424), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), + [2909] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE_RBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + }, + [2910] = { + [sym_expr] = STATE(2914), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [2432] = { - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [anon_sym_RBRACE_RBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_in] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), - }, - [2433] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_module] = ACTIONS(164), - }, - [2434] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - }, - [2435] = { - [sym__expr2] = STATE(2436), - [sym_atomic_expr] = STATE(2433), - [sym__atomic_expr_curly] = STATE(2434), - [sym__atomic_expr_no_curly] = STATE(2434), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2920), - [sym_set_n] = ACTIONS(2920), - [sym_name_at] = ACTIONS(2922), - [sym_qualified_name] = ACTIONS(2920), - [anon_sym__] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2926), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1790), - [anon_sym_forall] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1794), - [anon_sym_QMARK] = ACTIONS(2920), - [anon_sym_Prop] = ACTIONS(2920), - [anon_sym_Set] = ACTIONS(2920), - [anon_sym_quote] = ACTIONS(2920), - [anon_sym_quoteTerm] = ACTIONS(2920), - [anon_sym_unquote] = ACTIONS(2920), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_LPAREN_PIPE] = ACTIONS(2930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2920), - }, - [2436] = { - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [anon_sym_RBRACE_RBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - }, - [2437] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(1336), - [sym__declaration] = STATE(3425), - [sym_function_clause] = STATE(270), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(3427), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [2438] = { - [sym_semi] = STATE(2437), - [aux_sym__declarations1_repeat1] = STATE(3426), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2439] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(1336), - [sym__declaration] = STATE(1454), - [sym_function_clause] = STATE(270), - [sym__declarations1] = STATE(3427), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2552), + [2911] = { + [sym_expr] = STATE(2915), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3429), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [2440] = { - [anon_sym_RBRACE] = ACTIONS(4013), - [sym_comment] = ACTIONS(86), - }, - [2441] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4013), - [sym_comment] = ACTIONS(86), - }, - [2442] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4013), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [2443] = { - [sym_expr] = STATE(1500), - [sym__expr1] = STATE(1476), - [sym__application] = STATE(39), + [2912] = { + [sym_expr] = STATE(2916), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1477), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1478), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1479), - [aux_sym__application_repeat1] = STATE(1480), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), + [sym_name_at] = ACTIONS(268), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -90844,1016 +106661,1852 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(3429), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2444] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [2913] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE_RBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4015), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [2445] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(2162), - [aux_sym__application_repeat1] = STATE(1472), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [2914] = { + [anon_sym_RBRACE] = ACTIONS(4406), + [sym_comment] = ACTIONS(86), + }, + [2915] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4408), + [sym_comment] = ACTIONS(86), + }, + [2916] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4408), + }, + [2917] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4408), + }, + [2918] = { + [sym_expr] = STATE(3828), + [sym__expr1] = STATE(1913), + [sym__application] = STATE(1250), + [sym__expr2] = STATE(1251), + [sym__atomic_exprs1] = STATE(1914), + [sym_atomic_expr] = STATE(1915), + [sym__atomic_expr_curly] = STATE(1916), + [sym__atomic_expr_no_curly] = STATE(1916), + [sym_tele_arrow] = STATE(1917), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1254), + [aux_sym__application_repeat1] = STATE(1918), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2350), + [sym_set_n] = ACTIONS(2350), + [sym_name_at] = ACTIONS(2352), + [sym_qualified_name] = ACTIONS(2350), + [anon_sym__] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2354), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2358), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_forall] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(2350), + [anon_sym_Prop] = ACTIONS(2350), + [anon_sym_Set] = ACTIONS(2350), + [anon_sym_quote] = ACTIONS(2350), + [anon_sym_quoteTerm] = ACTIONS(2350), + [anon_sym_unquote] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2350), + }, + [2919] = { + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + }, + [2920] = { + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + }, + [2921] = { + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + }, + [2922] = { + [sym_vclose] = STATE(3829), + [sym__layout_close_brace] = ACTIONS(3435), + [sym_comment] = ACTIONS(86), + }, + [2923] = { + [sym_vopen] = STATE(1919), + [sym_declarations] = STATE(1920), + [sym__declarations0] = STATE(3830), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [2924] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [2925] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [2926] = { + [sym__application] = STATE(3831), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1851), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(1853), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [2446] = { - [sym_semi] = STATE(2445), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3430), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(2674), + [2927] = { + [sym__application] = STATE(3832), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [2928] = { + [sym_binding_name] = STATE(3833), + [sym__application] = STATE(3834), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [2929] = { + [ts_builtin_sym_end] = ACTIONS(882), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + [anon_sym_with] = ACTIONS(882), + }, + [2930] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(4410), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4412), + }, + [2931] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(4414), + [sym_comment] = ACTIONS(86), + }, + [2932] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4410), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4416), + }, + [2933] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(3839), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [2934] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4410), + }, + [2935] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4418), + }, + [2936] = { + [sym_expr] = STATE(3837), + [sym__expr1] = STATE(2941), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(2942), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(2943), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1114), + [aux_sym__application_repeat1] = STATE(2944), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3465), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_forall] = ACTIONS(1380), + [anon_sym_let] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [2937] = { + [sym__application] = STATE(3841), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(3453), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [2938] = { + [sym_atomic_expr] = STATE(3644), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3465), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4213), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(4215), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [2939] = { + [sym_atomic_expr] = STATE(3644), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3465), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4219), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(4221), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [2940] = { + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_with] = ACTIONS(1038), + }, + [2941] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4420), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), + }, + [2942] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2674), + [anon_sym_DASH_GT] = ACTIONS(4422), + [anon_sym_PIPE] = ACTIONS(162), }, - [2447] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(1476), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1477), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1478), + [2943] = { + [sym_expr] = STATE(3654), + [sym__expr1] = STATE(2941), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(2942), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(2943), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1479), - [aux_sym__application_repeat1] = STATE(1480), + [aux_sym__expr1_repeat1] = STATE(1114), + [aux_sym__application_repeat1] = STATE(2944), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1859), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3465), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3467), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_forall] = ACTIONS(1380), + [anon_sym_let] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), }, - [2448] = { - [sym_atomic_expr] = STATE(3050), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(2940), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(2940), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), + [2944] = { + [sym__expr2] = STATE(1944), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3465), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4213), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_forall] = ACTIONS(1380), + [anon_sym_let] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(4215), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), }, - [2449] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(2083), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(2940), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(2940), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), + [2945] = { + [sym__expr1] = STATE(2684), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [aux_sym__expr1_repeat1] = STATE(1114), + [aux_sym__application_repeat1] = STATE(1115), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(1372), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_forall] = ACTIONS(1380), + [anon_sym_let] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [2450] = { - [sym_expr] = STATE(1635), - [sym__expr1] = STATE(2166), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2167), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2168), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(2169), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2676), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [2946] = { + [sym_expr] = STATE(2693), + [sym__expr1] = STATE(2941), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(2942), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(2943), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1114), + [aux_sym__application_repeat1] = STATE(2944), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3465), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_forall] = ACTIONS(1380), + [anon_sym_let] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), }, - [2451] = { - [sym__expr1] = STATE(930), + [2947] = { + [sym__expr1] = STATE(1939), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_lhs] = STATE(953), + [sym__declaration] = STATE(954), + [sym_function_clause] = STATE(955), + [aux_sym_source_file_repeat1] = STATE(2947), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(1428), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1431), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(1434), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), + }, + [2948] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [2949] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [2950] = { + [sym__application] = STATE(3843), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [2452] = { - [sym__expr1] = STATE(931), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [2951] = { + [sym__application] = STATE(3844), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2453] = { - [sym_with_expressions] = STATE(932), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_rewrite] = ACTIONS(646), - [anon_sym_with] = ACTIONS(2946), + [2952] = { + [sym_binding_name] = STATE(3845), + [sym__application] = STATE(3846), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2454] = { - [sym_expr] = STATE(933), - [sym__expr1] = STATE(2166), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2167), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2168), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(2169), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2676), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [2953] = { + [ts_builtin_sym_end] = ACTIONS(882), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), }, - [2455] = { - [sym__expr1] = STATE(1484), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1485), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(2455), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(2972), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2975), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(2978), - [anon_sym_let] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_rewrite] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), + [2954] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(4424), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4426), }, - [2456] = { - [sym_atomic_expr] = STATE(2177), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(2950), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [2955] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(4428), + [sym_comment] = ACTIONS(86), }, - [2457] = { - [sym_lambda_bindings] = STATE(3431), - [sym_untyped_bindings] = STATE(3432), - [sym_typed_bindings] = STATE(3432), - [anon_sym_DOT] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2698), + [2956] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4424), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_COLON] = ACTIONS(4430), }, - [2458] = { - [sym_forall_bindings] = STATE(3433), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [2957] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(3851), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [2958] = { [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [anon_sym_RPAREN] = ACTIONS(4424), }, - [2459] = { - [sym__expr1] = STATE(3434), + [2959] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4432), + }, + [2960] = { + [sym_expr] = STATE(3849), + [sym__expr1] = STATE(1883), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(1884), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(1887), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1130), + [aux_sym__application_repeat1] = STATE(1888), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2320), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2322), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_forall] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), + }, + [2961] = { + [sym__application] = STATE(3853), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(3479), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [2962] = { + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + }, + [2963] = { + [sym__expr1] = STATE(200), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3435), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(3436), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_lhs] = STATE(974), + [sym__declaration] = STATE(975), + [sym_function_clause] = STATE(976), + [aux_sym_source_file_repeat1] = STATE(2963), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(1428), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1431), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(1434), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + }, + [2964] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [2965] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [2966] = { + [sym__application] = STATE(3854), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [2460] = { - [sym__application] = STATE(2194), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2461), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(2950), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [2967] = { + [sym__application] = STATE(3855), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2461] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(2950), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), + [2968] = { + [sym_binding_name] = STATE(3856), + [sym__application] = STATE(3857), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2462] = { - [sym_atomic_expr] = STATE(2196), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(2958), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [2969] = { + [ts_builtin_sym_end] = ACTIONS(882), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_RPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), }, - [2463] = { - [sym_lambda_bindings] = STATE(3437), - [sym_untyped_bindings] = STATE(3438), - [sym_typed_bindings] = STATE(3438), - [anon_sym_DOT] = ACTIONS(2708), - [anon_sym_DOT_DOT] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2714), + [2970] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(4434), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_COLON] = ACTIONS(4436), }, - [2464] = { - [sym_forall_bindings] = STATE(3439), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [2971] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(4438), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), }, - [2465] = { - [sym__expr1] = STATE(770), + [2972] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4434), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4440), + }, + [2973] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(3862), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [2974] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4434), + }, + [2975] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4442), + }, + [2976] = { + [sym_expr] = STATE(3860), + [sym__expr1] = STATE(1144), + [sym__application] = STATE(1145), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(1147), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_tele_arrow] = STATE(1150), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1151), + [aux_sym__application_repeat1] = STATE(1152), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1408), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_forall] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), + }, + [2977] = { + [sym__application] = STATE(3864), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(3501), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [2978] = { + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + }, + [2979] = { + [sym__expr1] = STATE(200), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3440), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(3441), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [sym_lhs] = STATE(1980), + [sym__declaration] = STATE(1001), + [sym_function_clause] = STATE(1002), + [aux_sym_source_file_repeat1] = STATE(2979), + [aux_sym__expr1_repeat1] = STATE(205), + [aux_sym__application_repeat1] = STATE(206), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(1428), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1431), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(1434), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_module] = ACTIONS(644), }, - [2466] = { - [sym__application] = STATE(2212), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2467), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(2958), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [2980] = { + [ts_builtin_sym_end] = ACTIONS(3017), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_RPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), }, - [2467] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(2958), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), + [2981] = { + [ts_builtin_sym_end] = ACTIONS(186), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), - }, - [2468] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2966), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_RPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [2469] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2966), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(3552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3554), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3556), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [2982] = { + [ts_builtin_sym_end] = ACTIONS(228), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [2470] = { - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_COLON] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), + [2983] = { + [anon_sym_RBRACE] = ACTIONS(4444), + [sym_comment] = ACTIONS(86), }, - [2471] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4017), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [2984] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4446), + [sym_comment] = ACTIONS(86), }, - [2472] = { + [2985] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4019), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_RPAREN] = ACTIONS(4446), }, - [2473] = { - [sym_expr] = STATE(3443), - [sym__expr1] = STATE(2471), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2472), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2473), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2466), - [aux_sym__application_repeat1] = STATE(2474), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2966), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [2986] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4446), }, - [2474] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2966), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [2987] = { + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_RPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), }, - [2475] = { - [sym_semi] = STATE(3444), - [aux_sym__declarations1_repeat1] = STATE(3445), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), + [2988] = { + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_RPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), }, - [2476] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1380), + [2989] = { + [sym_expr] = STATE(3821), + [sym__expr1] = STATE(2006), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2007), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2008), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1607), + [aux_sym__application_repeat1] = STATE(2009), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2458), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2460), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1985), + [anon_sym_forall] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [2477] = { + [2990] = { + [anon_sym_RBRACE] = ACTIONS(4448), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4021), }, - [2478] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1386), + [2991] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4448), + [sym_comment] = ACTIONS(86), }, - [2479] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), + [2992] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4448), }, - [2480] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), + [2993] = { + [anon_sym_DOT] = ACTIONS(3407), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3409), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3409), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3409), + [anon_sym_EQ] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_COLON] = ACTIONS(3409), }, - [2481] = { - [sym_expr] = STATE(756), - [sym__expr1] = STATE(2491), + [2994] = { + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_rewrite] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), + }, + [2995] = { + [sym_expr] = STATE(3868), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2492), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(2493), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2494), - [aux_sym__application_repeat1] = STATE(2495), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), + [sym_name_at] = ACTIONS(34), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -91864,98 +108517,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2482] = { - [sym__application] = STATE(789), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(790), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [aux_sym__application_repeat1] = STATE(3448), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(988), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4023), - [anon_sym_BSLASH] = ACTIONS(996), - [anon_sym_forall] = ACTIONS(998), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), - }, - [2483] = { - [sym_semi] = STATE(3449), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3450), - [anon_sym_SEMI] = ACTIONS(1014), - [sym_comment] = ACTIONS(86), - }, - [2484] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(790), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(988), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4023), - [anon_sym_BSLASH] = ACTIONS(996), - [anon_sym_forall] = ACTIONS(998), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), + [2996] = { + [sym_expr] = STATE(3869), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2485] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(2491), + [2997] = { + [sym_expr] = STATE(3870), + [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2492), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(2493), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2494), - [aux_sym__application_repeat1] = STATE(2495), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), + [sym_name_at] = ACTIONS(120), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -91966,1521 +108591,2129 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2486] = { - [sym_atomic_expr] = STATE(151), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(188), - [anon_sym_LBRACE_LBRACE] = ACTIONS(190), + [2998] = { + [anon_sym_RBRACE] = ACTIONS(4450), + [sym_comment] = ACTIONS(86), + }, + [2999] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4450), + [sym_comment] = ACTIONS(86), + }, + [3000] = { + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_rewrite] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + }, + [3001] = { + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + [anon_sym_rewrite] = ACTIONS(2965), + [anon_sym_with] = ACTIONS(2965), + }, + [3002] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4450), + }, + [3003] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE_RBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_rewrite] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [3004] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE_RBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_rewrite] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [3005] = { + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + [anon_sym_rewrite] = ACTIONS(3017), + [anon_sym_with] = ACTIONS(3017), + }, + [3006] = { + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + [anon_sym_rewrite] = ACTIONS(2262), + [anon_sym_with] = ACTIONS(2262), + }, + [3007] = { + [sym_vclose] = STATE(3872), + [sym__layout_close_brace] = ACTIONS(3531), + [sym_comment] = ACTIONS(86), + }, + [3008] = { + [sym_vopen] = STATE(2050), + [sym_declarations] = STATE(2051), + [sym__declarations0] = STATE(3873), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [3009] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE_RBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [3010] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE_RBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [3011] = { + [sym__application] = STATE(3874), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(192), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [2487] = { - [sym_atomic_expr] = STATE(151), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(194), - [anon_sym_LBRACE_LBRACE] = ACTIONS(196), + [3012] = { + [sym__application] = STATE(3875), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(198), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2488] = { - [sym_lambda_bindings] = STATE(3452), - [sym_untyped_bindings] = STATE(3453), - [sym_typed_bindings] = STATE(3453), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [3013] = { + [sym_binding_name] = STATE(3876), + [sym__application] = STATE(3877), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [3014] = { + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [anon_sym_RBRACE_RBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + [anon_sym_with] = ACTIONS(882), + }, + [3015] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(4452), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_COLON] = ACTIONS(4454), }, - [2489] = { - [sym_forall_bindings] = STATE(3454), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [3016] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(4456), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), }, - [2490] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3455), - [sym__declaration] = STATE(202), - [sym_function_clause] = STATE(203), - [aux_sym_source_file_repeat1] = STATE(3456), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [3017] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4452), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4458), }, - [2491] = { - [anon_sym_SEMI] = ACTIONS(280), + [3018] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(3882), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [3019] = { [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(4027), + [anon_sym_RPAREN] = ACTIONS(4452), }, - [2492] = { + [3020] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4027), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(4460), }, - [2493] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(2491), - [sym__application] = STATE(39), + [3021] = { + [sym_expr] = STATE(3880), + [sym__expr1] = STATE(3031), + [sym__application] = STATE(1234), + [sym__expr2] = STATE(1235), + [sym__atomic_exprs1] = STATE(3032), + [sym_atomic_expr] = STATE(3033), + [sym__atomic_expr_curly] = STATE(3034), + [sym__atomic_expr_no_curly] = STATE(3034), + [sym_tele_arrow] = STATE(3035), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1238), + [aux_sym__application_repeat1] = STATE(3036), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3561), + [sym_set_n] = ACTIONS(3561), + [sym_name_at] = ACTIONS(3563), + [sym_qualified_name] = ACTIONS(3561), + [anon_sym__] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3565), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3567), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3569), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_forall] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_Prop] = ACTIONS(3561), + [anon_sym_Set] = ACTIONS(3561), + [anon_sym_quote] = ACTIONS(3561), + [anon_sym_quoteTerm] = ACTIONS(3561), + [anon_sym_unquote] = ACTIONS(3561), + [anon_sym_LPAREN] = ACTIONS(3571), + [anon_sym_LPAREN_PIPE] = ACTIONS(3573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), + }, + [3022] = { + [sym__application] = STATE(3884), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2492), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(2493), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(3549), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [3023] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE_RBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), + }, + [3024] = { + [sym_atomic_expr] = STATE(3888), + [sym__atomic_expr_curly] = STATE(3034), + [sym__atomic_expr_no_curly] = STATE(3034), + [sym_literal] = ACTIONS(3561), + [sym_set_n] = ACTIONS(3561), + [sym_name_at] = ACTIONS(3563), + [sym_qualified_name] = ACTIONS(3561), + [anon_sym__] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3563), + [anon_sym_LBRACE] = ACTIONS(4462), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4464), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_Prop] = ACTIONS(3561), + [anon_sym_Set] = ACTIONS(3561), + [anon_sym_quote] = ACTIONS(3561), + [anon_sym_quoteTerm] = ACTIONS(3561), + [anon_sym_unquote] = ACTIONS(3561), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_LPAREN_PIPE] = ACTIONS(3573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), + }, + [3025] = { + [sym_atomic_expr] = STATE(3888), + [sym__atomic_expr_curly] = STATE(3034), + [sym__atomic_expr_no_curly] = STATE(3034), + [sym_literal] = ACTIONS(3561), + [sym_set_n] = ACTIONS(3561), + [sym_name_at] = ACTIONS(3563), + [sym_qualified_name] = ACTIONS(3561), + [anon_sym__] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3563), + [anon_sym_LBRACE] = ACTIONS(4468), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4470), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_Prop] = ACTIONS(3561), + [anon_sym_Set] = ACTIONS(3561), + [anon_sym_quote] = ACTIONS(3561), + [anon_sym_quoteTerm] = ACTIONS(3561), + [anon_sym_unquote] = ACTIONS(3561), + [anon_sym_LPAREN] = ACTIONS(4472), + [anon_sym_LPAREN_PIPE] = ACTIONS(3573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), + }, + [3026] = { + [sym_expr] = STATE(3893), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2494), - [aux_sym__application_repeat1] = STATE(2495), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2998), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2494] = { - [sym__application] = STATE(225), + [3027] = { + [sym_expr] = STATE(3894), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4476), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [3028] = { + [sym_expr] = STATE(3895), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(226), - [sym__atomic_expr_curly] = STATE(227), - [sym__atomic_expr_no_curly] = STATE(227), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(3459), - [sym_literal] = ACTIONS(292), - [sym_set_n] = ACTIONS(292), - [sym_name_at] = ACTIONS(4029), - [sym_qualified_name] = ACTIONS(292), - [anon_sym__] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_LBRACE] = ACTIONS(296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(298), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_Prop] = ACTIONS(292), - [anon_sym_Set] = ACTIONS(292), - [anon_sym_quote] = ACTIONS(292), - [anon_sym_quoteTerm] = ACTIONS(292), - [anon_sym_unquote] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LPAREN_PIPE] = ACTIONS(302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(4476), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2495] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(188), - [anon_sym_LBRACE_LBRACE] = ACTIONS(190), + [3029] = { + [sym_expr] = STATE(3896), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(192), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [2496] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [3030] = { + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_with] = ACTIONS(1038), }, - [2497] = { - [sym_lambda_bindings] = STATE(894), - [sym_untyped_bindings] = STATE(2497), - [sym_typed_bindings] = STATE(2497), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_DOT_DOT] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(1153), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_rewrite] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), + [3031] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4478), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), }, - [2498] = { - [sym_expr] = STATE(911), - [sym__expr1] = STATE(3463), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(3464), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(3465), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(3466), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(4033), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [3032] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(162), }, - [2499] = { - [sym_rewrite_equations] = STATE(3469), - [sym_with_expressions] = STATE(406), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [3033] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE_RBRACE] = ACTIONS(164), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(4037), - [anon_sym_with] = ACTIONS(4039), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [2500] = { - [sym_where_clause] = STATE(410), - [sym_rhs] = STATE(2601), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [3034] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE_RBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4041), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4041), - [anon_sym_module] = ACTIONS(3111), - [anon_sym_rewrite] = ACTIONS(170), - [anon_sym_with] = ACTIONS(170), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [2501] = { - [sym__expr1] = STATE(2499), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2500), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(3471), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [3035] = { + [sym_expr] = STATE(3898), + [sym__expr1] = STATE(3031), + [sym__application] = STATE(1234), + [sym__expr2] = STATE(1235), + [sym__atomic_exprs1] = STATE(3032), + [sym_atomic_expr] = STATE(3033), + [sym__atomic_expr_curly] = STATE(3034), + [sym__atomic_expr_no_curly] = STATE(3034), + [sym_tele_arrow] = STATE(3035), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1238), + [aux_sym__application_repeat1] = STATE(3036), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3561), + [sym_set_n] = ACTIONS(3561), + [sym_name_at] = ACTIONS(3563), + [sym_qualified_name] = ACTIONS(3561), + [anon_sym__] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3565), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3567), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3569), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_forall] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_Prop] = ACTIONS(3561), + [anon_sym_Set] = ACTIONS(3561), + [anon_sym_quote] = ACTIONS(3561), + [anon_sym_quoteTerm] = ACTIONS(3561), + [anon_sym_unquote] = ACTIONS(3561), + [anon_sym_LPAREN] = ACTIONS(3571), + [anon_sym_LPAREN_PIPE] = ACTIONS(3573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), }, - [2502] = { - [sym__expr1] = STATE(1233), + [3036] = { + [sym__expr2] = STATE(2075), + [sym_atomic_expr] = STATE(3033), + [sym__atomic_expr_curly] = STATE(3034), + [sym__atomic_expr_no_curly] = STATE(3034), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(3561), + [sym_set_n] = ACTIONS(3561), + [sym_name_at] = ACTIONS(3563), + [sym_qualified_name] = ACTIONS(3561), + [anon_sym__] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3563), + [anon_sym_LBRACE] = ACTIONS(4462), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4464), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_forall] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_Prop] = ACTIONS(3561), + [anon_sym_Set] = ACTIONS(3561), + [anon_sym_quote] = ACTIONS(3561), + [anon_sym_quoteTerm] = ACTIONS(3561), + [anon_sym_unquote] = ACTIONS(3561), + [anon_sym_LPAREN] = ACTIONS(4466), + [anon_sym_LPAREN_PIPE] = ACTIONS(3573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), + }, + [3037] = { + [sym__expr1] = STATE(3899), [sym__application] = STATE(1234), [sym__expr2] = STATE(1235), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(1236), [sym__atomic_expr_curly] = STATE(1237), [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(3476), - [aux_sym__application_repeat1] = STATE(3477), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(4043), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [aux_sym__expr1_repeat1] = STATE(1238), + [aux_sym__application_repeat1] = STATE(1239), + [sym_literal] = ACTIONS(1514), + [sym_set_n] = ACTIONS(1514), + [sym_name_at] = ACTIONS(1516), + [sym_qualified_name] = ACTIONS(1514), + [anon_sym__] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1520), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_forall] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(1514), + [anon_sym_Prop] = ACTIONS(1514), + [anon_sym_Set] = ACTIONS(1514), + [anon_sym_quote] = ACTIONS(1514), + [anon_sym_quoteTerm] = ACTIONS(1514), + [anon_sym_unquote] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LPAREN_PIPE] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1514), }, - [2503] = { - [sym__expr1] = STATE(1249), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(3482), - [aux_sym__application_repeat1] = STATE(3483), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(4051), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(4051), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [3038] = { + [sym_with_expressions] = STATE(3900), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE_RBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), }, - [2504] = { - [sym_with_expressions] = STATE(1256), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(3008), + [3039] = { + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE_RBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), }, - [2505] = { - [sym_expr] = STATE(3489), - [sym__expr1] = STATE(3490), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3491), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3492), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3493), - [aux_sym__application_repeat1] = STATE(3494), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4059), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4061), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [3040] = { + [sym_expr] = STATE(3901), + [sym__expr1] = STATE(3031), + [sym__application] = STATE(1234), + [sym__expr2] = STATE(1235), + [sym__atomic_exprs1] = STATE(3032), + [sym_atomic_expr] = STATE(3033), + [sym__atomic_expr_curly] = STATE(3034), + [sym__atomic_expr_no_curly] = STATE(3034), + [sym_tele_arrow] = STATE(3035), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1238), + [aux_sym__application_repeat1] = STATE(3036), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3561), + [sym_set_n] = ACTIONS(3561), + [sym_name_at] = ACTIONS(3563), + [sym_qualified_name] = ACTIONS(3561), + [anon_sym__] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3565), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3567), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3569), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_forall] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_Prop] = ACTIONS(3561), + [anon_sym_Set] = ACTIONS(3561), + [anon_sym_quote] = ACTIONS(3561), + [anon_sym_quoteTerm] = ACTIONS(3561), + [anon_sym_unquote] = ACTIONS(3561), + [anon_sym_LPAREN] = ACTIONS(3571), + [anon_sym_LPAREN_PIPE] = ACTIONS(3573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), }, - [2506] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1510), - [sym__declaration] = STATE(3495), - [sym_function_clause] = STATE(1512), - [sym__declarations1] = STATE(3496), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [3041] = { + [sym_vopen] = STATE(3902), + [sym_declarations] = STATE(3903), + [sym__declarations0] = STATE(3904), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [2507] = { - [sym_anonymous_name] = STATE(3497), - [sym_name] = ACTIONS(4069), - [anon_sym__] = ACTIONS(676), + [3042] = { + [sym_anonymous_name] = STATE(3905), + [sym_name] = ACTIONS(4482), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), }, - [2508] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), + [3043] = { + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE_RBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), }, - [2509] = { - [sym_where_clause] = STATE(3498), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(3014), + [3044] = { + [sym_where_clause] = STATE(3906), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE_RBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), }, - [2510] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [3045] = { + [sym__expr1] = STATE(2067), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1510), - [sym__declaration] = STATE(1511), - [sym_function_clause] = STATE(1512), - [aux_sym_source_file_repeat1] = STATE(2510), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4071), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4074), - [anon_sym_forall] = ACTIONS(4077), - [anon_sym_let] = ACTIONS(4080), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - }, - [2511] = { - [anon_sym_SEMI] = ACTIONS(4083), - [anon_sym_RBRACE] = ACTIONS(4083), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(4083), - [anon_sym_RPAREN] = ACTIONS(4083), - [anon_sym_PIPE_RPAREN] = ACTIONS(4083), - [anon_sym_COLON] = ACTIONS(4083), - }, - [2512] = { - [ts_builtin_sym_end] = ACTIONS(4085), - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_COLON] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), - [anon_sym_rewrite] = ACTIONS(4085), - [anon_sym_with] = ACTIONS(4085), - }, - [2513] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(790), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(3499), - [sym_lambda_where_clauses] = STATE(626), - [aux_sym__application_repeat1] = STATE(1526), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(1895), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(1897), - [anon_sym_forall] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), - [sym_catchall_pragma] = ACTIONS(1903), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(2068), + [sym__declaration] = STATE(2069), + [sym_function_clause] = STATE(2070), + [aux_sym_source_file_repeat1] = STATE(3045), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(1572), + [sym_set_n] = ACTIONS(1572), + [sym_name_at] = ACTIONS(1575), + [sym_qualified_name] = ACTIONS(1572), + [anon_sym__] = ACTIONS(1572), + [anon_sym_DOT] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE_RBRACE] = ACTIONS(644), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(1587), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_Prop] = ACTIONS(1572), + [anon_sym_Set] = ACTIONS(1572), + [anon_sym_quote] = ACTIONS(1572), + [anon_sym_quoteTerm] = ACTIONS(1572), + [anon_sym_unquote] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LPAREN_PIPE] = ACTIONS(1596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1572), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), }, - [2514] = { - [anon_sym_SEMI] = ACTIONS(819), - [anon_sym_RBRACE] = ACTIONS(819), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4087), + [3046] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE_RBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), }, - [2515] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(2515), - [sym_typed_bindings] = STATE(2515), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), + [3047] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE_RBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), }, - [2516] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(757), - [sym__application] = STATE(39), + [3048] = { + [sym__application] = STATE(3907), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(758), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(759), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(760), - [aux_sym__application_repeat1] = STATE(761), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [2517] = { - [sym_where_clause] = STATE(2508), - [sym_rhs] = STATE(3504), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [3049] = { + [sym__application] = STATE(3908), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4089), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4091), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4089), - [anon_sym_module] = ACTIONS(4093), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2518] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2517), - [sym__declaration] = STATE(1511), - [sym_function_clause] = STATE(1512), - [aux_sym_source_file_repeat1] = STATE(3505), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [3050] = { + [sym_binding_name] = STATE(3909), + [sym__application] = STATE(3910), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(4095), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [2519] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(790), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(1895), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1889), - [anon_sym_BSLASH] = ACTIONS(1897), - [anon_sym_forall] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2520] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), + [3051] = { + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [anon_sym_RBRACE_RBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), }, - [2521] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), + [3052] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(4484), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4486), }, - [2522] = { - [anon_sym_RBRACE] = ACTIONS(4097), + [3053] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(4488), [sym_comment] = ACTIONS(86), }, - [2523] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4099), + [3054] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4484), [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4490), }, - [2524] = { - [anon_sym_SEMI] = ACTIONS(280), - [anon_sym_RBRACE_RBRACE] = ACTIONS(280), + [3055] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(3915), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [3056] = { [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(4101), - [anon_sym_COLON] = ACTIONS(280), + [anon_sym_RPAREN] = ACTIONS(4484), }, - [2525] = { + [3057] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4101), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(4492), }, - [2526] = { - [sym_expr] = STATE(278), - [sym__expr1] = STATE(2524), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(2525), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(2526), + [3058] = { + [sym_expr] = STATE(3913), + [sym__expr1] = STATE(1913), + [sym__application] = STATE(1250), + [sym__expr2] = STATE(1251), + [sym__atomic_exprs1] = STATE(1914), + [sym_atomic_expr] = STATE(1915), + [sym__atomic_expr_curly] = STATE(1916), + [sym__atomic_expr_no_curly] = STATE(1916), + [sym_tele_arrow] = STATE(1917), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2114), - [aux_sym__application_repeat1] = STATE(2115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2624), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [aux_sym__expr1_repeat1] = STATE(1254), + [aux_sym__application_repeat1] = STATE(1918), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2350), + [sym_set_n] = ACTIONS(2350), + [sym_name_at] = ACTIONS(2352), + [sym_qualified_name] = ACTIONS(2350), + [anon_sym__] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2354), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2358), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_forall] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(2350), + [anon_sym_Prop] = ACTIONS(2350), + [anon_sym_Set] = ACTIONS(2350), + [anon_sym_quote] = ACTIONS(2350), + [anon_sym_quoteTerm] = ACTIONS(2350), + [anon_sym_unquote] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2350), }, - [2527] = { - [anon_sym_SEMI] = ACTIONS(819), - [anon_sym_RBRACE_RBRACE] = ACTIONS(819), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4103), - [anon_sym_COLON] = ACTIONS(819), + [3059] = { + [sym__application] = STATE(3917), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(3585), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [2528] = { - [sym_lambda_bindings] = STATE(679), - [sym_untyped_bindings] = STATE(2528), - [sym_typed_bindings] = STATE(2528), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_LBRACE_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE_RBRACE] = ACTIONS(825), + [3060] = { + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + }, + [3061] = { + [sym_vopen] = STATE(3918), + [sym_declarations] = STATE(3919), + [sym__declarations0] = STATE(3920), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(342), - [anon_sym_COLON] = ACTIONS(825), }, - [2529] = { - [sym_expr] = STATE(699), - [sym__expr1] = STATE(2524), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(2525), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(2526), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2114), - [aux_sym__application_repeat1] = STATE(2115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2624), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [3062] = { + [sym_anonymous_name] = STATE(3921), + [sym_name] = ACTIONS(4494), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [2530] = { - [sym_where_clause] = STATE(1553), - [sym_rhs] = STATE(1554), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE_RBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4105), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(1955), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4105), - [anon_sym_module] = ACTIONS(1957), + [3063] = { + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE_RBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), }, - [2531] = { - [sym__expr1] = STATE(1335), + [3064] = { + [sym_where_clause] = STATE(3922), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE_RBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + }, + [3065] = { + [sym__expr1] = STATE(263), [sym__application] = STATE(264), [sym__expr2] = STATE(265), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(266), [sym__atomic_expr_curly] = STATE(267), [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2530), - [sym__declaration] = STATE(808), - [sym_function_clause] = STATE(809), - [aux_sym_source_file_repeat1] = STATE(3511), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), + [sym_lhs] = STATE(2088), + [sym__declaration] = STATE(2089), + [sym_function_clause] = STATE(2090), + [aux_sym_source_file_repeat1] = STATE(3065), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(1572), + [sym_set_n] = ACTIONS(1572), + [sym_name_at] = ACTIONS(1575), + [sym_qualified_name] = ACTIONS(1572), + [anon_sym__] = ACTIONS(1572), + [anon_sym_DOT] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE_RBRACE] = ACTIONS(644), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(1587), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_Prop] = ACTIONS(1572), + [anon_sym_Set] = ACTIONS(1572), + [anon_sym_quote] = ACTIONS(1572), + [anon_sym_quoteTerm] = ACTIONS(1572), + [anon_sym_unquote] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LPAREN_PIPE] = ACTIONS(1596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1572), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + }, + [3066] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE_RBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [3067] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE_RBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [3068] = { + [sym__application] = STATE(3923), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(4107), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(460), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [2532] = { + [3069] = { + [sym__application] = STATE(3924), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [3070] = { + [sym_binding_name] = STATE(3925), + [sym__application] = STATE(3926), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [3071] = { + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [anon_sym_RBRACE_RBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + }, + [3072] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(4496), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(4498), }, - [2533] = { + [3073] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(4500), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4099), }, - [2534] = { - [sym_expr] = STATE(2304), - [sym__expr1] = STATE(2524), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(2525), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(2526), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2114), - [aux_sym__application_repeat1] = STATE(2115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2624), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [3074] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4496), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4502), }, - [2535] = { - [sym__expr2] = STATE(289), - [sym_atomic_expr] = STATE(1542), - [sym__atomic_expr_curly] = STATE(1543), - [sym__atomic_expr_no_curly] = STATE(1543), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1929), - [sym_set_n] = ACTIONS(1929), - [sym_name_at] = ACTIONS(1931), - [sym_qualified_name] = ACTIONS(1929), - [anon_sym__] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1935), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4109), - [anon_sym_BSLASH] = ACTIONS(1939), - [anon_sym_forall] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1943), - [anon_sym_QMARK] = ACTIONS(1929), - [anon_sym_Prop] = ACTIONS(1929), - [anon_sym_Set] = ACTIONS(1929), - [anon_sym_quote] = ACTIONS(1929), - [anon_sym_quoteTerm] = ACTIONS(1929), - [anon_sym_unquote] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_LPAREN_PIPE] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1929), + [3075] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(3931), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), }, - [2536] = { - [sym__application] = STATE(694), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(1542), - [sym__atomic_expr_curly] = STATE(1543), - [sym__atomic_expr_no_curly] = STATE(1543), - [sym_non_absurd_lambda_clause] = STATE(697), - [sym_absurd_lambda_clause] = STATE(697), - [sym_lambda_clause] = STATE(2306), - [aux_sym__application_repeat1] = STATE(1545), - [sym_literal] = ACTIONS(1929), - [sym_set_n] = ACTIONS(1929), - [sym_name_at] = ACTIONS(1931), - [sym_qualified_name] = ACTIONS(1929), - [anon_sym__] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1935), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1937), - [anon_sym_BSLASH] = ACTIONS(1939), - [anon_sym_forall] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1943), - [anon_sym_QMARK] = ACTIONS(1929), - [anon_sym_Prop] = ACTIONS(1929), - [anon_sym_Set] = ACTIONS(1929), - [anon_sym_quote] = ACTIONS(1929), - [anon_sym_quoteTerm] = ACTIONS(1929), - [anon_sym_unquote] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_LPAREN_PIPE] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1929), - [sym_catchall_pragma] = ACTIONS(1949), + [3076] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4496), }, - [2537] = { - [sym_semi] = STATE(2536), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3513), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2674), + [3077] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2674), + [anon_sym_COLON] = ACTIONS(4504), }, - [2538] = { - [sym_expr] = STATE(739), - [sym__expr1] = STATE(1547), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(1548), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(1549), + [3078] = { + [sym_expr] = STATE(3929), + [sym__expr1] = STATE(1268), + [sym__application] = STATE(1269), + [sym__expr2] = STATE(1270), + [sym__atomic_exprs1] = STATE(1271), + [sym_atomic_expr] = STATE(1272), + [sym__atomic_expr_curly] = STATE(1273), + [sym__atomic_expr_no_curly] = STATE(1273), + [sym_tele_arrow] = STATE(1274), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1176), - [aux_sym__application_repeat1] = STATE(188), + [aux_sym__expr1_repeat1] = STATE(1275), + [aux_sym__application_repeat1] = STATE(1276), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [sym_literal] = ACTIONS(1550), + [sym_set_n] = ACTIONS(1550), + [sym_name_at] = ACTIONS(1552), + [sym_qualified_name] = ACTIONS(1550), + [anon_sym__] = ACTIONS(1550), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1558), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_forall] = ACTIONS(1562), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1550), + [anon_sym_Prop] = ACTIONS(1550), + [anon_sym_Set] = ACTIONS(1550), + [anon_sym_quote] = ACTIONS(1550), + [anon_sym_quoteTerm] = ACTIONS(1550), + [anon_sym_unquote] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_LPAREN_PIPE] = ACTIONS(1568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1550), }, - [2539] = { - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_COLON] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), + [3079] = { + [sym__application] = STATE(3933), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(3607), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [2540] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4111), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [3080] = { + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), }, - [2541] = { + [3081] = { + [sym_vopen] = STATE(3934), + [sym_declarations] = STATE(3935), + [sym__declarations0] = STATE(3936), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4113), - [anon_sym_PIPE] = ACTIONS(162), }, - [2542] = { - [sym_expr] = STATE(3515), - [sym__expr1] = STATE(2540), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(2541), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(2542), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1431), - [aux_sym__application_repeat1] = STATE(2150), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(2644), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2646), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1770), - [anon_sym_forall] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [3082] = { + [sym_anonymous_name] = STATE(3937), + [sym_name] = ACTIONS(4506), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), }, - [2543] = { - [sym_semi] = STATE(3516), - [aux_sym__declarations1_repeat1] = STATE(3517), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), + [3083] = { + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE_RBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), }, - [2544] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1380), + [3084] = { + [sym_where_clause] = STATE(3938), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE_RBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), }, - [2545] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4115), + [3085] = { + [sym__expr1] = STATE(263), + [sym__application] = STATE(264), + [sym__expr2] = STATE(265), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(266), + [sym__atomic_expr_curly] = STATE(267), + [sym__atomic_expr_no_curly] = STATE(267), + [sym_lhs] = STATE(2114), + [sym__declaration] = STATE(2115), + [sym_function_clause] = STATE(2116), + [aux_sym_source_file_repeat1] = STATE(3085), + [aux_sym__expr1_repeat1] = STATE(272), + [aux_sym__application_repeat1] = STATE(273), + [sym_literal] = ACTIONS(1572), + [sym_set_n] = ACTIONS(1572), + [sym_name_at] = ACTIONS(1575), + [sym_qualified_name] = ACTIONS(1572), + [anon_sym__] = ACTIONS(1572), + [anon_sym_DOT] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE_RBRACE] = ACTIONS(644), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(1584), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(1587), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_Prop] = ACTIONS(1572), + [anon_sym_Set] = ACTIONS(1572), + [anon_sym_quote] = ACTIONS(1572), + [anon_sym_quoteTerm] = ACTIONS(1572), + [anon_sym_unquote] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LPAREN_PIPE] = ACTIONS(1596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1572), + [anon_sym_module] = ACTIONS(644), }, - [2546] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1386), + [3086] = { + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), }, - [2547] = { + [3087] = { [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), [sym_name_at] = ACTIONS(186), @@ -93489,10 +110722,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE_RBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), [anon_sym_Prop] = ACTIONS(186), [anon_sym_Set] = ACTIONS(186), @@ -93502,8 +110740,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [2548] = { + [3088] = { [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), [sym_name_at] = ACTIONS(228), @@ -93512,10 +110751,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE_RBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), [anon_sym_Prop] = ACTIONS(228), [anon_sym_Set] = ACTIONS(228), @@ -93525,236 +110769,417 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [2549] = { - [anon_sym_RBRACE] = ACTIONS(4117), + [3089] = { + [anon_sym_RBRACE] = ACTIONS(4508), [sym_comment] = ACTIONS(86), }, - [2550] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4119), + [3090] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4510), [sym_comment] = ACTIONS(86), }, - [2551] = { + [3091] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4119), + [anon_sym_RPAREN] = ACTIONS(4510), }, - [2552] = { + [3092] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4119), + [anon_sym_PIPE_RPAREN] = ACTIONS(4510), }, - [2553] = { - [sym_expr] = STATE(1635), - [sym__expr1] = STATE(1644), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1645), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1646), + [3093] = { + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + }, + [3094] = { + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + }, + [3095] = { + [ts_builtin_sym_end] = ACTIONS(4512), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + [anon_sym_rewrite] = ACTIONS(4512), + [anon_sym_with] = ACTIONS(4512), + }, + [3096] = { + [anon_sym_RBRACE] = ACTIONS(4514), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4516), + }, + [3097] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4514), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4518), + }, + [3098] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4514), + }, + [3099] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4520), + }, + [3100] = { + [sym__layout_semicolon] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_DOT] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1925), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1925), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1925), + }, + [3101] = { + [sym_expr] = STATE(3945), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(1647), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2075), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2077), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2554] = { - [ts_builtin_sym_end] = ACTIONS(4121), - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), - [anon_sym_rewrite] = ACTIONS(4121), - [anon_sym_with] = ACTIONS(4121), + [3102] = { + [sym__layout_semicolon] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2366), }, - [2555] = { - [sym_atomic_expr] = STATE(566), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_LBRACE_LBRACE] = ACTIONS(753), + [3103] = { + [sym_expr] = STATE(3946), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2556] = { - [sym_atomic_expr] = STATE(566), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_LBRACE_LBRACE] = ACTIONS(759), + [3104] = { + [sym_vclose] = STATE(3948), + [sym__layout_close_brace] = ACTIONS(4522), + [sym_comment] = ACTIONS(86), + }, + [3105] = { + [sym_expr] = STATE(3949), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(761), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2557] = { - [sym_lambda_bindings] = STATE(3521), - [sym_untyped_bindings] = STATE(3522), - [sym_typed_bindings] = STATE(3522), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [3106] = { + [anon_sym_RBRACE] = ACTIONS(3625), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_COLON] = ACTIONS(3627), }, - [2558] = { - [sym_forall_bindings] = STATE(3523), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [3107] = { + [sym_expr] = STATE(3950), + [sym__expr1] = STATE(2155), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(2156), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(2157), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(714), + [aux_sym__application_repeat1] = STATE(715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(888), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(896), + [anon_sym_forall] = ACTIONS(898), + [anon_sym_let] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [3108] = { + [sym__layout_semicolon] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_RBRACE] = ACTIONS(781), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [anon_sym_EQ] = ACTIONS(781), }, - [2559] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3524), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(3525), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [3109] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [anon_sym_SEMI] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), }, - [2560] = { - [anon_sym_SEMI] = ACTIONS(280), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(4123), - [anon_sym_COLON] = ACTIONS(280), + [3110] = { + [sym_atomic_expr] = STATE(3954), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3639), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4526), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(4528), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), }, - [2561] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4123), - [anon_sym_PIPE] = ACTIONS(162), + [3111] = { + [sym_atomic_expr] = STATE(3954), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3639), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(4530), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4532), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), }, - [2562] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(2560), - [sym__application] = STATE(39), + [3112] = { + [sym_expr] = STATE(3959), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2561), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2562), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2563), - [aux_sym__application_repeat1] = STATE(2564), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), + [sym_name_at] = ACTIONS(208), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(4536), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -93765,114 +111190,132 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2563] = { - [sym__application] = STATE(225), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2083), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(3528), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(4125), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(4125), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), - }, - [2564] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_LBRACE_LBRACE] = ACTIONS(753), + [3113] = { + [sym_expr] = STATE(3960), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4538), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [2565] = { - [anon_sym_SEMI] = ACTIONS(819), + [3114] = { + [sym_lambda_bindings] = STATE(3966), + [sym_untyped_bindings] = STATE(3967), + [sym_typed_bindings] = STATE(3967), + [anon_sym_DOT] = ACTIONS(4540), + [anon_sym_DOT_DOT] = ACTIONS(4542), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4546), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4127), - [anon_sym_COLON] = ACTIONS(819), + [anon_sym_where] = ACTIONS(4548), + [anon_sym_LPAREN] = ACTIONS(4550), }, - [2566] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(2566), - [sym_typed_bindings] = STATE(2566), - [anon_sym_SEMI] = ACTIONS(825), + [3115] = { + [sym_forall_bindings] = STATE(3968), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), [anon_sym_DOT] = ACTIONS(92), [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COLON] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(100), }, - [2567] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(2560), - [sym__application] = STATE(39), + [3116] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3969), + [sym__declaration] = STATE(3970), + [sym_function_clause] = STATE(3971), + [aux_sym_source_file_repeat1] = STATE(3972), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(920), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [3117] = { + [sym_expr] = STATE(3973), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2561), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2562), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2563), - [aux_sym__application_repeat1] = STATE(2564), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), + [sym_name_at] = ACTIONS(268), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -93880,1642 +111323,1300 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(4538), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2568] = { - [sym_where_clause] = STATE(1493), - [sym_rhs] = STATE(1614), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4129), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(2035), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4129), - [anon_sym_module] = ACTIONS(2037), - }, - [2569] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2568), - [sym__declaration] = STATE(772), - [sym_function_clause] = STATE(773), - [aux_sym_source_file_repeat1] = STATE(3531), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(4131), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(460), - }, - [2570] = { - [sym_expr] = STATE(1500), - [sym__expr1] = STATE(2560), + [3118] = { + [sym_expr] = STATE(3974), + [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2561), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2562), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2563), - [aux_sym__application_repeat1] = STATE(2564), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3075), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [2571] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(2003), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [3119] = { + [sym__layout_semicolon] = ACTIONS(3785), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + }, + [3120] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4552), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [3121] = { + [sym__layout_semicolon] = ACTIONS(284), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4133), - [anon_sym_BSLASH] = ACTIONS(2007), - [anon_sym_forall] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), }, - [2572] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(2162), - [aux_sym__application_repeat1] = STATE(1589), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(2003), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [3122] = { + [sym__layout_semicolon] = ACTIONS(286), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [anon_sym_SEMI] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2005), - [anon_sym_BSLASH] = ACTIONS(2007), - [anon_sym_forall] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(2013), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), }, - [2573] = { - [sym_semi] = STATE(2572), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3533), - [anon_sym_SEMI] = ACTIONS(1014), + [3123] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2674), + [anon_sym_DASH_GT] = ACTIONS(4554), + [anon_sym_PIPE] = ACTIONS(162), }, - [2574] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(1139), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(3537), - [sym_lambda_where_clauses] = STATE(626), - [aux_sym__application_repeat1] = STATE(3538), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(4135), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4137), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), - [sym_catchall_pragma] = ACTIONS(4139), + [3124] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_module] = ACTIONS(164), }, - [2575] = { + [3125] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + }, + [3126] = { + [sym_expr] = STATE(3976), + [sym__expr1] = STATE(3120), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(3123), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(3126), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3127), + [aux_sym__application_repeat1] = STATE(3128), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3639), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3647), + [anon_sym_forall] = ACTIONS(3649), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + }, + [3127] = { + [sym__application] = STATE(3983), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(3984), + [sym__atomic_expr_curly] = STATE(3985), + [sym__atomic_expr_no_curly] = STATE(3985), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(3986), + [sym_literal] = ACTIONS(4556), + [sym_set_n] = ACTIONS(4556), + [sym_name_at] = ACTIONS(4558), + [sym_qualified_name] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4560), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4562), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3647), + [anon_sym_forall] = ACTIONS(3649), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_Prop] = ACTIONS(4556), + [anon_sym_Set] = ACTIONS(4556), + [anon_sym_quote] = ACTIONS(4556), + [anon_sym_quoteTerm] = ACTIONS(4556), + [anon_sym_unquote] = ACTIONS(4556), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_LPAREN_PIPE] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4556), + }, + [3128] = { + [sym__expr2] = STATE(3987), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3639), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4526), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3647), + [anon_sym_forall] = ACTIONS(3649), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(4528), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + }, + [3129] = { + [sym_vclose] = STATE(3989), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(3990), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(4568), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [3130] = { + [sym__layout_semicolon] = ACTIONS(3793), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + }, + [3131] = { + [sym__layout_semicolon] = ACTIONS(3795), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + }, + [3132] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4141), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_COLON] = ACTIONS(819), + [anon_sym_where] = ACTIONS(4570), + }, + [3133] = { + [sym__layout_semicolon] = ACTIONS(3799), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + }, + [3134] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + }, + [3135] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), }, - [2576] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(2576), - [sym_typed_bindings] = STATE(2576), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COLON] = ACTIONS(825), + [3136] = { + [sym__layout_semicolon] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_DOT_DOT] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3011), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3011), }, - [2577] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(3540), + [3137] = { + [sym_expr] = STATE(3992), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(3541), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(3542), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1599), - [aux_sym__application_repeat1] = STATE(1600), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2017), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2019), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2021), - [anon_sym_forall] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [2578] = { - [sym_where_clause] = STATE(1151), - [sym_rhs] = STATE(3546), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4143), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4145), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4143), - [anon_sym_module] = ACTIONS(4147), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2579] = { - [sym__expr1] = STATE(853), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2578), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(3547), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1060), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [3138] = { + [sym_expr] = STATE(3993), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_in] = ACTIONS(4149), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(460), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2580] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(1596), + [3139] = { + [sym_expr] = STATE(3994), + [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1597), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1598), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1599), - [aux_sym__application_repeat1] = STATE(1600), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2017), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2019), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2021), - [anon_sym_forall] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [2581] = { - [sym_atomic_expr] = STATE(3050), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(3089), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), - }, - [2582] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(2083), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(3089), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2021), - [anon_sym_forall] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), - }, - [2583] = { - [sym_atomic_expr] = STATE(1637), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(3091), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - }, - [2584] = { - [sym_expr] = STATE(1643), - [sym__expr1] = STATE(3463), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(3464), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(3465), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(3466), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(4033), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [2585] = { - [sym__application] = STATE(1651), - [sym__expr2] = STATE(95), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [aux_sym__application_repeat1] = STATE(3549), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(3091), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4151), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - }, - [2586] = { - [sym_semi] = STATE(3550), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3551), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_rewrite] = ACTIONS(1048), - [anon_sym_with] = ACTIONS(1048), - }, - [2587] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(3091), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4151), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - }, - [2588] = { - [sym_expr] = STATE(1635), - [sym__expr1] = STATE(2591), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2592), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2593), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(2594), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3099), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2589] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3099), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [3140] = { + [anon_sym_RBRACE] = ACTIONS(4572), + [sym_comment] = ACTIONS(86), }, - [2590] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3099), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2091), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [3141] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4572), + [sym_comment] = ACTIONS(86), }, - [2591] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4153), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_rewrite] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), + [3142] = { + [sym__layout_semicolon] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_RBRACE] = ACTIONS(3439), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3439), }, - [2592] = { + [3143] = { + [sym__layout_semicolon] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_RBRACE] = ACTIONS(3441), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4155), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(3441), }, - [2593] = { - [sym_expr] = STATE(1670), - [sym__expr1] = STATE(2591), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2592), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2593), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(2594), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3099), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [3144] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4572), }, - [2594] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3099), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [3145] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), }, - [2595] = { - [sym__expr1] = STATE(930), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1060), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [3146] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), }, - [2596] = { - [sym__expr1] = STATE(931), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1060), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [3147] = { + [sym__application] = STATE(3996), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [2597] = { - [sym_with_expressions] = STATE(932), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_rewrite] = ACTIONS(646), - [anon_sym_with] = ACTIONS(3105), - }, - [2598] = { - [sym_expr] = STATE(933), - [sym__expr1] = STATE(2591), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2592), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2593), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(2594), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3099), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [2599] = { - [sym__expr1] = STATE(2499), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2500), - [sym__declaration] = STATE(3553), - [sym_function_clause] = STATE(100), - [sym__declarations1] = STATE(935), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [3148] = { + [sym__application] = STATE(3997), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), - [anon_sym_rewrite] = ACTIONS(670), - [anon_sym_with] = ACTIONS(670), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2600] = { - [sym_anonymous_name] = STATE(3554), - [sym_name] = ACTIONS(4157), - [anon_sym__] = ACTIONS(676), + [3149] = { + [sym_binding_name] = STATE(3998), + [sym__application] = STATE(3999), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2601] = { - [sym_where_clause] = STATE(937), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(3109), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(3111), - [anon_sym_rewrite] = ACTIONS(678), - [anon_sym_with] = ACTIONS(678), - }, - [2602] = { - [sym__expr1] = STATE(1605), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1606), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(2602), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(3135), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(3138), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(3141), - [anon_sym_let] = ACTIONS(3144), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_rewrite] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), + [3150] = { + [sym__layout_semicolon] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_COLON] = ACTIONS(1356), }, - [2603] = { - [sym_atomic_expr] = STATE(2177), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(3113), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [3151] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(4574), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4576), }, - [2604] = { - [sym_lambda_bindings] = STATE(3556), - [sym_untyped_bindings] = STATE(3557), - [sym_typed_bindings] = STATE(3557), - [anon_sym_DOT] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2698), + [3152] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(4578), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4159), - [anon_sym_LPAREN] = ACTIONS(2702), }, - [2605] = { - [sym_forall_bindings] = STATE(3558), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [3153] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4574), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [anon_sym_COLON] = ACTIONS(4580), }, - [2606] = { - [sym__expr1] = STATE(3559), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3560), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(3561), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1060), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [3154] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(4004), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), }, - [2607] = { - [sym__application] = STATE(2194), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2608), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(3113), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3115), - [anon_sym_forall] = ACTIONS(3117), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [3155] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4574), }, - [2608] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(3113), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3115), - [anon_sym_forall] = ACTIONS(3117), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [3156] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4582), }, - [2609] = { - [sym_atomic_expr] = STATE(2196), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(3121), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [3157] = { + [sym_expr] = STATE(4002), + [sym__expr1] = STATE(3160), + [sym__application] = STATE(1351), + [sym__expr2] = STATE(1352), + [sym__atomic_exprs1] = STATE(3161), + [sym_atomic_expr] = STATE(1354), + [sym__atomic_expr_curly] = STATE(1355), + [sym__atomic_expr_no_curly] = STATE(1355), + [sym_tele_arrow] = STATE(3162), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1357), + [aux_sym__application_repeat1] = STATE(1358), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1675), + [sym_set_n] = ACTIONS(1675), + [sym_name_at] = ACTIONS(1677), + [sym_qualified_name] = ACTIONS(1675), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1683), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1685), + [anon_sym_forall] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_QMARK] = ACTIONS(1675), + [anon_sym_Prop] = ACTIONS(1675), + [anon_sym_Set] = ACTIONS(1675), + [anon_sym_quote] = ACTIONS(1675), + [anon_sym_quoteTerm] = ACTIONS(1675), + [anon_sym_unquote] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_LPAREN_PIPE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), }, - [2610] = { - [sym_lambda_bindings] = STATE(3563), - [sym_untyped_bindings] = STATE(3564), - [sym_typed_bindings] = STATE(3564), - [anon_sym_DOT] = ACTIONS(2708), - [anon_sym_DOT_DOT] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2714), + [3158] = { + [sym__application] = STATE(4006), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(3683), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [3159] = { + [sym__layout_semicolon] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), }, - [2611] = { - [sym_forall_bindings] = STATE(3565), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [3160] = { + [sym__layout_semicolon] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(280), + [anon_sym_RBRACE] = ACTIONS(280), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(280), + }, + [3161] = { [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [anon_sym_DASH_GT] = ACTIONS(4584), + [anon_sym_PIPE] = ACTIONS(162), }, - [2612] = { - [sym__expr1] = STATE(853), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3566), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(3567), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1060), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [3162] = { + [sym_expr] = STATE(4008), + [sym__expr1] = STATE(3160), + [sym__application] = STATE(1351), + [sym__expr2] = STATE(1352), + [sym__atomic_exprs1] = STATE(3161), + [sym_atomic_expr] = STATE(1354), + [sym__atomic_expr_curly] = STATE(1355), + [sym__atomic_expr_no_curly] = STATE(1355), + [sym_tele_arrow] = STATE(3162), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1357), + [aux_sym__application_repeat1] = STATE(1358), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1675), + [sym_set_n] = ACTIONS(1675), + [sym_name_at] = ACTIONS(1677), + [sym_qualified_name] = ACTIONS(1675), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1683), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1685), + [anon_sym_forall] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_QMARK] = ACTIONS(1675), + [anon_sym_Prop] = ACTIONS(1675), + [anon_sym_Set] = ACTIONS(1675), + [anon_sym_quote] = ACTIONS(1675), + [anon_sym_quoteTerm] = ACTIONS(1675), + [anon_sym_unquote] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_LPAREN_PIPE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), }, - [2613] = { - [sym__application] = STATE(2212), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2614), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(3121), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3123), - [anon_sym_forall] = ACTIONS(3125), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [3163] = { + [sym_expr] = STATE(4009), + [sym__expr1] = STATE(4010), + [sym__application] = STATE(2283), + [sym__expr2] = STATE(2284), + [sym__atomic_exprs1] = STATE(4011), + [sym_atomic_expr] = STATE(2300), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_tele_arrow] = STATE(4012), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2287), + [aux_sym__application_repeat1] = STATE(2303), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(2750), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2756), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_forall] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), }, - [2614] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(3121), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), + [3164] = { + [sym_vopen] = STATE(4013), + [sym_declarations] = STATE(4014), + [sym__declarations0] = STATE(4015), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [3165] = { + [sym_anonymous_name] = STATE(4016), + [sym_name] = ACTIONS(4586), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3123), - [anon_sym_forall] = ACTIONS(3125), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), }, - [2615] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3129), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [3166] = { + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), }, - [2616] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3129), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3554), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3556), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [3167] = { + [sym_where_clause] = STATE(4017), + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(3689), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(3691), }, - [2617] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4163), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [3168] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(2200), + [sym__declaration] = STATE(2201), + [sym_function_clause] = STATE(2202), + [aux_sym_source_file_repeat1] = STATE(3168), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(2766), + [sym_literal] = ACTIONS(2768), + [sym_set_n] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(2771), + [sym_qualified_name] = ACTIONS(2768), + [anon_sym__] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2777), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2780), + [anon_sym_forall] = ACTIONS(2783), + [anon_sym_let] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_Prop] = ACTIONS(2768), + [anon_sym_Set] = ACTIONS(2768), + [anon_sym_quote] = ACTIONS(2768), + [anon_sym_quoteTerm] = ACTIONS(2768), + [anon_sym_unquote] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LPAREN_PIPE] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), + [anon_sym_COLON] = ACTIONS(644), }, - [2618] = { + [3169] = { + [sym__layout_semicolon] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4165), - [anon_sym_PIPE] = ACTIONS(162), - }, - [2619] = { - [sym_expr] = STATE(3443), - [sym__expr1] = STATE(2617), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2618), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2619), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2613), - [aux_sym__application_repeat1] = STATE(2620), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3129), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3123), - [anon_sym_forall] = ACTIONS(3125), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [anon_sym_COLON] = ACTIONS(1444), }, - [2620] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3129), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), + [3170] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3123), - [anon_sym_forall] = ACTIONS(3125), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), }, - [2621] = { - [sym_semi] = STATE(3569), - [aux_sym__declarations1_repeat1] = STATE(3570), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [3171] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), }, - [2622] = { + [3172] = { + [anon_sym_RBRACE] = ACTIONS(4588), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4167), }, - [2623] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(1621), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1622), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1623), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1147), - [aux_sym__application_repeat1] = STATE(173), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [3173] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4590), + [sym_comment] = ACTIONS(86), }, - [2624] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4169), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [3174] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4590), }, - [2625] = { + [3175] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4171), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_PIPE_RPAREN] = ACTIONS(4590), }, - [2626] = { - [sym_expr] = STATE(3443), - [sym__expr1] = STATE(2624), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2625), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2626), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1254), - [aux_sym__application_repeat1] = STATE(2099), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2602), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2604), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1564), - [anon_sym_forall] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [3176] = { + [anon_sym_RBRACE] = ACTIONS(4592), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4594), }, - [2627] = { - [ts_builtin_sym_end] = ACTIONS(2934), - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), - [anon_sym_rewrite] = ACTIONS(2934), - [anon_sym_with] = ACTIONS(2934), + [3177] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4592), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4596), }, - [2628] = { - [sym_expr] = STATE(3573), + [3178] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4592), + }, + [3179] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4598), + }, + [3180] = { + [sym__layout_semicolon] = ACTIONS(1925), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_rewrite] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), + }, + [3181] = { + [sym_expr] = STATE(4024), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -95551,8 +112652,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2629] = { - [sym_expr] = STATE(3574), + [3182] = { + [sym__layout_semicolon] = ACTIONS(2366), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_rewrite] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), + }, + [3183] = { + [sym_expr] = STATE(4025), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -95588,8 +112722,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2630] = { - [sym_expr] = STATE(3575), + [3184] = { + [sym_vclose] = STATE(4027), + [sym__layout_close_brace] = ACTIONS(4600), + [sym_comment] = ACTIONS(86), + }, + [3185] = { + [sym_expr] = STATE(4028), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -95625,588 +112764,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2631] = { - [anon_sym_RBRACE] = ACTIONS(4173), - [sym_comment] = ACTIONS(86), - }, - [2632] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4173), - [sym_comment] = ACTIONS(86), - }, - [2633] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_rewrite] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), - }, - [2634] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_rewrite] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), - }, - [2635] = { - [sym_expr] = STATE(2643), - [sym__expr1] = STATE(1644), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1645), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1646), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(1647), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2075), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [2636] = { - [ts_builtin_sym_end] = ACTIONS(3066), - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_rewrite] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), - }, - [2637] = { - [sym_expr] = STATE(3577), - [sym__expr1] = STATE(1644), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1645), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1646), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(1647), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2075), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [2638] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_rewrite] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - }, - [2639] = { - [sym_semi] = STATE(1653), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2639), - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_rewrite] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - }, - [2640] = { + [3186] = { + [anon_sym_RBRACE] = ACTIONS(3699), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4173), - }, - [2641] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_rewrite] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), - }, - [2642] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_rewrite] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), - }, - [2643] = { - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_RPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), - [anon_sym_rewrite] = ACTIONS(3153), - [anon_sym_with] = ACTIONS(3153), - }, - [2644] = { - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_rewrite] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), - }, - [2645] = { - [sym_semi] = STATE(1671), - [aux_sym__declarations1_repeat1] = STATE(2645), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_rewrite] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), - }, - [2646] = { - [ts_builtin_sym_end] = ACTIONS(3524), - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_where] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_RPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_rewrite] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - }, - [2647] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(1676), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1677), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(1678), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1679), - [aux_sym__application_repeat1] = STATE(1680), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2105), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_forall] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1206), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [2648] = { - [sym_atomic_expr] = STATE(658), - [sym__atomic_expr_curly] = STATE(227), - [sym__atomic_expr_no_curly] = STATE(227), - [sym_literal] = ACTIONS(292), - [sym_set_n] = ACTIONS(292), - [sym_name_at] = ACTIONS(3179), - [sym_qualified_name] = ACTIONS(292), - [anon_sym__] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(298), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_Prop] = ACTIONS(292), - [anon_sym_Set] = ACTIONS(292), - [anon_sym_quote] = ACTIONS(292), - [anon_sym_quoteTerm] = ACTIONS(292), - [anon_sym_unquote] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LPAREN_PIPE] = ACTIONS(302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), - }, - [2649] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(226), - [sym__atomic_expr_curly] = STATE(227), - [sym__atomic_expr_no_curly] = STATE(227), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(292), - [sym_set_n] = ACTIONS(292), - [sym_name_at] = ACTIONS(3179), - [sym_qualified_name] = ACTIONS(292), - [anon_sym__] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(298), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_forall] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1206), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_Prop] = ACTIONS(292), - [anon_sym_Set] = ACTIONS(292), - [anon_sym_quote] = ACTIONS(292), - [anon_sym_quoteTerm] = ACTIONS(292), - [anon_sym_unquote] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LPAREN_PIPE] = ACTIONS(302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), + [anon_sym_COLON] = ACTIONS(3701), }, - [2650] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(1676), + [3187] = { + [sym_expr] = STATE(3195), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1677), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(1678), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1679), - [aux_sym__application_repeat1] = STATE(1680), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2105), + [sym_name_at] = ACTIONS(34), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2107), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(3721), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_forall] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1206), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -96217,426 +112807,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2651] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [2652] = { - [sym_lambda_bindings] = STATE(894), - [sym_untyped_bindings] = STATE(2652), - [sym_typed_bindings] = STATE(2652), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_DOT_DOT] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(1153), - [anon_sym_RPAREN] = ACTIONS(464), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_rewrite] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), - }, - [2653] = { - [sym_expr] = STATE(911), - [sym__expr1] = STATE(2666), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2667), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2668), + [3188] = { + [sym_expr] = STATE(3196), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(2669), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3193), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3195), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [2654] = { - [sym_rewrite_equations] = STATE(3581), - [sym_with_expressions] = STATE(406), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_RPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(4177), - [anon_sym_with] = ACTIONS(4179), - }, - [2655] = { - [sym_where_clause] = STATE(410), - [sym_rhs] = STATE(1716), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3723), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(2139), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4181), - [anon_sym_module] = ACTIONS(2141), - [anon_sym_rewrite] = ACTIONS(170), - [anon_sym_with] = ACTIONS(170), - }, - [2656] = { - [sym__expr1] = STATE(2654), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2655), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(3583), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [2657] = { - [sym__expr1] = STATE(1233), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(3588), - [aux_sym__application_repeat1] = STATE(3589), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(4183), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [2658] = { - [sym__expr1] = STATE(1249), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(3594), - [aux_sym__application_repeat1] = STATE(3595), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(4191), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(4191), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), - }, - [2659] = { - [sym_with_expressions] = STATE(1256), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(3185), - }, - [2660] = { - [sym_expr] = STATE(1267), - [sym__expr1] = STATE(3601), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3602), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3603), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3604), - [aux_sym__application_repeat1] = STATE(3605), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4199), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [2661] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1689), - [sym__declaration] = STATE(202), - [sym_function_clause] = STATE(203), - [aux_sym_source_file_repeat1] = STATE(2661), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4209), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4212), - [anon_sym_forall] = ACTIONS(4215), - [anon_sym_let] = ACTIONS(4218), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2662] = { - [sym_expr] = STATE(2511), - [sym__expr1] = STATE(1676), + [3189] = { + [sym_expr] = STATE(3197), + [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1677), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(1678), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1679), - [aux_sym__application_repeat1] = STATE(1680), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2105), + [sym_name_at] = ACTIONS(120), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2107), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_forall] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1206), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -96644,1520 +112879,846 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(3723), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2663] = { - [sym_semi] = STATE(1695), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2663), - [anon_sym_SEMI] = ACTIONS(3626), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3624), - [anon_sym_RPAREN] = ACTIONS(3624), - }, - [2664] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3193), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [2665] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3193), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2091), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [2666] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4221), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_rewrite] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), - }, - [2667] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4223), - [anon_sym_PIPE] = ACTIONS(162), + [3190] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_rewrite] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [2668] = { - [sym_expr] = STATE(1670), - [sym__expr1] = STATE(2666), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2667), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2668), + [3191] = { + [sym_expr] = STATE(3195), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(2669), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3193), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3195), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [2669] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3193), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(3721), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2670] = { - [sym_expr] = STATE(2636), - [sym__expr1] = STATE(2666), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2667), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2668), + [3192] = { + [sym_expr] = STATE(3196), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(2669), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3193), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3195), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [2671] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(2121), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4225), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - }, - [2672] = { - [sym__application] = STATE(906), - [sym__expr2] = STATE(95), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [sym_non_absurd_lambda_clause] = STATE(909), - [sym_absurd_lambda_clause] = STATE(909), - [sym_lambda_clause] = STATE(2638), - [aux_sym__application_repeat1] = STATE(1702), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(2121), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2123), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [sym_catchall_pragma] = ACTIONS(2125), - }, - [2673] = { - [sym_semi] = STATE(2672), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3608), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_rewrite] = ACTIONS(2001), - [anon_sym_with] = ACTIONS(2001), - }, - [2674] = { - [sym_expr] = STATE(2643), - [sym__expr1] = STATE(1706), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(1707), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(1708), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(1709), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2129), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2131), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_forall] = ACTIONS(552), - [anon_sym_let] = ACTIONS(554), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [2675] = { - [sym_semi] = STATE(3609), - [aux_sym__declarations1_repeat1] = STATE(3610), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_rewrite] = ACTIONS(1376), - [anon_sym_with] = ACTIONS(1376), - }, - [2676] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4227), - }, - [2677] = { - [sym__application] = STATE(3139), - [sym__expr2] = STATE(1235), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [sym_non_absurd_lambda_clause] = STATE(3142), - [sym_absurd_lambda_clause] = STATE(3142), - [sym_lambda_clause] = STATE(3615), - [sym_lambda_where_clauses] = STATE(3144), - [aux_sym__application_repeat1] = STATE(3616), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(4229), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4231), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - [sym_catchall_pragma] = ACTIONS(4233), - }, - [2678] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4235), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [2679] = { - [sym_lambda_bindings] = STATE(3127), - [sym_untyped_bindings] = STATE(2679), - [sym_typed_bindings] = STATE(2679), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3667), - [anon_sym_DOT_DOT] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3671), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_RPAREN] = ACTIONS(464), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), - }, - [2680] = { - [sym_expr] = STATE(3144), - [sym__expr1] = STATE(3620), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3621), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3622), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1722), - [aux_sym__application_repeat1] = STATE(3623), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4237), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4239), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2145), - [anon_sym_forall] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [2681] = { - [sym_rewrite_equations] = STATE(3625), - [sym_with_expressions] = STATE(1929), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_RPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(1214), - [anon_sym_with] = ACTIONS(4241), - }, - [2682] = { - [sym_where_clause] = STATE(1933), - [sym_rhs] = STATE(3629), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3723), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4243), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4245), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4243), - [anon_sym_module] = ACTIONS(4247), - [anon_sym_with] = ACTIONS(170), - }, - [2683] = { - [sym__expr1] = STATE(2681), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2682), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(3630), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [2684] = { - [sym__application] = STATE(3180), - [sym__expr2] = STATE(1251), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [sym_non_absurd_lambda_clause] = STATE(3183), - [sym_absurd_lambda_clause] = STATE(3183), - [sym_lambda_clause] = STATE(3634), - [sym_lambda_where_clauses] = STATE(3185), - [aux_sym__application_repeat1] = STATE(3635), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(4249), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), + [3193] = { + [sym_expr] = STATE(3197), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4251), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - [sym_catchall_pragma] = ACTIONS(4253), - }, - [2685] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4255), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [2686] = { - [sym_lambda_bindings] = STATE(3168), - [sym_untyped_bindings] = STATE(2686), - [sym_typed_bindings] = STATE(2686), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3717), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3721), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3723), - [anon_sym_RPAREN] = ACTIONS(464), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - }, - [2687] = { - [sym_expr] = STATE(3185), - [sym__expr1] = STATE(2273), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2274), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2275), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1728), - [aux_sym__application_repeat1] = STATE(2276), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2776), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2153), - [anon_sym_forall] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(3723), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2688] = { - [sym_where_clause] = STATE(1985), - [sym_rhs] = STATE(3639), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [3194] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4257), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1622), - [anon_sym_module] = ACTIONS(4259), - }, - [2689] = { - [sym__expr1] = STATE(423), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2688), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(3640), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [2690] = { - [sym__application] = STATE(3212), - [sym__expr2] = STATE(1270), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [sym_non_absurd_lambda_clause] = STATE(3215), - [sym_absurd_lambda_clause] = STATE(3215), - [sym_lambda_clause] = STATE(3644), - [sym_lambda_where_clauses] = STATE(3217), - [aux_sym__application_repeat1] = STATE(3645), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(4261), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(4261), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4263), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), - [sym_catchall_pragma] = ACTIONS(4265), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_rewrite] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [2691] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4267), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [3195] = { + [anon_sym_RBRACE] = ACTIONS(4602), + [sym_comment] = ACTIONS(86), }, - [2692] = { - [sym_lambda_bindings] = STATE(3200), - [sym_untyped_bindings] = STATE(2692), - [sym_typed_bindings] = STATE(2692), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3759), - [anon_sym_DOT_DOT] = ACTIONS(3759), - [anon_sym_LBRACE] = ACTIONS(3761), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3763), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3765), - [anon_sym_RPAREN] = ACTIONS(464), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [3196] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4604), + [sym_comment] = ACTIONS(86), }, - [2693] = { - [sym_expr] = STATE(3217), - [sym__expr1] = STATE(1735), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(1736), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(1737), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1738), - [aux_sym__application_repeat1] = STATE(1739), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(2159), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(2161), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2163), - [anon_sym_forall] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [3197] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4604), }, - [2694] = { - [sym_where_clause] = STATE(2025), - [sym_rhs] = STATE(3649), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1218), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4269), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1218), - [anon_sym_module] = ACTIONS(4271), + [3198] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4604), }, - [2695] = { - [sym__expr1] = STATE(423), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2694), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(3650), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [3199] = { + [sym_expr] = STATE(4031), + [sym__expr1] = STATE(2241), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(2242), + [sym_atomic_expr] = STATE(2243), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), + [sym_tele_arrow] = STATE(2245), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(2246), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(2698), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2704), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_forall] = ACTIONS(928), + [anon_sym_let] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), }, - [2696] = { - [sym_expr] = STATE(3227), - [sym__expr1] = STATE(1735), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(1736), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(1737), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1738), - [aux_sym__application_repeat1] = STATE(1739), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(2159), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(2161), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2163), - [anon_sym_forall] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [3200] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_rewrite] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), }, - [2697] = { - [sym_atomic_expr] = STATE(3228), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(3215), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), + [3201] = { + [sym__layout_semicolon] = ACTIONS(3747), + [sym_literal] = ACTIONS(1194), + [sym_set_n] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1194), + [sym_name_at] = ACTIONS(1194), + [sym_qualified_name] = ACTIONS(1194), + [anon_sym__] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1194), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1194), + [anon_sym_where] = ACTIONS(1194), + [anon_sym_forall] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_in] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(1194), + [anon_sym_Prop] = ACTIONS(1194), + [anon_sym_Set] = ACTIONS(1194), + [anon_sym_quote] = ACTIONS(1194), + [anon_sym_quoteTerm] = ACTIONS(1194), + [anon_sym_unquote] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LPAREN_PIPE] = ACTIONS(1194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_rewrite] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), }, - [2698] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(2245), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(3215), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2163), - [anon_sym_forall] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), + [3202] = { + [sym__layout_semicolon] = ACTIONS(3765), + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_rewrite] = ACTIONS(1212), + [anon_sym_with] = ACTIONS(1212), }, - [2699] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1689), - [sym__declaration] = STATE(3234), - [sym_function_clause] = STATE(203), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [3203] = { + [sym__layout_semicolon] = ACTIONS(3767), + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_rewrite] = ACTIONS(1214), + [anon_sym_with] = ACTIONS(1214), }, - [2700] = { - [sym_semi] = STATE(2699), - [aux_sym__declarations1_repeat1] = STATE(3651), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_RPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), + [3204] = { + [sym__layout_semicolon] = ACTIONS(3785), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + [anon_sym_rewrite] = ACTIONS(1244), + [anon_sym_with] = ACTIONS(1244), }, - [2701] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [3205] = { + [sym_vclose] = STATE(4032), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1689), - [sym__declaration] = STATE(1740), - [sym_function_clause] = STATE(203), - [sym__declarations1] = STATE(3236), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(2552), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(4033), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(4600), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [2702] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_PIPE_RPAREN] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), + [3206] = { + [sym__layout_semicolon] = ACTIONS(3793), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), + [anon_sym_rewrite] = ACTIONS(1284), + [anon_sym_with] = ACTIONS(1284), }, - [2703] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_PIPE_RPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), + [3207] = { + [sym__layout_semicolon] = ACTIONS(3795), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_rewrite] = ACTIONS(1286), + [anon_sym_with] = ACTIONS(1286), }, - [2704] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(1748), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1749), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(1750), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1751), - [aux_sym__application_repeat1] = STATE(1752), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(2187), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(2189), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [3208] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(4606), + }, + [3209] = { + [sym__layout_semicolon] = ACTIONS(3799), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), + [anon_sym_rewrite] = ACTIONS(1292), + [anon_sym_with] = ACTIONS(1292), + }, + [3210] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_forall] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [2705] = { - [sym_atomic_expr] = STATE(1017), - [sym__atomic_expr_curly] = STATE(475), - [sym__atomic_expr_no_curly] = STATE(475), - [sym_literal] = ACTIONS(598), - [sym_set_n] = ACTIONS(598), - [sym_name_at] = ACTIONS(3225), - [sym_qualified_name] = ACTIONS(598), - [anon_sym__] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_LBRACE_LBRACE] = ACTIONS(604), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_Prop] = ACTIONS(598), - [anon_sym_Set] = ACTIONS(598), - [anon_sym_quote] = ACTIONS(598), - [anon_sym_quoteTerm] = ACTIONS(598), - [anon_sym_unquote] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LPAREN_PIPE] = ACTIONS(608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), + [3211] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [2706] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(474), - [sym__atomic_expr_curly] = STATE(475), - [sym__atomic_expr_no_curly] = STATE(475), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(598), - [sym_set_n] = ACTIONS(598), - [sym_name_at] = ACTIONS(3225), - [sym_qualified_name] = ACTIONS(598), - [anon_sym__] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_LBRACE_LBRACE] = ACTIONS(604), + [3212] = { + [anon_sym_RBRACE] = ACTIONS(4608), + [sym_comment] = ACTIONS(86), + }, + [3213] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4610), + [sym_comment] = ACTIONS(86), + }, + [3214] = { + [anon_sym_LBRACE] = ACTIONS(4612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4614), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(4616), + }, + [3215] = { + [sym__application] = STATE(4041), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(4042), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(4618), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_forall] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_Prop] = ACTIONS(598), - [anon_sym_Set] = ACTIONS(598), - [anon_sym_quote] = ACTIONS(598), - [anon_sym_quoteTerm] = ACTIONS(598), - [anon_sym_unquote] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LPAREN_PIPE] = ACTIONS(608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [2707] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(1748), - [sym__application] = STATE(39), + [3216] = { + [sym__application] = STATE(4043), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4618), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [3217] = { + [sym_vopen] = STATE(4044), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), + }, + [3218] = { + [sym_binding_name] = STATE(4045), + [sym__application] = STATE(4046), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1749), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(1750), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1751), - [aux_sym__application_repeat1] = STATE(1752), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(2187), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(2189), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_forall] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(4618), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2708] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4273), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [3219] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4620), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [2709] = { - [sym_lambda_bindings] = STATE(1777), - [sym_untyped_bindings] = STATE(2709), - [sym_typed_bindings] = STATE(2709), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_DOT_DOT] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2237), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_PIPE_RPAREN] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_rewrite] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), + [3220] = { + [sym_lambda_bindings] = STATE(4040), + [sym_untyped_bindings] = STATE(3220), + [sym_typed_bindings] = STATE(3220), + [sym__layout_semicolon] = ACTIONS(763), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [anon_sym_SEMI] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(4622), + [anon_sym_DOT_DOT] = ACTIONS(4622), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4626), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(4628), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), }, - [2710] = { - [sym_expr] = STATE(1794), - [sym__expr1] = STATE(2736), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(2737), - [sym_atomic_expr] = STATE(1809), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_tele_arrow] = STATE(2738), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(2739), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(3251), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2249), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), + [3221] = { + [sym_expr] = STATE(4056), + [sym__expr1] = STATE(4057), + [sym__application] = STATE(2267), + [sym__expr2] = STATE(2268), + [sym__atomic_exprs1] = STATE(4058), + [sym_atomic_expr] = STATE(4059), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [sym_tele_arrow] = STATE(4061), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2271), + [aux_sym__application_repeat1] = STATE(4062), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(4632), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(4634), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4636), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4638), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2718), + [anon_sym_forall] = ACTIONS(2720), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(4640), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), }, - [2711] = { - [sym_rewrite_equations] = STATE(3655), - [sym_with_expressions] = STATE(1816), + [3222] = { + [sym_rewrite_equations] = STATE(4064), + [sym_with_expressions] = STATE(4065), + [sym__layout_semicolon] = ACTIONS(1711), [sym_literal] = ACTIONS(152), [sym_set_n] = ACTIONS(152), [anon_sym_SEMI] = ACTIONS(152), @@ -98166,6 +113727,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(152), [anon_sym_DOT] = ACTIONS(152), [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_RBRACE] = ACTIONS(152), [anon_sym_LBRACE_LBRACE] = ACTIONS(152), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(152), @@ -98182,16 +113744,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(152), [anon_sym_LPAREN] = ACTIONS(152), [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_PIPE_RPAREN] = ACTIONS(152), [anon_sym_DOT_DOT_DOT] = ACTIONS(152), [anon_sym_COLON] = ACTIONS(152), [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(4275), - [anon_sym_with] = ACTIONS(4277), + [anon_sym_rewrite] = ACTIONS(1713), + [anon_sym_with] = ACTIONS(152), }, - [2712] = { - [sym_where_clause] = STATE(1820), - [sym_rhs] = STATE(1821), + [3223] = { + [sym_where_clause] = STATE(4069), + [sym_rhs] = STATE(4070), + [sym__layout_semicolon] = ACTIONS(1717), [sym_literal] = ACTIONS(170), [sym_set_n] = ACTIONS(170), [anon_sym_SEMI] = ACTIONS(170), @@ -98200,11 +113762,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(170), [anon_sym_DOT] = ACTIONS(170), [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(170), [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4279), + [anon_sym_EQ] = ACTIONS(170), [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(2261), + [anon_sym_where] = ACTIONS(170), [anon_sym_forall] = ACTIONS(170), [anon_sym_let] = ACTIONS(170), [anon_sym_in] = ACTIONS(170), @@ -98216,330 +113779,688 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(170), [anon_sym_LPAREN] = ACTIONS(170), [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_PIPE_RPAREN] = ACTIONS(170), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4279), - [anon_sym_module] = ACTIONS(2263), - [anon_sym_rewrite] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(170), [anon_sym_with] = ACTIONS(170), }, - [2713] = { - [sym__expr1] = STATE(2711), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(2712), - [sym__declaration] = STATE(1000), - [sym_function_clause] = STATE(1001), - [aux_sym_source_file_repeat1] = STATE(3657), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_rewrite] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [3224] = { + [sym__layout_semicolon] = ACTIONS(1725), + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [anon_sym_SEMI] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), + [anon_sym_with] = ACTIONS(178), }, - [2714] = { - [sym__expr1] = STATE(1832), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1835), - [sym__atomic_expr_curly] = STATE(1836), - [sym__atomic_expr_no_curly] = STATE(1836), - [aux_sym__expr1_repeat1] = STATE(3662), - [aux_sym__application_repeat1] = STATE(3663), - [sym_literal] = ACTIONS(2265), - [sym_set_n] = ACTIONS(2265), - [sym_name_at] = ACTIONS(4281), - [sym_qualified_name] = ACTIONS(2265), - [anon_sym__] = ACTIONS(2265), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2271), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(2265), - [anon_sym_Prop] = ACTIONS(2265), - [anon_sym_Set] = ACTIONS(2265), - [anon_sym_quote] = ACTIONS(2265), - [anon_sym_quoteTerm] = ACTIONS(2265), - [anon_sym_unquote] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_LPAREN_PIPE] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2265), + [3225] = { + [sym__layout_semicolon] = ACTIONS(1727), + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [anon_sym_SEMI] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), + [anon_sym_with] = ACTIONS(180), }, - [2715] = { - [sym__expr1] = STATE(1848), - [sym__application] = STATE(1849), - [sym__expr2] = STATE(1850), + [3226] = { + [sym__expr1] = STATE(3222), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1851), - [sym__atomic_expr_curly] = STATE(1852), - [sym__atomic_expr_no_curly] = STATE(1852), - [aux_sym__expr1_repeat1] = STATE(3668), - [aux_sym__application_repeat1] = STATE(3669), - [sym_literal] = ACTIONS(2283), - [sym_set_n] = ACTIONS(2283), - [sym_name_at] = ACTIONS(4289), - [sym_qualified_name] = ACTIONS(2283), - [anon_sym__] = ACTIONS(2283), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2289), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(2283), - [anon_sym_Prop] = ACTIONS(2283), - [anon_sym_Set] = ACTIONS(2283), - [anon_sym_quote] = ACTIONS(2283), - [anon_sym_quoteTerm] = ACTIONS(2283), - [anon_sym_unquote] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_LPAREN_PIPE] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2283), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3223), + [sym__declaration] = STATE(3224), + [sym_function_clause] = STATE(3225), + [aux_sym_source_file_repeat1] = STATE(4071), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [2716] = { - [sym_with_expressions] = STATE(1855), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_PIPE_RPAREN] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(3231), + [3227] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4610), }, - [2717] = { - [sym_expr] = STATE(1866), - [sym__expr1] = STATE(3675), - [sym__application] = STATE(1868), - [sym__expr2] = STATE(1869), - [sym__atomic_exprs1] = STATE(3676), - [sym_atomic_expr] = STATE(1871), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_tele_arrow] = STATE(3677), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3678), - [aux_sym__application_repeat1] = STATE(3679), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(4297), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2309), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), + [3228] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4610), }, - [2718] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(1761), - [sym__declaration] = STATE(460), - [sym_function_clause] = STATE(461), - [aux_sym_source_file_repeat1] = STATE(2718), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(2323), - [sym_set_n] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4307), - [sym_qualified_name] = ACTIONS(2323), - [anon_sym__] = ACTIONS(2323), - [anon_sym_DOT] = ACTIONS(4307), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2332), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4310), - [anon_sym_forall] = ACTIONS(4313), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(2323), - [anon_sym_Prop] = ACTIONS(2323), - [anon_sym_Set] = ACTIONS(2323), - [anon_sym_quote] = ACTIONS(2323), - [anon_sym_quoteTerm] = ACTIONS(2323), - [anon_sym_unquote] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_LPAREN_PIPE] = ACTIONS(2347), - [anon_sym_PIPE_RPAREN] = ACTIONS(680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2323), + [3229] = { + [sym__layout_semicolon] = ACTIONS(787), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [anon_sym_SEMI] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_RBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_with] = ACTIONS(673), + }, + [3230] = { + [sym__layout_semicolon] = ACTIONS(789), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), + [anon_sym_with] = ACTIONS(693), + }, + [3231] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + }, + [3232] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + }, + [3233] = { + [anon_sym_RBRACE] = ACTIONS(4644), + [sym_comment] = ACTIONS(86), + }, + [3234] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4646), + [sym_comment] = ACTIONS(86), + }, + [3235] = { + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4650), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(4652), + }, + [3236] = { + [sym__application] = STATE(4078), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(4079), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), + }, + [3237] = { + [sym__application] = STATE(4080), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4654), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [3238] = { + [sym_vopen] = STATE(4081), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), + }, + [3239] = { + [sym_binding_name] = STATE(4082), + [sym__application] = STATE(4083), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(4654), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [3240] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4656), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + }, + [3241] = { + [sym_lambda_bindings] = STATE(4077), + [sym_untyped_bindings] = STATE(3241), + [sym_typed_bindings] = STATE(3241), + [sym__layout_semicolon] = ACTIONS(763), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [anon_sym_SEMI] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(4658), + [anon_sym_DOT_DOT] = ACTIONS(4658), + [anon_sym_LBRACE] = ACTIONS(4660), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4662), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(4664), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + }, + [3242] = { + [sym_expr] = STATE(4086), + [sym__expr1] = STATE(4010), + [sym__application] = STATE(2283), + [sym__expr2] = STATE(2284), + [sym__atomic_exprs1] = STATE(4011), + [sym_atomic_expr] = STATE(2300), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_tele_arrow] = STATE(4012), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2287), + [aux_sym__application_repeat1] = STATE(2303), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(2750), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2756), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_forall] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), + }, + [3243] = { + [sym_where_clause] = STATE(4089), + [sym_rhs] = STATE(4090), + [sym__layout_semicolon] = ACTIONS(1717), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(170), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(170), }, - [2719] = { - [sym_expr] = STATE(2511), - [sym__expr1] = STATE(1748), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1749), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(1750), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1751), - [aux_sym__application_repeat1] = STATE(1752), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(2187), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(2189), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [3244] = { + [sym__layout_semicolon] = ACTIONS(1725), + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [anon_sym_SEMI] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_forall] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), }, - [2720] = { - [sym_semi] = STATE(1769), - [aux_sym_lambda_where_clauses_repeat1] = STATE(2720), - [anon_sym_SEMI] = ACTIONS(3626), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3624), - [anon_sym_PIPE_RPAREN] = ACTIONS(3624), + [3245] = { + [sym__layout_semicolon] = ACTIONS(1727), + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [anon_sym_SEMI] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), }, - [2721] = { - [anon_sym_RBRACE] = ACTIONS(4319), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4321), + [3246] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3243), + [sym__declaration] = STATE(3244), + [sym_function_clause] = STATE(3245), + [aux_sym_source_file_repeat1] = STATE(4091), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [2722] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4319), + [3247] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4646), }, - [2723] = { + [3248] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4319), + [anon_sym_PIPE_RPAREN] = ACTIONS(4646), }, - [2724] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4325), + [3249] = { + [sym__layout_semicolon] = ACTIONS(787), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [anon_sym_SEMI] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_RBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), }, - [2725] = { - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_PIPE_RPAREN] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_rewrite] = ACTIONS(1891), - [anon_sym_with] = ACTIONS(1891), + [3250] = { + [sym__layout_semicolon] = ACTIONS(789), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), }, - [2726] = { - [sym_expr] = STATE(3684), + [3251] = { + [sym_expr] = STATE(3259), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -98560,6 +114481,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(3781), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -98575,40 +114497,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2727] = { - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_PIPE_RPAREN] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_COLON] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_rewrite] = ACTIONS(1905), - [anon_sym_with] = ACTIONS(1905), - }, - [2728] = { - [sym_expr] = STATE(3685), + [3252] = { + [sym_expr] = STATE(3260), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -98630,6 +114520,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3783), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -98644,7 +114535,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2729] = { + [3253] = { + [sym_expr] = STATE(3261), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(3783), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [3254] = { + [sym__layout_semicolon] = ACTIONS(1611), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), [anon_sym_SEMI] = ACTIONS(186), @@ -98653,10 +114583,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(186), [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), @@ -98670,14 +114602,126 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_PIPE_RPAREN] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), [anon_sym_COLON] = ACTIONS(186), [anon_sym_module] = ACTIONS(186), - [anon_sym_rewrite] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), }, - [2730] = { + [3255] = { + [sym_expr] = STATE(3259), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(3781), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [3256] = { + [sym_expr] = STATE(3260), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3783), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [3257] = { + [sym_expr] = STATE(3261), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(3783), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [3258] = { + [sym__layout_semicolon] = ACTIONS(1613), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), [anon_sym_SEMI] = ACTIONS(228), @@ -98686,10 +114730,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(228), [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), @@ -98703,421 +114749,193 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_PIPE_RPAREN] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), [anon_sym_COLON] = ACTIONS(228), [anon_sym_module] = ACTIONS(228), - [anon_sym_rewrite] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), }, - [2731] = { - [anon_sym_RBRACE] = ACTIONS(4327), + [3259] = { + [anon_sym_RBRACE] = ACTIONS(4666), [sym_comment] = ACTIONS(86), }, - [2732] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4329), + [3260] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4668), [sym_comment] = ACTIONS(86), }, - [2733] = { - [sym_atomic_expr] = STATE(2752), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(3251), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3261), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), - }, - [2734] = { - [sym_atomic_expr] = STATE(2752), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(3251), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3267), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(3269), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), + [3261] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4668), }, - [2735] = { - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_in] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_PIPE_RPAREN] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_rewrite] = ACTIONS(1983), - [anon_sym_with] = ACTIONS(1983), + [3262] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4668), }, - [2736] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4331), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_PIPE_RPAREN] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_rewrite] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), + [3263] = { + [sym_expr] = STATE(4094), + [sym__expr1] = STATE(2298), + [sym__application] = STATE(2283), + [sym__expr2] = STATE(2284), + [sym__atomic_exprs1] = STATE(2299), + [sym_atomic_expr] = STATE(2300), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_tele_arrow] = STATE(2302), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2287), + [aux_sym__application_repeat1] = STATE(2303), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(2750), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2756), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_forall] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), }, - [2737] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4333), - [anon_sym_PIPE] = ACTIONS(162), + [3264] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), }, - [2738] = { - [sym_expr] = STATE(2762), - [sym__expr1] = STATE(2736), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(2737), - [sym_atomic_expr] = STATE(1809), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_tele_arrow] = STATE(2738), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(2739), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(3251), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2249), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), + [3265] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), }, - [2739] = { - [sym__expr2] = STATE(1016), - [sym_atomic_expr] = STATE(1809), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(3251), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3261), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), + [3266] = { + [sym__layout_semicolon] = ACTIONS(4670), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), }, - [2740] = { + [3267] = { + [sym_vclose] = STATE(4095), + [sym__layout_close_brace] = ACTIONS(3791), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4329), }, - [2741] = { + [3268] = { + [sym_vopen] = STATE(2304), + [sym_declarations] = STATE(2305), + [sym__declarations0] = STATE(4096), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4329), - }, - [2742] = { - [sym_expr] = STATE(3689), - [sym__expr1] = STATE(2736), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(2737), - [sym_atomic_expr] = STATE(1809), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_tele_arrow] = STATE(2738), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(2739), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(3251), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2249), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), - }, - [2743] = { - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_PIPE_RPAREN] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_rewrite] = ACTIONS(1997), - [anon_sym_with] = ACTIONS(1997), }, - [2744] = { - [sym__expr2] = STATE(1016), - [sym_atomic_expr] = STATE(1790), - [sym__atomic_expr_curly] = STATE(1791), - [sym__atomic_expr_no_curly] = STATE(1791), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(2215), - [sym_set_n] = ACTIONS(2215), - [sym_name_at] = ACTIONS(2217), - [sym_qualified_name] = ACTIONS(2215), - [anon_sym__] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2221), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4335), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2215), - [anon_sym_Prop] = ACTIONS(2215), - [anon_sym_Set] = ACTIONS(2215), - [anon_sym_quote] = ACTIONS(2215), - [anon_sym_quoteTerm] = ACTIONS(2215), - [anon_sym_unquote] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_LPAREN_PIPE] = ACTIONS(2227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2215), + [3269] = { + [anon_sym_RBRACE] = ACTIONS(4672), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4674), }, - [2745] = { - [sym__application] = STATE(1789), - [sym__expr2] = STATE(456), - [sym_atomic_expr] = STATE(1790), - [sym__atomic_expr_curly] = STATE(1791), - [sym__atomic_expr_no_curly] = STATE(1791), - [sym_non_absurd_lambda_clause] = STATE(1792), - [sym_absurd_lambda_clause] = STATE(1792), - [sym_lambda_clause] = STATE(3691), - [aux_sym__application_repeat1] = STATE(1795), - [sym_literal] = ACTIONS(2215), - [sym_set_n] = ACTIONS(2215), - [sym_name_at] = ACTIONS(2217), - [sym_qualified_name] = ACTIONS(2215), - [anon_sym__] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2221), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2223), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2215), - [anon_sym_Prop] = ACTIONS(2215), - [anon_sym_Set] = ACTIONS(2215), - [anon_sym_quote] = ACTIONS(2215), - [anon_sym_quoteTerm] = ACTIONS(2215), - [anon_sym_unquote] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_LPAREN_PIPE] = ACTIONS(2227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2215), - [sym_catchall_pragma] = ACTIONS(2229), + [3270] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4672), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4676), }, - [2746] = { - [sym_semi] = STATE(2745), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3692), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_PIPE_RPAREN] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_rewrite] = ACTIONS(2001), - [anon_sym_with] = ACTIONS(2001), + [3271] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4672), }, - [2747] = { - [sym_expr] = STATE(3693), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [3272] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4678), }, - [2748] = { - [anon_sym_RBRACE] = ACTIONS(3239), + [3273] = { + [sym__layout_semicolon] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_DOT] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1925), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3241), + [anon_sym_DASH_GT] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1925), }, - [2749] = { - [sym_expr] = STATE(2757), + [3274] = { + [sym_expr] = STATE(4101), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -99138,7 +114956,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3271), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -99154,8 +114971,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2750] = { - [sym_expr] = STATE(2758), + [3275] = { + [sym__layout_semicolon] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [sym_comment] = ACTIONS(86), + }, + [3276] = { + [sym_expr] = STATE(4102), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -99177,7 +115000,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3273), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -99192,8 +115014,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2751] = { - [sym_expr] = STATE(2759), + [3277] = { + [sym_vclose] = STATE(4104), + [sym__layout_close_brace] = ACTIONS(4680), + [sym_comment] = ACTIONS(86), + }, + [3278] = { + [sym_expr] = STATE(4105), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -99226,627 +115053,1677 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3273), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2752] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [3279] = { + [anon_sym_RBRACE] = ACTIONS(3801), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3803), + }, + [3280] = { + [sym__layout_semicolon] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4682), + [anon_sym_EQ] = ACTIONS(757), + }, + [3281] = { + [sym_lambda_bindings] = STATE(2145), + [sym_untyped_bindings] = STATE(3281), + [sym_typed_bindings] = STATE(3281), + [sym__layout_semicolon] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1641), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(1645), + }, + [3282] = { + [sym_expr] = STATE(2154), + [sym__expr1] = STATE(4107), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(4108), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(4109), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2332), + [aux_sym__application_repeat1] = STATE(2333), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(2813), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(2815), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2817), + [anon_sym_forall] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [3283] = { + [sym_where_clause] = STATE(2161), + [sym_rhs] = STATE(2162), + [sym__layout_semicolon] = ACTIONS(1717), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_PIPE_RPAREN] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_rewrite] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(2610), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(4684), + [anon_sym_module] = ACTIONS(2614), }, - [2753] = { - [sym_expr] = STATE(2757), - [sym__expr1] = STATE(38), - [sym__application] = STATE(557), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [3284] = { + [sym__expr1] = STATE(1407), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3283), + [sym__declaration] = STATE(1309), + [sym_function_clause] = STATE(1310), + [aux_sym_source_file_repeat1] = STATE(4111), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(1747), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_in] = ACTIONS(4686), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [3285] = { + [sym_expr] = STATE(2164), + [sym__expr1] = STATE(2329), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(2330), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(2331), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2332), + [aux_sym__application_repeat1] = STATE(2333), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(2813), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(2815), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2817), + [anon_sym_forall] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [3286] = { + [sym_atomic_expr] = STATE(2165), + [sym__atomic_expr_curly] = STATE(1324), + [sym__atomic_expr_no_curly] = STATE(1324), + [sym_literal] = ACTIONS(1651), + [sym_set_n] = ACTIONS(1651), + [sym_name_at] = ACTIONS(3813), + [sym_qualified_name] = ACTIONS(1651), + [anon_sym__] = ACTIONS(1651), + [anon_sym_DOT] = ACTIONS(3813), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1657), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_Prop] = ACTIONS(1651), + [anon_sym_Set] = ACTIONS(1651), + [anon_sym_quote] = ACTIONS(1651), + [anon_sym_quoteTerm] = ACTIONS(1651), + [anon_sym_unquote] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LPAREN_PIPE] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1651), + }, + [3287] = { + [sym__expr2] = STATE(1326), + [sym_atomic_expr] = STATE(1323), + [sym__atomic_expr_curly] = STATE(1324), + [sym__atomic_expr_no_curly] = STATE(1324), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(1651), + [sym_set_n] = ACTIONS(1651), + [sym_name_at] = ACTIONS(3813), + [sym_qualified_name] = ACTIONS(1651), + [anon_sym__] = ACTIONS(1651), + [anon_sym_DOT] = ACTIONS(3813), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1657), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(2817), + [anon_sym_forall] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_Prop] = ACTIONS(1651), + [anon_sym_Set] = ACTIONS(1651), + [anon_sym_quote] = ACTIONS(1651), + [anon_sym_quoteTerm] = ACTIONS(1651), + [anon_sym_unquote] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LPAREN_PIPE] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1651), + }, + [3288] = { + [sym_expr] = STATE(3182), + [sym__expr1] = STATE(3291), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(3292), + [sym_atomic_expr] = STATE(2243), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), + [sym_tele_arrow] = STATE(3293), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(3294), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(3817), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(3819), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2704), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), + }, + [3289] = { + [sym_atomic_expr] = STATE(3190), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(3817), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(3817), + [anon_sym_LBRACE] = ACTIONS(3709), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3711), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), + }, + [3290] = { + [sym_atomic_expr] = STATE(3190), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(3817), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(3817), + [anon_sym_LBRACE] = ACTIONS(3715), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3717), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(3719), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), + }, + [3291] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4688), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_rewrite] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), + }, + [3292] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(162), }, - [2754] = { - [sym_expr] = STATE(2758), - [sym__expr1] = STATE(60), - [sym__application] = STATE(558), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), + [3293] = { + [sym_expr] = STATE(3200), + [sym__expr1] = STATE(3291), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(3292), + [sym_atomic_expr] = STATE(2243), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), + [sym_tele_arrow] = STATE(3293), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(3294), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(3817), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(3819), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2704), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), + }, + [3294] = { + [sym__expr2] = STATE(1389), + [sym_atomic_expr] = STATE(2243), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(3817), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(3817), + [anon_sym_LBRACE] = ACTIONS(3709), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3711), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), }, - [2755] = { - [sym_expr] = STATE(2759), - [sym__expr1] = STATE(110), - [sym__application] = STATE(559), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), + [3295] = { + [sym__expr1] = STATE(3201), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(1747), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [3296] = { + [sym__expr1] = STATE(3202), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(1747), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [3297] = { + [sym_expr] = STATE(3204), + [sym__expr1] = STATE(3291), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(3292), + [sym_atomic_expr] = STATE(2243), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), + [sym_tele_arrow] = STATE(3293), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(3294), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(3817), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(3819), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2704), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), + }, + [3298] = { + [sym__expr1] = STATE(1371), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(1372), + [sym__declaration] = STATE(1373), + [sym_function_clause] = STATE(1374), + [aux_sym_source_file_repeat1] = STATE(3298), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym__layout_semicolon] = ACTIONS(2766), + [sym_literal] = ACTIONS(2768), + [sym_set_n] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(3849), + [sym_qualified_name] = ACTIONS(2768), + [anon_sym__] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2777), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(3852), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(3855), + [anon_sym_let] = ACTIONS(3858), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_Prop] = ACTIONS(2768), + [anon_sym_Set] = ACTIONS(2768), + [anon_sym_quote] = ACTIONS(2768), + [anon_sym_quoteTerm] = ACTIONS(2768), + [anon_sym_unquote] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LPAREN_PIPE] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_rewrite] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), + }, + [3299] = { + [sym_atomic_expr] = STATE(3210), + [sym__atomic_expr_curly] = STATE(2270), + [sym__atomic_expr_no_curly] = STATE(2270), + [sym_literal] = ACTIONS(2710), + [sym_set_n] = ACTIONS(2710), + [sym_name_at] = ACTIONS(3821), + [sym_qualified_name] = ACTIONS(2710), + [anon_sym__] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_Prop] = ACTIONS(2710), + [anon_sym_Set] = ACTIONS(2710), + [anon_sym_quote] = ACTIONS(2710), + [anon_sym_quoteTerm] = ACTIONS(2710), + [anon_sym_unquote] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_LPAREN_PIPE] = ACTIONS(2726), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), + }, + [3300] = { + [sym_lambda_bindings] = STATE(4113), + [sym_untyped_bindings] = STATE(4114), + [sym_typed_bindings] = STATE(4114), + [anon_sym_DOT] = ACTIONS(3735), + [anon_sym_DOT_DOT] = ACTIONS(3737), + [anon_sym_LBRACE] = ACTIONS(3739), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3741), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(3743), + [anon_sym_LPAREN] = ACTIONS(3745), + }, + [3301] = { + [sym_forall_bindings] = STATE(4115), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [3302] = { + [sym__expr1] = STATE(4116), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3223), + [sym__declaration] = STATE(3224), + [sym_function_clause] = STATE(3225), + [aux_sym_source_file_repeat1] = STATE(4117), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(1747), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [3303] = { + [sym__application] = STATE(3229), + [sym__expr2] = STATE(2268), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(2269), + [sym__atomic_expr_curly] = STATE(2270), + [sym__atomic_expr_no_curly] = STATE(2270), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(3304), + [sym_literal] = ACTIONS(2710), + [sym_set_n] = ACTIONS(2710), + [sym_name_at] = ACTIONS(3821), + [sym_qualified_name] = ACTIONS(2710), + [anon_sym__] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(3273), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(3823), + [anon_sym_forall] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3827), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_Prop] = ACTIONS(2710), + [anon_sym_Set] = ACTIONS(2710), + [anon_sym_quote] = ACTIONS(2710), + [anon_sym_quoteTerm] = ACTIONS(2710), + [anon_sym_unquote] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_LPAREN_PIPE] = ACTIONS(2726), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), }, - [2756] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [3304] = { + [sym__expr2] = STATE(3230), + [sym_atomic_expr] = STATE(2269), + [sym__atomic_expr_curly] = STATE(2270), + [sym__atomic_expr_no_curly] = STATE(2270), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(2710), + [sym_set_n] = ACTIONS(2710), + [sym_name_at] = ACTIONS(3821), + [sym_qualified_name] = ACTIONS(2710), + [anon_sym__] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_PIPE_RPAREN] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_rewrite] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3823), + [anon_sym_forall] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3827), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_Prop] = ACTIONS(2710), + [anon_sym_Set] = ACTIONS(2710), + [anon_sym_quote] = ACTIONS(2710), + [anon_sym_quoteTerm] = ACTIONS(2710), + [anon_sym_unquote] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_LPAREN_PIPE] = ACTIONS(2726), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), }, - [2757] = { - [anon_sym_RBRACE] = ACTIONS(4337), + [3305] = { + [sym_atomic_expr] = STATE(3231), + [sym__atomic_expr_curly] = STATE(2286), + [sym__atomic_expr_no_curly] = STATE(2286), + [sym_literal] = ACTIONS(2728), + [sym_set_n] = ACTIONS(2728), + [sym_name_at] = ACTIONS(3829), + [sym_qualified_name] = ACTIONS(2728), + [anon_sym__] = ACTIONS(2728), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2734), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2728), + [anon_sym_Prop] = ACTIONS(2728), + [anon_sym_Set] = ACTIONS(2728), + [anon_sym_quote] = ACTIONS(2728), + [anon_sym_quoteTerm] = ACTIONS(2728), + [anon_sym_unquote] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_LPAREN_PIPE] = ACTIONS(2744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), + }, + [3306] = { + [sym_lambda_bindings] = STATE(4118), + [sym_untyped_bindings] = STATE(4119), + [sym_typed_bindings] = STATE(4119), + [anon_sym_DOT] = ACTIONS(3753), + [anon_sym_DOT_DOT] = ACTIONS(3755), + [anon_sym_LBRACE] = ACTIONS(3757), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3759), [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(3761), + [anon_sym_LPAREN] = ACTIONS(3763), }, - [2758] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4339), + [3307] = { + [sym_forall_bindings] = STATE(4120), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), }, - [2759] = { + [3308] = { + [sym__expr1] = STATE(1407), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3243), + [sym__declaration] = STATE(3244), + [sym_function_clause] = STATE(3245), + [aux_sym_source_file_repeat1] = STATE(4121), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(1747), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + }, + [3309] = { + [sym__application] = STATE(3249), + [sym__expr2] = STATE(2284), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(2285), + [sym__atomic_expr_curly] = STATE(2286), + [sym__atomic_expr_no_curly] = STATE(2286), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(3310), + [sym_literal] = ACTIONS(2728), + [sym_set_n] = ACTIONS(2728), + [sym_name_at] = ACTIONS(3829), + [sym_qualified_name] = ACTIONS(2728), + [anon_sym__] = ACTIONS(2728), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2734), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3831), + [anon_sym_forall] = ACTIONS(3833), + [anon_sym_let] = ACTIONS(3835), + [anon_sym_QMARK] = ACTIONS(2728), + [anon_sym_Prop] = ACTIONS(2728), + [anon_sym_Set] = ACTIONS(2728), + [anon_sym_quote] = ACTIONS(2728), + [anon_sym_quoteTerm] = ACTIONS(2728), + [anon_sym_unquote] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_LPAREN_PIPE] = ACTIONS(2744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), + }, + [3310] = { + [sym__expr2] = STATE(3250), + [sym_atomic_expr] = STATE(2285), + [sym__atomic_expr_curly] = STATE(2286), + [sym__atomic_expr_no_curly] = STATE(2286), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(2728), + [sym_set_n] = ACTIONS(2728), + [sym_name_at] = ACTIONS(3829), + [sym_qualified_name] = ACTIONS(2728), + [anon_sym__] = ACTIONS(2728), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2734), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3831), + [anon_sym_forall] = ACTIONS(3833), + [anon_sym_let] = ACTIONS(3835), + [anon_sym_QMARK] = ACTIONS(2728), + [anon_sym_Prop] = ACTIONS(2728), + [anon_sym_Set] = ACTIONS(2728), + [anon_sym_quote] = ACTIONS(2728), + [anon_sym_quoteTerm] = ACTIONS(2728), + [anon_sym_unquote] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_LPAREN_PIPE] = ACTIONS(2744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), + }, + [3311] = { + [sym_atomic_expr] = STATE(3954), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3837), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3837), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4526), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(4528), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + }, + [3312] = { + [sym_atomic_expr] = STATE(3954), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3837), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3837), + [anon_sym_LBRACE] = ACTIONS(4530), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4532), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(4534), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + }, + [3313] = { + [sym_lambda_bindings] = STATE(4122), + [sym_untyped_bindings] = STATE(4123), + [sym_typed_bindings] = STATE(4123), + [anon_sym_DOT] = ACTIONS(4540), + [anon_sym_DOT_DOT] = ACTIONS(4542), + [anon_sym_LBRACE] = ACTIONS(4544), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4546), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(4548), + [anon_sym_LPAREN] = ACTIONS(4550), }, - [2760] = { + [3314] = { + [sym_forall_bindings] = STATE(4124), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4339), + [anon_sym_LPAREN] = ACTIONS(100), }, - [2761] = { - [sym_expr] = STATE(3696), - [sym__expr1] = STATE(1807), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(1808), - [sym_atomic_expr] = STATE(1809), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_tele_arrow] = STATE(1811), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(1812), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(2243), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2249), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(586), - [anon_sym_forall] = ACTIONS(588), - [anon_sym_let] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), + [3315] = { + [sym__expr1] = STATE(1407), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(4125), + [sym__declaration] = STATE(3970), + [sym_function_clause] = STATE(3971), + [aux_sym_source_file_repeat1] = STATE(4126), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym_literal] = ACTIONS(918), + [sym_set_n] = ACTIONS(918), + [sym_name_at] = ACTIONS(1747), + [sym_qualified_name] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACE_LBRACE] = ACTIONS(924), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_Prop] = ACTIONS(918), + [anon_sym_Set] = ACTIONS(918), + [anon_sym_quote] = ACTIONS(918), + [anon_sym_quoteTerm] = ACTIONS(918), + [anon_sym_unquote] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_LPAREN_PIPE] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), }, - [2762] = { - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_PIPE_RPAREN] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_rewrite] = ACTIONS(2061), - [anon_sym_with] = ACTIONS(2061), + [3316] = { + [sym__layout_semicolon] = ACTIONS(3785), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), }, - [2763] = { - [sym_literal] = ACTIONS(1302), - [sym_set_n] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [sym_name_at] = ACTIONS(1302), - [sym_qualified_name] = ACTIONS(1302), - [anon_sym__] = ACTIONS(1302), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1302), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_BSLASH] = ACTIONS(1302), - [anon_sym_where] = ACTIONS(1302), - [anon_sym_forall] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1302), - [anon_sym_Prop] = ACTIONS(1302), - [anon_sym_Set] = ACTIONS(1302), - [anon_sym_quote] = ACTIONS(1302), - [anon_sym_quoteTerm] = ACTIONS(1302), - [anon_sym_unquote] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LPAREN_PIPE] = ACTIONS(1302), - [anon_sym_PIPE_RPAREN] = ACTIONS(1302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1302), - [anon_sym_COLON] = ACTIONS(1302), - [anon_sym_module] = ACTIONS(1302), - [anon_sym_rewrite] = ACTIONS(1302), - [anon_sym_with] = ACTIONS(1302), + [3317] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4692), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), }, - [2764] = { - [sym_literal] = ACTIONS(1320), - [sym_set_n] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_name_at] = ACTIONS(1320), - [sym_qualified_name] = ACTIONS(1320), - [anon_sym__] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1320), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_BSLASH] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_forall] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_Prop] = ACTIONS(1320), - [anon_sym_Set] = ACTIONS(1320), - [anon_sym_quote] = ACTIONS(1320), - [anon_sym_quoteTerm] = ACTIONS(1320), - [anon_sym_unquote] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_LPAREN_PIPE] = ACTIONS(1320), - [anon_sym_PIPE_RPAREN] = ACTIONS(1320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1320), - [anon_sym_COLON] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_rewrite] = ACTIONS(1320), - [anon_sym_with] = ACTIONS(1320), + [3318] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4694), + [anon_sym_PIPE] = ACTIONS(162), }, - [2765] = { - [sym_literal] = ACTIONS(1322), - [sym_set_n] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [sym_name_at] = ACTIONS(1322), - [sym_qualified_name] = ACTIONS(1322), - [anon_sym__] = ACTIONS(1322), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1322), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_BSLASH] = ACTIONS(1322), - [anon_sym_where] = ACTIONS(1322), - [anon_sym_forall] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_in] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_Prop] = ACTIONS(1322), - [anon_sym_Set] = ACTIONS(1322), - [anon_sym_quote] = ACTIONS(1322), - [anon_sym_quoteTerm] = ACTIONS(1322), - [anon_sym_unquote] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_LPAREN_PIPE] = ACTIONS(1322), - [anon_sym_PIPE_RPAREN] = ACTIONS(1322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_module] = ACTIONS(1322), - [anon_sym_rewrite] = ACTIONS(1322), - [anon_sym_with] = ACTIONS(1322), + [3319] = { + [sym_expr] = STATE(4128), + [sym__expr1] = STATE(3317), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(3318), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(3319), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3320), + [aux_sym__application_repeat1] = STATE(3321), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3837), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3839), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3841), + [anon_sym_forall] = ACTIONS(3843), + [anon_sym_let] = ACTIONS(3845), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), }, - [2766] = { - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_PIPE_RPAREN] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_COLON] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_rewrite] = ACTIONS(1352), - [anon_sym_with] = ACTIONS(1352), + [3320] = { + [sym__application] = STATE(3983), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(3984), + [sym__atomic_expr_curly] = STATE(3985), + [sym__atomic_expr_no_curly] = STATE(3985), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(4130), + [sym_literal] = ACTIONS(4556), + [sym_set_n] = ACTIONS(4556), + [sym_name_at] = ACTIONS(4696), + [sym_qualified_name] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4560), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4562), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3841), + [anon_sym_forall] = ACTIONS(3843), + [anon_sym_let] = ACTIONS(3845), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_Prop] = ACTIONS(4556), + [anon_sym_Set] = ACTIONS(4556), + [anon_sym_quote] = ACTIONS(4556), + [anon_sym_quoteTerm] = ACTIONS(4556), + [anon_sym_unquote] = ACTIONS(4556), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_LPAREN_PIPE] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4556), }, - [2767] = { - [sym_semi] = STATE(3697), - [aux_sym__declarations1_repeat1] = STATE(3698), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [3321] = { + [sym__expr2] = STATE(3987), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3837), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3837), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4526), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_PIPE_RPAREN] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_rewrite] = ACTIONS(1376), - [anon_sym_with] = ACTIONS(1376), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3841), + [anon_sym_forall] = ACTIONS(3843), + [anon_sym_let] = ACTIONS(3845), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(4528), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), }, - [2768] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_where] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_PIPE_RPAREN] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1380), - [anon_sym_module] = ACTIONS(1380), - [anon_sym_rewrite] = ACTIONS(1380), - [anon_sym_with] = ACTIONS(1380), + [3322] = { + [sym_vclose] = STATE(4132), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(4133), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(4698), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [2769] = { + [3323] = { + [sym__layout_semicolon] = ACTIONS(3793), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + }, + [3324] = { + [sym__layout_semicolon] = ACTIONS(3795), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + }, + [3325] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4341), + [anon_sym_where] = ACTIONS(4700), }, - [2770] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_where] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_PIPE_RPAREN] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_rewrite] = ACTIONS(1386), - [anon_sym_with] = ACTIONS(1386), + [3326] = { + [sym__layout_semicolon] = ACTIONS(3799), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), }, - [2771] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_PIPE_RPAREN] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), + [3327] = { + [sym_expr] = STATE(3275), + [sym__expr1] = STATE(707), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(710), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(713), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(714), + [aux_sym__application_repeat1] = STATE(715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(888), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(896), + [anon_sym_forall] = ACTIONS(898), + [anon_sym_let] = ACTIONS(900), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), }, - [2772] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_PIPE_RPAREN] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), + [3328] = { + [sym_expr] = STATE(3316), + [sym__expr1] = STATE(4135), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(4136), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(4137), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3127), + [aux_sym__application_repeat1] = STATE(3128), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3639), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3647), + [anon_sym_forall] = ACTIONS(3649), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), }, - [2773] = { - [anon_sym_RBRACE] = ACTIONS(4343), - [sym_comment] = ACTIONS(86), + [3329] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(2352), + [sym__declaration] = STATE(1409), + [sym_function_clause] = STATE(1410), + [aux_sym_source_file_repeat1] = STATE(3329), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(2766), + [sym_literal] = ACTIONS(2768), + [sym_set_n] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(2771), + [sym_qualified_name] = ACTIONS(2768), + [anon_sym__] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2777), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2780), + [anon_sym_forall] = ACTIONS(2783), + [anon_sym_let] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_Prop] = ACTIONS(2768), + [anon_sym_Set] = ACTIONS(2768), + [anon_sym_quote] = ACTIONS(2768), + [anon_sym_quoteTerm] = ACTIONS(2768), + [anon_sym_unquote] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LPAREN_PIPE] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), }, - [2774] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4345), + [3330] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + }, + [3331] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + }, + [3332] = { + [sym_expr] = STATE(4138), + [sym__expr1] = STATE(2363), + [sym__application] = STATE(1250), + [sym__expr2] = STATE(1251), + [sym__atomic_exprs1] = STATE(2364), + [sym_atomic_expr] = STATE(1915), + [sym__atomic_expr_curly] = STATE(1916), + [sym__atomic_expr_no_curly] = STATE(1916), + [sym_tele_arrow] = STATE(2365), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1254), + [aux_sym__application_repeat1] = STATE(1918), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2350), + [sym_set_n] = ACTIONS(2350), + [sym_name_at] = ACTIONS(2352), + [sym_qualified_name] = ACTIONS(2350), + [anon_sym__] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2354), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2358), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_forall] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(2350), + [anon_sym_Prop] = ACTIONS(2350), + [anon_sym_Set] = ACTIONS(2350), + [anon_sym_quote] = ACTIONS(2350), + [anon_sym_quoteTerm] = ACTIONS(2350), + [anon_sym_unquote] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2350), + }, + [3333] = { + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + }, + [3334] = { + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + }, + [3335] = { + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + }, + [3336] = { + [sym_vclose] = STATE(4139), + [sym__layout_close_brace] = ACTIONS(3879), [sym_comment] = ACTIONS(86), }, - [2775] = { - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4349), + [3337] = { + [sym_vopen] = STATE(2366), + [sym_declarations] = STATE(2367), + [sym__declarations0] = STATE(4140), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(4351), }, - [2776] = { - [sym__application] = STATE(3706), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(3707), - [aux_sym__application_repeat1] = STATE(311), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [3338] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + }, + [3339] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + }, + [3340] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + }, + [3341] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + }, + [3342] = { + [sym__application] = STATE(4141), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [2777] = { - [sym__application] = STATE(3708), + [3343] = { + [sym__application] = STATE(4142), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), [sym_name_at] = ACTIONS(410), @@ -99855,7 +116732,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(410), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4353), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(416), [anon_sym_forall] = ACTIONS(418), @@ -99870,62 +116746,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2778] = { - [sym__application] = STATE(3717), - [sym__expr2] = STATE(1834), - [sym_atomic_expr] = STATE(3718), - [sym__atomic_expr_curly] = STATE(3719), - [sym__atomic_expr_no_curly] = STATE(3719), - [sym_non_absurd_lambda_clause] = STATE(3720), - [sym_absurd_lambda_clause] = STATE(3720), - [sym_lambda_clause] = STATE(3721), - [sym_lambda_where_clauses] = STATE(3722), - [aux_sym__application_repeat1] = STATE(3723), - [sym_literal] = ACTIONS(4355), - [sym_set_n] = ACTIONS(4355), - [sym_name_at] = ACTIONS(4357), - [sym_qualified_name] = ACTIONS(4355), - [anon_sym__] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4361), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4363), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_Prop] = ACTIONS(4355), - [anon_sym_Set] = ACTIONS(4355), - [anon_sym_quote] = ACTIONS(4355), - [anon_sym_quoteTerm] = ACTIONS(4355), - [anon_sym_unquote] = ACTIONS(4355), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_LPAREN_PIPE] = ACTIONS(4367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), - [sym_catchall_pragma] = ACTIONS(4369), - }, - [2779] = { - [sym_binding_name] = STATE(3724), - [sym__application] = STATE(3725), + [3344] = { + [sym_binding_name] = STATE(4143), + [sym__application] = STATE(4144), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), [anon_sym_QMARK] = ACTIONS(408), [anon_sym_Prop] = ACTIONS(408), [anon_sym_Set] = ACTIONS(408), @@ -99933,354 +116774,361 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(408), [anon_sym_unquote] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(4353), [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2780] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4371), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [2781] = { - [sym_lambda_bindings] = STATE(3705), - [sym_untyped_bindings] = STATE(2781), - [sym_typed_bindings] = STATE(2781), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_LBRACE] = ACTIONS(4375), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4377), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_PIPE_RPAREN] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), - }, - [2782] = { - [sym_expr] = STATE(3722), - [sym__expr1] = STATE(3735), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(3736), - [sym_atomic_expr] = STATE(3737), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_tele_arrow] = STATE(3739), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1837), - [aux_sym__application_repeat1] = STATE(3740), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4383), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4389), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2273), - [anon_sym_forall] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), - }, - [2783] = { - [sym_rewrite_equations] = STATE(3742), - [sym_with_expressions] = STATE(3743), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_PIPE_RPAREN] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(1270), - [anon_sym_with] = ACTIONS(4395), + [3345] = { + [sym__layout_semicolon] = ACTIONS(1356), + [sym__layout_close_brace] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), }, - [2784] = { - [sym_where_clause] = STATE(3747), - [sym_rhs] = STATE(3748), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4397), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4399), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_PIPE_RPAREN] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4397), - [anon_sym_module] = ACTIONS(4401), - [anon_sym_with] = ACTIONS(170), + [3346] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(4702), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4704), }, - [2785] = { - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_where] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_in] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_PIPE_RPAREN] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - [anon_sym_COLON] = ACTIONS(178), - [anon_sym_module] = ACTIONS(178), - [anon_sym_with] = ACTIONS(178), + [3347] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(4706), + [sym_comment] = ACTIONS(86), }, - [2786] = { - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(180), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_where] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_in] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_PIPE_RPAREN] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), - [anon_sym_COLON] = ACTIONS(180), - [anon_sym_module] = ACTIONS(180), - [anon_sym_with] = ACTIONS(180), + [3348] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4702), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4708), }, - [2787] = { - [sym__expr1] = STATE(2783), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(2784), - [sym__declaration] = STATE(2785), - [sym_function_clause] = STATE(2786), - [aux_sym_source_file_repeat1] = STATE(3749), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), + [3349] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(4149), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [3350] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4702), + }, + [3351] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4710), + }, + [3352] = { + [sym_expr] = STATE(4147), + [sym__expr1] = STATE(3355), + [sym__application] = STATE(1473), + [sym__expr2] = STATE(1474), + [sym__atomic_exprs1] = STATE(3356), + [sym_atomic_expr] = STATE(1476), + [sym__atomic_expr_curly] = STATE(1477), + [sym__atomic_expr_no_curly] = STATE(1477), + [sym_tele_arrow] = STATE(3357), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1479), + [aux_sym__application_repeat1] = STATE(1480), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1829), + [sym_set_n] = ACTIONS(1829), + [sym_name_at] = ACTIONS(1831), + [sym_qualified_name] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1837), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1839), + [anon_sym_forall] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(1829), + [anon_sym_Prop] = ACTIONS(1829), + [anon_sym_Set] = ACTIONS(1829), + [anon_sym_quote] = ACTIONS(1829), + [anon_sym_quoteTerm] = ACTIONS(1829), + [anon_sym_unquote] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_LPAREN_PIPE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), + }, + [3353] = { + [sym__application] = STATE(4151), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(3897), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), }, - [2788] = { + [3354] = { + [sym__layout_semicolon] = ACTIONS(1360), + [sym__layout_close_brace] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4345), + [anon_sym_EQ] = ACTIONS(1360), }, - [2789] = { + [3355] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym__layout_close_brace] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(280), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4345), + [anon_sym_EQ] = ACTIONS(4712), }, - [2790] = { - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_in] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_PIPE_RPAREN] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), - [anon_sym_with] = ACTIONS(709), + [3356] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4712), + [anon_sym_PIPE] = ACTIONS(162), }, - [2791] = { - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_PIPE_RPAREN] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_with] = ACTIONS(729), + [3357] = { + [sym_expr] = STATE(4153), + [sym__expr1] = STATE(3355), + [sym__application] = STATE(1473), + [sym__expr2] = STATE(1474), + [sym__atomic_exprs1] = STATE(3356), + [sym_atomic_expr] = STATE(1476), + [sym__atomic_expr_curly] = STATE(1477), + [sym__atomic_expr_no_curly] = STATE(1477), + [sym_tele_arrow] = STATE(3357), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1479), + [aux_sym__application_repeat1] = STATE(1480), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1829), + [sym_set_n] = ACTIONS(1829), + [sym_name_at] = ACTIONS(1831), + [sym_qualified_name] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1837), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1839), + [anon_sym_forall] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(1829), + [anon_sym_Prop] = ACTIONS(1829), + [anon_sym_Set] = ACTIONS(1829), + [anon_sym_quote] = ACTIONS(1829), + [anon_sym_quoteTerm] = ACTIONS(1829), + [anon_sym_unquote] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_LPAREN_PIPE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), }, - [2792] = { + [3358] = { + [sym_expr] = STATE(4154), + [sym__expr1] = STATE(4155), + [sym__application] = STATE(3455), + [sym__expr2] = STATE(3456), + [sym__atomic_exprs1] = STATE(4156), + [sym_atomic_expr] = STATE(3458), + [sym__atomic_expr_curly] = STATE(3459), + [sym__atomic_expr_no_curly] = STATE(3459), + [sym_tele_arrow] = STATE(4157), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3461), + [aux_sym__application_repeat1] = STATE(3462), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3997), + [sym_set_n] = ACTIONS(3997), + [sym_name_at] = ACTIONS(3999), + [sym_qualified_name] = ACTIONS(3997), + [anon_sym__] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(4001), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(4007), + [anon_sym_forall] = ACTIONS(4009), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_Prop] = ACTIONS(3997), + [anon_sym_Set] = ACTIONS(3997), + [anon_sym_quote] = ACTIONS(3997), + [anon_sym_quoteTerm] = ACTIONS(3997), + [anon_sym_unquote] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(4013), + [anon_sym_LPAREN_PIPE] = ACTIONS(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + }, + [3359] = { + [sym_vopen] = STATE(4158), + [sym_declarations] = STATE(4159), + [sym__declarations0] = STATE(4160), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [3360] = { + [sym_anonymous_name] = STATE(4161), + [sym_name] = ACTIONS(4714), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), + }, + [3361] = { + [sym__layout_semicolon] = ACTIONS(2764), + [sym__layout_close_brace] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + }, + [3362] = { + [sym_where_clause] = STATE(4162), + [sym__layout_semicolon] = ACTIONS(2764), + [sym__layout_close_brace] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(3903), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(3907), + }, + [3363] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(2397), + [sym__declaration] = STATE(2398), + [sym_function_clause] = STATE(2399), + [aux_sym_source_file_repeat1] = STATE(3363), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(2766), + [sym__layout_close_brace] = ACTIONS(2766), + [sym_literal] = ACTIONS(4019), + [sym_set_n] = ACTIONS(4019), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(4022), + [sym_qualified_name] = ACTIONS(4019), + [anon_sym__] = ACTIONS(4019), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4025), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4028), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(4031), + [anon_sym_forall] = ACTIONS(4034), + [anon_sym_let] = ACTIONS(4037), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_Prop] = ACTIONS(4019), + [anon_sym_Set] = ACTIONS(4019), + [anon_sym_quote] = ACTIONS(4019), + [anon_sym_quoteTerm] = ACTIONS(4019), + [anon_sym_unquote] = ACTIONS(4019), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LPAREN_PIPE] = ACTIONS(4043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4019), + }, + [3364] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym__layout_close_brace] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [sym_comment] = ACTIONS(86), + }, + [3365] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), [anon_sym_SEMI] = ACTIONS(186), @@ -100294,10 +117142,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(186), [anon_sym_PIPE] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), [anon_sym_Prop] = ACTIONS(186), [anon_sym_Set] = ACTIONS(186), @@ -100306,12 +117152,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_PIPE_RPAREN] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), }, - [2793] = { + [3366] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), [anon_sym_SEMI] = ACTIONS(228), @@ -100325,10 +117170,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(228), [anon_sym_PIPE] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), [anon_sym_Prop] = ACTIONS(228), [anon_sym_Set] = ACTIONS(228), @@ -100337,67 +117180,285 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_PIPE_RPAREN] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), }, - [2794] = { - [anon_sym_RBRACE] = ACTIONS(4403), + [3367] = { + [anon_sym_RBRACE] = ACTIONS(4716), [sym_comment] = ACTIONS(86), }, - [2795] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4405), + [3368] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4718), [sym_comment] = ACTIONS(86), }, - [2796] = { - [anon_sym_LBRACE] = ACTIONS(4407), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4409), + [3369] = { [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_RPAREN] = ACTIONS(4718), }, - [2797] = { - [sym__application] = STATE(3756), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(3757), - [aux_sym__application_repeat1] = STATE(311), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(4413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [3370] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4718), + }, + [3371] = { + [anon_sym_RBRACE] = ACTIONS(4720), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4722), + }, + [3372] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4720), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4724), + }, + [3373] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4720), + }, + [3374] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4726), + }, + [3375] = { + [sym__layout_semicolon] = ACTIONS(1925), + [sym__layout_close_brace] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_DOT] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1925), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1925), + }, + [3376] = { + [sym_expr] = STATE(4169), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2798] = { - [sym__application] = STATE(3758), + [3377] = { + [sym__layout_semicolon] = ACTIONS(2366), + [sym__layout_close_brace] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [sym_comment] = ACTIONS(86), + }, + [3378] = { + [sym_expr] = STATE(4170), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [3379] = { + [sym_vclose] = STATE(4171), + [sym__layout_close_brace] = ACTIONS(4381), + [sym_comment] = ACTIONS(86), + }, + [3380] = { + [sym_expr] = STATE(4172), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [3381] = { + [anon_sym_RBRACE] = ACTIONS(3915), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3917), + }, + [3382] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_rewrite] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [3383] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_rewrite] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [3384] = { + [sym__application] = STATE(4173), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [3385] = { + [sym__application] = STATE(4174), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), [sym_name_at] = ACTIONS(410), @@ -100406,7 +117467,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(410), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4413), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(416), [anon_sym_forall] = ACTIONS(418), @@ -100421,62 +117481,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2799] = { - [sym__application] = STATE(3767), - [sym__expr2] = STATE(1850), - [sym_atomic_expr] = STATE(3768), - [sym__atomic_expr_curly] = STATE(3769), - [sym__atomic_expr_no_curly] = STATE(3769), - [sym_non_absurd_lambda_clause] = STATE(3770), - [sym_absurd_lambda_clause] = STATE(3770), - [sym_lambda_clause] = STATE(3771), - [sym_lambda_where_clauses] = STATE(3772), - [aux_sym__application_repeat1] = STATE(3773), - [sym_literal] = ACTIONS(4415), - [sym_set_n] = ACTIONS(4415), - [sym_name_at] = ACTIONS(4417), - [sym_qualified_name] = ACTIONS(4415), - [anon_sym__] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4421), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4423), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4415), - [anon_sym_Prop] = ACTIONS(4415), - [anon_sym_Set] = ACTIONS(4415), - [anon_sym_quote] = ACTIONS(4415), - [anon_sym_quoteTerm] = ACTIONS(4415), - [anon_sym_unquote] = ACTIONS(4415), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_LPAREN_PIPE] = ACTIONS(4427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4415), - [sym_catchall_pragma] = ACTIONS(4429), - }, - [2800] = { - [sym_binding_name] = STATE(3774), - [sym__application] = STATE(3775), + [3386] = { + [sym_binding_name] = STATE(4175), + [sym__application] = STATE(4176), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), [anon_sym_QMARK] = ACTIONS(408), [anon_sym_Prop] = ACTIONS(408), [anon_sym_Set] = ACTIONS(408), @@ -100484,314 +117509,670 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(408), [anon_sym_unquote] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(4413), [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2801] = { + [3387] = { + [sym__layout_semicolon] = ACTIONS(1356), + [sym__layout_close_brace] = ACTIONS(1356), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + [anon_sym_rewrite] = ACTIONS(882), + [anon_sym_with] = ACTIONS(882), + }, + [3388] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(4728), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4730), + }, + [3389] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(4732), + [sym_comment] = ACTIONS(86), + }, + [3390] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4728), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4734), + }, + [3391] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(4181), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [3392] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4728), + }, + [3393] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4736), + }, + [3394] = { + [sym_expr] = STATE(4179), + [sym__expr1] = STATE(3404), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(3405), + [sym_atomic_expr] = STATE(3406), + [sym__atomic_expr_curly] = STATE(3407), + [sym__atomic_expr_no_curly] = STATE(3407), + [sym_tele_arrow] = STATE(3408), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(3409), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3947), + [sym_set_n] = ACTIONS(3947), + [sym_name_at] = ACTIONS(3949), + [sym_qualified_name] = ACTIONS(3947), + [anon_sym__] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3955), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_Prop] = ACTIONS(3947), + [anon_sym_Set] = ACTIONS(3947), + [anon_sym_quote] = ACTIONS(3947), + [anon_sym_quoteTerm] = ACTIONS(3947), + [anon_sym_unquote] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3947), + }, + [3395] = { + [sym__application] = STATE(4183), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(3935), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), }, - [2802] = { - [sym_lambda_bindings] = STATE(3755), - [sym_untyped_bindings] = STATE(2802), - [sym_typed_bindings] = STATE(2802), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(4433), - [anon_sym_DOT_DOT] = ACTIONS(4433), - [anon_sym_LBRACE] = ACTIONS(4435), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4437), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_PIPE_RPAREN] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [3396] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [anon_sym_SEMI] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_rewrite] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), }, - [2803] = { - [sym_expr] = STATE(3772), - [sym__expr1] = STATE(3785), - [sym__application] = STATE(1849), - [sym__expr2] = STATE(1850), - [sym__atomic_exprs1] = STATE(3786), - [sym_atomic_expr] = STATE(3787), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_tele_arrow] = STATE(3789), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1853), - [aux_sym__application_repeat1] = STATE(3790), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(4443), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4449), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2291), - [anon_sym_forall] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), + [3397] = { + [sym_atomic_expr] = STATE(4187), + [sym__atomic_expr_curly] = STATE(3407), + [sym__atomic_expr_no_curly] = STATE(3407), + [sym_literal] = ACTIONS(3947), + [sym_set_n] = ACTIONS(3947), + [sym_name_at] = ACTIONS(3949), + [sym_qualified_name] = ACTIONS(3947), + [anon_sym__] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4740), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_Prop] = ACTIONS(3947), + [anon_sym_Set] = ACTIONS(3947), + [anon_sym_quote] = ACTIONS(3947), + [anon_sym_quoteTerm] = ACTIONS(3947), + [anon_sym_unquote] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_LPAREN_PIPE] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3947), }, - [2804] = { - [sym_where_clause] = STATE(3794), - [sym_rhs] = STATE(3795), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [3398] = { + [sym_atomic_expr] = STATE(4187), + [sym__atomic_expr_curly] = STATE(3407), + [sym__atomic_expr_no_curly] = STATE(3407), + [sym_literal] = ACTIONS(3947), + [sym_set_n] = ACTIONS(3947), + [sym_name_at] = ACTIONS(3949), + [sym_qualified_name] = ACTIONS(3947), + [anon_sym__] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(4744), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4746), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_Prop] = ACTIONS(3947), + [anon_sym_Set] = ACTIONS(3947), + [anon_sym_quote] = ACTIONS(3947), + [anon_sym_quoteTerm] = ACTIONS(3947), + [anon_sym_unquote] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(4748), + [anon_sym_LPAREN_PIPE] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3947), + }, + [3399] = { + [sym_expr] = STATE(4192), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(4750), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4455), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4457), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_PIPE_RPAREN] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4455), - [anon_sym_module] = ACTIONS(4459), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2805] = { - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [3400] = { + [sym_expr] = STATE(4193), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4752), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_where] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_in] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_PIPE_RPAREN] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - [anon_sym_COLON] = ACTIONS(178), - [anon_sym_module] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [3401] = { + [sym_expr] = STATE(4194), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(4752), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2806] = { - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [3402] = { + [sym_expr] = STATE(4195), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(180), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_where] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_in] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_PIPE_RPAREN] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), - [anon_sym_COLON] = ACTIONS(180), - [anon_sym_module] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [2807] = { - [sym__expr1] = STATE(454), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(2804), - [sym__declaration] = STATE(2805), - [sym_function_clause] = STATE(2806), - [aux_sym_source_file_repeat1] = STATE(3796), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [3403] = { + [sym__layout_semicolon] = ACTIONS(1360), + [sym__layout_close_brace] = ACTIONS(1360), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_rewrite] = ACTIONS(1038), + [anon_sym_with] = ACTIONS(1038), }, - [2808] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4405), + [3404] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym__layout_close_brace] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_rewrite] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), }, - [2809] = { + [3405] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4405), + [anon_sym_DASH_GT] = ACTIONS(4756), + [anon_sym_PIPE] = ACTIONS(162), }, - [2810] = { - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_in] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_PIPE_RPAREN] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), + [3406] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_rewrite] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [2811] = { - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_PIPE_RPAREN] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), + [3407] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_rewrite] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [2812] = { - [sym_expr] = STATE(2820), + [3408] = { + [sym_expr] = STATE(4197), + [sym__expr1] = STATE(3404), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(3405), + [sym_atomic_expr] = STATE(3406), + [sym__atomic_expr_curly] = STATE(3407), + [sym__atomic_expr_no_curly] = STATE(3407), + [sym_tele_arrow] = STATE(3408), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(3409), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3947), + [sym_set_n] = ACTIONS(3947), + [sym_name_at] = ACTIONS(3949), + [sym_qualified_name] = ACTIONS(3947), + [anon_sym__] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3955), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_Prop] = ACTIONS(3947), + [anon_sym_Set] = ACTIONS(3947), + [anon_sym_quote] = ACTIONS(3947), + [anon_sym_quoteTerm] = ACTIONS(3947), + [anon_sym_unquote] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3947), + }, + [3409] = { + [sym__expr2] = STATE(2455), + [sym_atomic_expr] = STATE(3406), + [sym__atomic_expr_curly] = STATE(3407), + [sym__atomic_expr_no_curly] = STATE(3407), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(3947), + [sym_set_n] = ACTIONS(3947), + [sym_name_at] = ACTIONS(3949), + [sym_qualified_name] = ACTIONS(3947), + [anon_sym__] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4740), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_Prop] = ACTIONS(3947), + [anon_sym_Set] = ACTIONS(3947), + [anon_sym_quote] = ACTIONS(3947), + [anon_sym_quoteTerm] = ACTIONS(3947), + [anon_sym_unquote] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_LPAREN_PIPE] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3947), + }, + [3410] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [anon_sym_SEMI] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), + }, + [3411] = { + [sym_atomic_expr] = STATE(4198), + [sym__atomic_expr_curly] = STATE(3423), + [sym__atomic_expr_no_curly] = STATE(3423), + [sym_literal] = ACTIONS(3961), + [sym_set_n] = ACTIONS(3961), + [sym_name_at] = ACTIONS(3963), + [sym_qualified_name] = ACTIONS(3961), + [anon_sym__] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3967), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_Prop] = ACTIONS(3961), + [anon_sym_Set] = ACTIONS(3961), + [anon_sym_quote] = ACTIONS(3961), + [anon_sym_quoteTerm] = ACTIONS(3961), + [anon_sym_unquote] = ACTIONS(3961), + [anon_sym_LPAREN] = ACTIONS(3975), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3961), + }, + [3412] = { + [sym_expr] = STATE(4200), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -100812,7 +118193,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(4758), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -100828,8 +118209,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2813] = { - [sym_expr] = STATE(2821), + [3413] = { + [sym_expr] = STATE(4201), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -100851,7 +118232,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3327), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4760), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -100866,8 +118247,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2814] = { - [sym_expr] = STATE(2834), + [3414] = { + [sym_lambda_bindings] = STATE(4207), + [sym_untyped_bindings] = STATE(4208), + [sym_typed_bindings] = STATE(4208), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_DOT_DOT] = ACTIONS(4764), + [anon_sym_LBRACE] = ACTIONS(4766), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4768), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(4770), + [anon_sym_LPAREN] = ACTIONS(4772), + }, + [3415] = { + [sym_forall_bindings] = STATE(4209), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [3416] = { + [sym__expr1] = STATE(3747), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(3748), + [sym__declaration] = STATE(3749), + [sym_function_clause] = STATE(3750), + [aux_sym_source_file_repeat1] = STATE(4210), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), + }, + [3417] = { + [sym_expr] = STATE(4211), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -100900,636 +118342,787 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3327), + [anon_sym_RPAREN] = ACTIONS(4760), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2815] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [3418] = { + [sym_expr] = STATE(4212), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_PIPE_RPAREN] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [2816] = { - [sym_expr] = STATE(2820), + [3419] = { + [sym__layout_semicolon] = ACTIONS(3747), + [sym__layout_close_brace] = ACTIONS(3747), + [sym_literal] = ACTIONS(1194), + [sym_set_n] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1194), + [sym_name_at] = ACTIONS(1194), + [sym_qualified_name] = ACTIONS(1194), + [anon_sym__] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1194), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1194), + [anon_sym_where] = ACTIONS(1194), + [anon_sym_forall] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_in] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(1194), + [anon_sym_Prop] = ACTIONS(1194), + [anon_sym_Set] = ACTIONS(1194), + [anon_sym_quote] = ACTIONS(1194), + [anon_sym_quoteTerm] = ACTIONS(1194), + [anon_sym_unquote] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LPAREN_PIPE] = ACTIONS(1194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), + }, + [3420] = { + [sym__layout_semicolon] = ACTIONS(284), + [sym__layout_close_brace] = ACTIONS(284), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + [anon_sym_with] = ACTIONS(158), + }, + [3421] = { + [sym__layout_semicolon] = ACTIONS(286), + [sym__layout_close_brace] = ACTIONS(286), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [anon_sym_SEMI] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + [anon_sym_with] = ACTIONS(160), + }, + [3422] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), + }, + [3423] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), + }, + [3424] = { + [sym__application] = STATE(4213), + [sym__expr2] = STATE(3421), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(3422), + [sym__atomic_expr_curly] = STATE(3423), + [sym__atomic_expr_no_curly] = STATE(3423), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(3425), + [sym_literal] = ACTIONS(3961), + [sym_set_n] = ACTIONS(3961), + [sym_name_at] = ACTIONS(3963), + [sym_qualified_name] = ACTIONS(3961), + [anon_sym__] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3967), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3969), + [anon_sym_forall] = ACTIONS(3971), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_Prop] = ACTIONS(3961), + [anon_sym_Set] = ACTIONS(3961), + [anon_sym_quote] = ACTIONS(3961), + [anon_sym_quoteTerm] = ACTIONS(3961), + [anon_sym_unquote] = ACTIONS(3961), + [anon_sym_LPAREN] = ACTIONS(3975), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3961), + }, + [3425] = { + [sym__expr2] = STATE(4214), + [sym_atomic_expr] = STATE(3422), + [sym__atomic_expr_curly] = STATE(3423), + [sym__atomic_expr_no_curly] = STATE(3423), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(3961), + [sym_set_n] = ACTIONS(3961), + [sym_name_at] = ACTIONS(3963), + [sym_qualified_name] = ACTIONS(3961), + [anon_sym__] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3967), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3969), + [anon_sym_forall] = ACTIONS(3971), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_Prop] = ACTIONS(3961), + [anon_sym_Set] = ACTIONS(3961), + [anon_sym_quote] = ACTIONS(3961), + [anon_sym_quoteTerm] = ACTIONS(3961), + [anon_sym_unquote] = ACTIONS(3961), + [anon_sym_LPAREN] = ACTIONS(3975), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3961), + }, + [3426] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [anon_sym_SEMI] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + }, + [3427] = { + [sym_atomic_expr] = STATE(4215), + [sym__atomic_expr_curly] = STATE(3439), + [sym__atomic_expr_no_curly] = STATE(3439), + [sym_literal] = ACTIONS(3979), + [sym_set_n] = ACTIONS(3979), + [sym_name_at] = ACTIONS(3981), + [sym_qualified_name] = ACTIONS(3979), + [anon_sym__] = ACTIONS(3979), + [anon_sym_DOT] = ACTIONS(3981), + [anon_sym_LBRACE] = ACTIONS(3983), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3985), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_Prop] = ACTIONS(3979), + [anon_sym_Set] = ACTIONS(3979), + [anon_sym_quote] = ACTIONS(3979), + [anon_sym_quoteTerm] = ACTIONS(3979), + [anon_sym_unquote] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3993), + [anon_sym_LPAREN_PIPE] = ACTIONS(3995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), + }, + [3428] = { + [sym_expr] = STATE(4217), [sym__expr1] = STATE(38), - [sym__application] = STATE(557), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(4774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2817] = { - [sym_expr] = STATE(2821), + [3429] = { + [sym_expr] = STATE(4218), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(61), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4776), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2818] = { - [sym_expr] = STATE(2834), + [3430] = { + [sym_lambda_bindings] = STATE(4224), + [sym_untyped_bindings] = STATE(4225), + [sym_typed_bindings] = STATE(4225), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_LBRACE] = ACTIONS(4782), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4784), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(4786), + [anon_sym_LPAREN] = ACTIONS(4788), + }, + [3431] = { + [sym_forall_bindings] = STATE(4226), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [3432] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(3768), + [sym__declaration] = STATE(3769), + [sym_function_clause] = STATE(3770), + [aux_sym_source_file_repeat1] = STATE(4227), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), + }, + [3433] = { + [sym_expr] = STATE(4228), [sym__expr1] = STATE(110), - [sym__application] = STATE(559), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(3327), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [2819] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_PIPE_RPAREN] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - }, - [2820] = { - [anon_sym_RBRACE] = ACTIONS(4461), - [sym_comment] = ACTIONS(86), - }, - [2821] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4463), - [sym_comment] = ACTIONS(86), - }, - [2822] = { - [anon_sym_LBRACE] = ACTIONS(4465), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4467), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(4469), - }, - [2823] = { - [sym__application] = STATE(3803), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(306), - [sym__atomic_expr_curly] = STATE(307), - [sym__atomic_expr_no_curly] = STATE(307), - [sym_non_absurd_lambda_clause] = STATE(308), - [sym_absurd_lambda_clause] = STATE(309), - [sym_lambda_clauses] = STATE(3804), - [aux_sym__application_repeat1] = STATE(311), - [sym_literal] = ACTIONS(384), - [sym_set_n] = ACTIONS(384), - [sym_name_at] = ACTIONS(386), - [sym_qualified_name] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LBRACE_LBRACE] = ACTIONS(392), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_forall] = ACTIONS(398), - [anon_sym_let] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_Prop] = ACTIONS(384), - [anon_sym_Set] = ACTIONS(384), - [anon_sym_quote] = ACTIONS(384), - [anon_sym_quoteTerm] = ACTIONS(384), - [anon_sym_unquote] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LPAREN_PIPE] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [sym_catchall_pragma] = ACTIONS(406), - }, - [2824] = { - [sym__application] = STATE(3805), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4471), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [2825] = { - [sym__application] = STATE(3814), - [sym__expr2] = STATE(1869), - [sym_atomic_expr] = STATE(3815), - [sym__atomic_expr_curly] = STATE(3816), - [sym__atomic_expr_no_curly] = STATE(3816), - [sym_non_absurd_lambda_clause] = STATE(3817), - [sym_absurd_lambda_clause] = STATE(3817), - [sym_lambda_clause] = STATE(3818), - [sym_lambda_where_clauses] = STATE(3819), - [aux_sym__application_repeat1] = STATE(3820), - [sym_literal] = ACTIONS(4473), - [sym_set_n] = ACTIONS(4473), - [sym_name_at] = ACTIONS(4475), - [sym_qualified_name] = ACTIONS(4473), - [anon_sym__] = ACTIONS(4473), - [anon_sym_DOT] = ACTIONS(4475), - [anon_sym_LBRACE] = ACTIONS(4477), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4479), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4481), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(4473), - [anon_sym_Prop] = ACTIONS(4473), - [anon_sym_Set] = ACTIONS(4473), - [anon_sym_quote] = ACTIONS(4473), - [anon_sym_quoteTerm] = ACTIONS(4473), - [anon_sym_unquote] = ACTIONS(4473), - [anon_sym_LPAREN] = ACTIONS(4483), - [anon_sym_LPAREN_PIPE] = ACTIONS(4485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4473), - [sym_catchall_pragma] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(4776), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2826] = { - [sym_binding_name] = STATE(3821), - [sym__application] = STATE(3822), + [3434] = { + [sym_expr] = STATE(4229), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(4471), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [2827] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4489), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [2828] = { - [sym_lambda_bindings] = STATE(3802), - [sym_untyped_bindings] = STATE(2828), - [sym_typed_bindings] = STATE(2828), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(4491), - [anon_sym_DOT_DOT] = ACTIONS(4491), - [anon_sym_LBRACE] = ACTIONS(4493), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4495), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_PIPE_RPAREN] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [3435] = { + [sym__layout_semicolon] = ACTIONS(3765), + [sym__layout_close_brace] = ACTIONS(3765), + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), }, - [2829] = { - [sym_expr] = STATE(3819), - [sym__expr1] = STATE(1867), - [sym__application] = STATE(1868), - [sym__expr2] = STATE(1869), - [sym__atomic_exprs1] = STATE(1870), - [sym_atomic_expr] = STATE(1871), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_tele_arrow] = STATE(1873), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1874), - [aux_sym__application_repeat1] = STATE(1875), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(2303), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2309), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2311), - [anon_sym_forall] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), + [3436] = { + [sym__layout_semicolon] = ACTIONS(284), + [sym__layout_close_brace] = ACTIONS(284), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), }, - [2830] = { - [sym_where_clause] = STATE(3827), - [sym_rhs] = STATE(3828), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [3437] = { + [sym__layout_semicolon] = ACTIONS(286), + [sym__layout_close_brace] = ACTIONS(286), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [anon_sym_SEMI] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1274), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4499), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_PIPE_RPAREN] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(1274), - [anon_sym_module] = ACTIONS(4501), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), }, - [2831] = { - [sym_literal] = ACTIONS(178), - [sym_set_n] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(178), - [sym_name_at] = ACTIONS(178), - [sym_qualified_name] = ACTIONS(178), - [anon_sym__] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(178), - [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [3438] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_BSLASH] = ACTIONS(178), - [anon_sym_where] = ACTIONS(178), - [anon_sym_forall] = ACTIONS(178), - [anon_sym_let] = ACTIONS(178), - [anon_sym_in] = ACTIONS(178), - [anon_sym_QMARK] = ACTIONS(178), - [anon_sym_Prop] = ACTIONS(178), - [anon_sym_Set] = ACTIONS(178), - [anon_sym_quote] = ACTIONS(178), - [anon_sym_quoteTerm] = ACTIONS(178), - [anon_sym_unquote] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_LPAREN_PIPE] = ACTIONS(178), - [anon_sym_PIPE_RPAREN] = ACTIONS(178), - [anon_sym_DOT_DOT_DOT] = ACTIONS(178), - [anon_sym_module] = ACTIONS(178), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), }, - [2832] = { - [sym_literal] = ACTIONS(180), - [sym_set_n] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(180), - [sym_name_at] = ACTIONS(180), - [sym_qualified_name] = ACTIONS(180), - [anon_sym__] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [3439] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(180), - [anon_sym_BSLASH] = ACTIONS(180), - [anon_sym_where] = ACTIONS(180), - [anon_sym_forall] = ACTIONS(180), - [anon_sym_let] = ACTIONS(180), - [anon_sym_in] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(180), - [anon_sym_Prop] = ACTIONS(180), - [anon_sym_Set] = ACTIONS(180), - [anon_sym_quote] = ACTIONS(180), - [anon_sym_quoteTerm] = ACTIONS(180), - [anon_sym_unquote] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_LPAREN_PIPE] = ACTIONS(180), - [anon_sym_PIPE_RPAREN] = ACTIONS(180), - [anon_sym_DOT_DOT_DOT] = ACTIONS(180), - [anon_sym_module] = ACTIONS(180), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), }, - [2833] = { - [sym__expr1] = STATE(454), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), + [3440] = { + [sym__application] = STATE(4230), + [sym__expr2] = STATE(3437), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(2830), - [sym__declaration] = STATE(2831), - [sym_function_clause] = STATE(2832), - [aux_sym_source_file_repeat1] = STATE(3829), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [2834] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4463), - }, - [2835] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4463), + [sym_atomic_expr] = STATE(3438), + [sym__atomic_expr_curly] = STATE(3439), + [sym__atomic_expr_no_curly] = STATE(3439), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(3441), + [sym_literal] = ACTIONS(3979), + [sym_set_n] = ACTIONS(3979), + [sym_name_at] = ACTIONS(3981), + [sym_qualified_name] = ACTIONS(3979), + [anon_sym__] = ACTIONS(3979), + [anon_sym_DOT] = ACTIONS(3981), + [anon_sym_LBRACE] = ACTIONS(3983), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3985), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3987), + [anon_sym_forall] = ACTIONS(3989), + [anon_sym_let] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_Prop] = ACTIONS(3979), + [anon_sym_Set] = ACTIONS(3979), + [anon_sym_quote] = ACTIONS(3979), + [anon_sym_quoteTerm] = ACTIONS(3979), + [anon_sym_unquote] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3993), + [anon_sym_LPAREN_PIPE] = ACTIONS(3995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), }, - [2836] = { - [sym_expr] = STATE(3830), - [sym__expr1] = STATE(1867), - [sym__application] = STATE(1868), - [sym__expr2] = STATE(1869), - [sym__atomic_exprs1] = STATE(1870), - [sym_atomic_expr] = STATE(1871), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_tele_arrow] = STATE(1873), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1874), - [aux_sym__application_repeat1] = STATE(1875), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(2303), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2309), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2311), - [anon_sym_forall] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), + [3441] = { + [sym__expr2] = STATE(4231), + [sym_atomic_expr] = STATE(3438), + [sym__atomic_expr_curly] = STATE(3439), + [sym__atomic_expr_no_curly] = STATE(3439), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(3979), + [sym_set_n] = ACTIONS(3979), + [sym_name_at] = ACTIONS(3981), + [sym_qualified_name] = ACTIONS(3979), + [anon_sym__] = ACTIONS(3979), + [anon_sym_DOT] = ACTIONS(3981), + [anon_sym_LBRACE] = ACTIONS(3983), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3985), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3987), + [anon_sym_forall] = ACTIONS(3989), + [anon_sym_let] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(3979), + [anon_sym_Prop] = ACTIONS(3979), + [anon_sym_Set] = ACTIONS(3979), + [anon_sym_quote] = ACTIONS(3979), + [anon_sym_quoteTerm] = ACTIONS(3979), + [anon_sym_unquote] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3993), + [anon_sym_LPAREN_PIPE] = ACTIONS(3995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), }, - [2837] = { - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_PIPE_RPAREN] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), + [3442] = { + [sym__layout_semicolon] = ACTIONS(3767), + [sym__layout_close_brace] = ACTIONS(3767), + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), }, - [2838] = { + [3443] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -101540,6 +119133,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), @@ -101555,149 +119149,232 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_PIPE_RPAREN] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), [anon_sym_module] = ACTIONS(30), }, - [2839] = { - [sym_atomic_expr] = STATE(3831), - [sym__atomic_expr_curly] = STATE(2846), - [sym__atomic_expr_no_curly] = STATE(2846), - [sym_literal] = ACTIONS(3345), - [sym_set_n] = ACTIONS(3345), - [sym_name_at] = ACTIONS(3347), - [sym_qualified_name] = ACTIONS(3345), - [anon_sym__] = ACTIONS(3345), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3351), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3345), - [anon_sym_Prop] = ACTIONS(3345), - [anon_sym_Set] = ACTIONS(3345), - [anon_sym_quote] = ACTIONS(3345), - [anon_sym_quoteTerm] = ACTIONS(3345), - [anon_sym_unquote] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_LPAREN_PIPE] = ACTIONS(3355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3345), + [3444] = { + [sym_atomic_expr] = STATE(4235), + [sym__atomic_expr_curly] = STATE(3459), + [sym__atomic_expr_no_curly] = STATE(3459), + [sym_literal] = ACTIONS(3997), + [sym_set_n] = ACTIONS(3997), + [sym_name_at] = ACTIONS(3999), + [sym_qualified_name] = ACTIONS(3997), + [anon_sym__] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_LBRACE] = ACTIONS(4790), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4792), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_Prop] = ACTIONS(3997), + [anon_sym_Set] = ACTIONS(3997), + [anon_sym_quote] = ACTIONS(3997), + [anon_sym_quoteTerm] = ACTIONS(3997), + [anon_sym_unquote] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_LPAREN_PIPE] = ACTIONS(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), }, - [2840] = { - [sym_expr] = STATE(3833), + [3445] = { + [sym_atomic_expr] = STATE(4235), + [sym__atomic_expr_curly] = STATE(3459), + [sym__atomic_expr_no_curly] = STATE(3459), + [sym_literal] = ACTIONS(3997), + [sym_set_n] = ACTIONS(3997), + [sym_name_at] = ACTIONS(3999), + [sym_qualified_name] = ACTIONS(3997), + [anon_sym__] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4798), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_Prop] = ACTIONS(3997), + [anon_sym_Set] = ACTIONS(3997), + [anon_sym_quote] = ACTIONS(3997), + [anon_sym_quoteTerm] = ACTIONS(3997), + [anon_sym_unquote] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(4800), + [anon_sym_LPAREN_PIPE] = ACTIONS(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + }, + [3446] = { + [sym_expr] = STATE(4240), [sym__expr1] = STATE(38), - [sym__application] = STATE(39), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(4503), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2841] = { - [sym_expr] = STATE(3834), + [3447] = { + [sym_expr] = STATE(4241), [sym__expr1] = STATE(60), - [sym__application] = STATE(61), + [sym__application] = STATE(185), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), + [aux_sym__application_repeat1] = STATE(188), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4804), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [2842] = { - [sym_expr] = STATE(3835), + [3448] = { + [sym_lambda_bindings] = STATE(4247), + [sym_untyped_bindings] = STATE(4248), + [sym_typed_bindings] = STATE(4248), + [anon_sym_DOT] = ACTIONS(4806), + [anon_sym_DOT_DOT] = ACTIONS(4808), + [anon_sym_LBRACE] = ACTIONS(4810), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4812), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(4814), + [anon_sym_LPAREN] = ACTIONS(4816), + }, + [3449] = { + [sym_forall_bindings] = STATE(4249), + [sym_untyped_bindings] = STATE(81), + [sym_typed_bindings] = STATE(81), + [sym_typed_untyped_bindings1] = STATE(82), + [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), + [anon_sym_DOT] = ACTIONS(92), + [anon_sym_DOT_DOT] = ACTIONS(94), + [anon_sym_LBRACE] = ACTIONS(96), + [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(100), + }, + [3450] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(3794), + [sym__declaration] = STATE(3795), + [sym_function_clause] = STATE(3796), + [aux_sym_source_file_repeat1] = STATE(4250), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), + }, + [3451] = { + [sym_expr] = STATE(4251), [sym__expr1] = STATE(110), - [sym__application] = STATE(39), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(4505), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(4804), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2843] = { - [sym_expr] = STATE(3836), + [3452] = { + [sym_expr] = STATE(4252), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -101733,309 +119410,1635 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [2844] = { - [sym_literal] = ACTIONS(709), - [sym_set_n] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [sym_name_at] = ACTIONS(709), - [sym_qualified_name] = ACTIONS(709), - [anon_sym__] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(709), - [anon_sym_LBRACE_LBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_where] = ACTIONS(709), - [anon_sym_forall] = ACTIONS(709), - [anon_sym_let] = ACTIONS(709), - [anon_sym_in] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_Prop] = ACTIONS(709), - [anon_sym_Set] = ACTIONS(709), - [anon_sym_quote] = ACTIONS(709), - [anon_sym_quoteTerm] = ACTIONS(709), - [anon_sym_unquote] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_LPAREN_PIPE] = ACTIONS(709), - [anon_sym_PIPE_RPAREN] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), + [3453] = { + [sym__layout_semicolon] = ACTIONS(3785), + [sym__layout_close_brace] = ACTIONS(3785), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + }, + [3454] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym__layout_close_brace] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4818), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [3455] = { + [sym__layout_semicolon] = ACTIONS(284), + [sym__layout_close_brace] = ACTIONS(284), + [sym_literal] = ACTIONS(158), + [sym_set_n] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [sym_name_at] = ACTIONS(158), + [sym_qualified_name] = ACTIONS(158), + [anon_sym__] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(158), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_BSLASH] = ACTIONS(158), + [anon_sym_where] = ACTIONS(158), + [anon_sym_forall] = ACTIONS(158), + [anon_sym_let] = ACTIONS(158), + [anon_sym_in] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(158), + [anon_sym_Prop] = ACTIONS(158), + [anon_sym_Set] = ACTIONS(158), + [anon_sym_quote] = ACTIONS(158), + [anon_sym_quoteTerm] = ACTIONS(158), + [anon_sym_unquote] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN_PIPE] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(158), + [anon_sym_module] = ACTIONS(158), + }, + [3456] = { + [sym__layout_semicolon] = ACTIONS(286), + [sym__layout_close_brace] = ACTIONS(286), + [sym_literal] = ACTIONS(160), + [sym_set_n] = ACTIONS(160), + [anon_sym_SEMI] = ACTIONS(160), + [sym_name_at] = ACTIONS(160), + [sym_qualified_name] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE] = ACTIONS(160), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_where] = ACTIONS(160), + [anon_sym_forall] = ACTIONS(160), + [anon_sym_let] = ACTIONS(160), + [anon_sym_in] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_Prop] = ACTIONS(160), + [anon_sym_Set] = ACTIONS(160), + [anon_sym_quote] = ACTIONS(160), + [anon_sym_quoteTerm] = ACTIONS(160), + [anon_sym_unquote] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LPAREN_PIPE] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(160), + [anon_sym_module] = ACTIONS(160), + }, + [3457] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4820), + [anon_sym_PIPE] = ACTIONS(162), + }, + [3458] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_module] = ACTIONS(164), + }, + [3459] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + }, + [3460] = { + [sym_expr] = STATE(4254), + [sym__expr1] = STATE(3454), + [sym__application] = STATE(3455), + [sym__expr2] = STATE(3456), + [sym__atomic_exprs1] = STATE(3457), + [sym_atomic_expr] = STATE(3458), + [sym__atomic_expr_curly] = STATE(3459), + [sym__atomic_expr_no_curly] = STATE(3459), + [sym_tele_arrow] = STATE(3460), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3461), + [aux_sym__application_repeat1] = STATE(3462), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3997), + [sym_set_n] = ACTIONS(3997), + [sym_name_at] = ACTIONS(3999), + [sym_qualified_name] = ACTIONS(3997), + [anon_sym__] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(4001), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(4007), + [anon_sym_forall] = ACTIONS(4009), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_Prop] = ACTIONS(3997), + [anon_sym_Set] = ACTIONS(3997), + [anon_sym_quote] = ACTIONS(3997), + [anon_sym_quoteTerm] = ACTIONS(3997), + [anon_sym_unquote] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(4013), + [anon_sym_LPAREN_PIPE] = ACTIONS(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + }, + [3461] = { + [sym__application] = STATE(4261), + [sym__expr2] = STATE(3456), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(4262), + [sym__atomic_expr_curly] = STATE(4263), + [sym__atomic_expr_no_curly] = STATE(4263), + [aux_sym__expr1_repeat1] = STATE(145), + [aux_sym__application_repeat1] = STATE(4264), + [sym_literal] = ACTIONS(4822), + [sym_set_n] = ACTIONS(4822), + [sym_name_at] = ACTIONS(4824), + [sym_qualified_name] = ACTIONS(4822), + [anon_sym__] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4826), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4828), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(4007), + [anon_sym_forall] = ACTIONS(4009), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_QMARK] = ACTIONS(4822), + [anon_sym_Prop] = ACTIONS(4822), + [anon_sym_Set] = ACTIONS(4822), + [anon_sym_quote] = ACTIONS(4822), + [anon_sym_quoteTerm] = ACTIONS(4822), + [anon_sym_unquote] = ACTIONS(4822), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_LPAREN_PIPE] = ACTIONS(4832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4822), + }, + [3462] = { + [sym__expr2] = STATE(4265), + [sym_atomic_expr] = STATE(3458), + [sym__atomic_expr_curly] = STATE(3459), + [sym__atomic_expr_no_curly] = STATE(3459), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(3997), + [sym_set_n] = ACTIONS(3997), + [sym_name_at] = ACTIONS(3999), + [sym_qualified_name] = ACTIONS(3997), + [anon_sym__] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_LBRACE] = ACTIONS(4790), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4792), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(4007), + [anon_sym_forall] = ACTIONS(4009), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_Prop] = ACTIONS(3997), + [anon_sym_Set] = ACTIONS(3997), + [anon_sym_quote] = ACTIONS(3997), + [anon_sym_quoteTerm] = ACTIONS(3997), + [anon_sym_unquote] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_LPAREN_PIPE] = ACTIONS(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + }, + [3463] = { + [sym_vclose] = STATE(4267), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(4268), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(4834), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [3464] = { + [sym__layout_semicolon] = ACTIONS(3793), + [sym__layout_close_brace] = ACTIONS(3793), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + }, + [3465] = { + [sym__layout_semicolon] = ACTIONS(3795), + [sym__layout_close_brace] = ACTIONS(3795), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + }, + [3466] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(4836), + }, + [3467] = { + [sym__layout_semicolon] = ACTIONS(3799), + [sym__layout_close_brace] = ACTIONS(3799), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + }, + [3468] = { + [sym__layout_semicolon] = ACTIONS(3861), + [sym__layout_close_brace] = ACTIONS(3861), + [anon_sym_SEMI] = ACTIONS(3861), + [sym_comment] = ACTIONS(86), + }, + [3469] = { + [sym_expr] = STATE(1086), + [sym__expr1] = STATE(3470), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(3471), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(3472), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1528), + [aux_sym__application_repeat1] = STATE(1529), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(1889), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1893), + [anon_sym_forall] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [3470] = { + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(4838), + [anon_sym_COLON] = ACTIONS(280), + }, + [3471] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4838), + [anon_sym_PIPE] = ACTIONS(162), + }, + [3472] = { + [sym_expr] = STATE(218), + [sym__expr1] = STATE(3470), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(3471), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(3472), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1528), + [aux_sym__application_repeat1] = STATE(1529), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(1889), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1893), + [anon_sym_forall] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [3473] = { + [sym_expr] = STATE(1882), + [sym__expr1] = STATE(4271), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(4272), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(4273), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2488), + [aux_sym__application_repeat1] = STATE(2495), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2993), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2987), + [anon_sym_forall] = ACTIONS(2989), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), + }, + [3474] = { + [sym__expr1] = STATE(809), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(557), + [sym__declaration] = STATE(558), + [sym_function_clause] = STATE(559), + [aux_sym_source_file_repeat1] = STATE(3474), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(2997), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(3000), + [anon_sym_forall] = ACTIONS(3003), + [anon_sym_let] = ACTIONS(3006), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), + }, + [3475] = { + [sym_expr] = STATE(2516), + [sym__expr1] = STATE(2470), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(2471), + [sym_atomic_expr] = STATE(871), + [sym__atomic_expr_curly] = STATE(872), + [sym__atomic_expr_no_curly] = STATE(872), + [sym_tele_arrow] = STATE(2472), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(2473), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1087), + [sym_set_n] = ACTIONS(1087), + [sym_name_at] = ACTIONS(2973), + [sym_qualified_name] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1008), + [anon_sym_forall] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_Prop] = ACTIONS(1087), + [anon_sym_Set] = ACTIONS(1087), + [anon_sym_quote] = ACTIONS(1087), + [anon_sym_quoteTerm] = ACTIONS(1087), + [anon_sym_unquote] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LPAREN_PIPE] = ACTIONS(1099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + }, + [3476] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [3477] = { + [sym_lambda_bindings] = STATE(2929), + [sym_untyped_bindings] = STATE(3477), + [sym_typed_bindings] = STATE(3477), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DOT_DOT] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3461), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), + }, + [3478] = { + [sym_expr] = STATE(2940), + [sym__expr1] = STATE(4277), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(4278), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(4279), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2482), + [aux_sym__application_repeat1] = STATE(4280), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4842), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4844), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2979), + [anon_sym_forall] = ACTIONS(2981), + [anon_sym_let] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [3479] = { + [sym_rewrite_equations] = STATE(1748), + [sym_with_expressions] = STATE(1749), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_in] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(1899), + [anon_sym_with] = ACTIONS(152), + }, + [3480] = { + [sym__expr1] = STATE(3479), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(953), + [sym__declaration] = STATE(954), + [sym_function_clause] = STATE(955), + [aux_sym_source_file_repeat1] = STATE(4283), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [3481] = { + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + }, + [3482] = { + [sym_lambda_bindings] = STATE(2953), + [sym_untyped_bindings] = STATE(3482), + [sym_typed_bindings] = STATE(3482), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_DOT_DOT] = ACTIONS(3483), + [anon_sym_LBRACE] = ACTIONS(3485), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3487), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(3489), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + }, + [3483] = { + [sym_expr] = STATE(2962), + [sym__expr1] = STATE(4271), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(4272), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(4273), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2488), + [aux_sym__application_repeat1] = STATE(2495), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2993), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2987), + [anon_sym_forall] = ACTIONS(2989), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), + }, + [3484] = { + [sym__expr1] = STATE(809), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(974), + [sym__declaration] = STATE(975), + [sym_function_clause] = STATE(976), + [aux_sym_source_file_repeat1] = STATE(4285), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + }, + [3485] = { + [sym_expr] = STATE(4138), + [sym__expr1] = STATE(2492), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2493), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2494), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2488), + [aux_sym__application_repeat1] = STATE(2495), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2993), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2987), + [anon_sym_forall] = ACTIONS(2989), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), + }, + [3486] = { + [sym_expr] = STATE(4286), + [sym__expr1] = STATE(2498), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2499), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2500), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1130), + [aux_sym__application_repeat1] = STATE(1888), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2320), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2322), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_forall] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), + }, + [3487] = { + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + }, + [3488] = { + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + }, + [3489] = { + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + }, + [3490] = { + [sym_vclose] = STATE(4287), + [sym__layout_close_brace] = ACTIONS(4067), + [sym_comment] = ACTIONS(86), + }, + [3491] = { + [sym_vopen] = STATE(2501), + [sym_declarations] = STATE(2502), + [sym__declarations0] = STATE(4288), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [2845] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_PIPE_RPAREN] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_module] = ACTIONS(164), + [3492] = { + [anon_sym_RBRACE] = ACTIONS(4848), + [sym_comment] = ACTIONS(86), }, - [2846] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_PIPE_RPAREN] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), + [3493] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4848), + [sym_comment] = ACTIONS(86), }, - [2847] = { - [sym__expr2] = STATE(2848), - [sym_atomic_expr] = STATE(2845), - [sym__atomic_expr_curly] = STATE(2846), - [sym__atomic_expr_no_curly] = STATE(2846), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(3345), - [sym_set_n] = ACTIONS(3345), - [sym_name_at] = ACTIONS(3347), - [sym_qualified_name] = ACTIONS(3345), - [anon_sym__] = ACTIONS(3345), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3351), + [3494] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4848), + }, + [3495] = { + [ts_builtin_sym_end] = ACTIONS(3863), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_RBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + [anon_sym_rewrite] = ACTIONS(3863), + [anon_sym_with] = ACTIONS(3863), + }, + [3496] = { + [sym_expr] = STATE(3837), + [sym__expr1] = STATE(3499), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(3500), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(3501), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1601), + [aux_sym__application_repeat1] = STATE(3502), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4075), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1977), + [anon_sym_forall] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [3497] = { + [sym_atomic_expr] = STATE(3644), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4075), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4075), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4213), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(4215), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [3498] = { + [sym_atomic_expr] = STATE(3644), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4075), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4075), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4219), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(4221), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [3499] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), + }, + [3500] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4852), + [anon_sym_PIPE] = ACTIONS(162), + }, + [3501] = { + [sym_expr] = STATE(3654), + [sym__expr1] = STATE(3499), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(3500), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(3501), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1601), + [aux_sym__application_repeat1] = STATE(3502), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4075), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1977), + [anon_sym_forall] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [3502] = { + [sym__expr2] = STATE(1944), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4075), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4075), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4213), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2311), - [anon_sym_forall] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_QMARK] = ACTIONS(3345), - [anon_sym_Prop] = ACTIONS(3345), - [anon_sym_Set] = ACTIONS(3345), - [anon_sym_quote] = ACTIONS(3345), - [anon_sym_quoteTerm] = ACTIONS(3345), - [anon_sym_unquote] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_LPAREN_PIPE] = ACTIONS(3355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3345), - }, - [2848] = { - [sym_literal] = ACTIONS(729), - [sym_set_n] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [sym_name_at] = ACTIONS(729), - [sym_qualified_name] = ACTIONS(729), - [anon_sym__] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_where] = ACTIONS(729), - [anon_sym_forall] = ACTIONS(729), - [anon_sym_let] = ACTIONS(729), - [anon_sym_in] = ACTIONS(729), - [anon_sym_QMARK] = ACTIONS(729), - [anon_sym_Prop] = ACTIONS(729), - [anon_sym_Set] = ACTIONS(729), - [anon_sym_quote] = ACTIONS(729), - [anon_sym_quoteTerm] = ACTIONS(729), - [anon_sym_unquote] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_LPAREN_PIPE] = ACTIONS(729), - [anon_sym_PIPE_RPAREN] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), + [anon_sym_BSLASH] = ACTIONS(1977), + [anon_sym_forall] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(4215), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), }, - [2849] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), + [3503] = { + [sym__expr1] = STATE(2684), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(1761), - [sym__declaration] = STATE(3837), - [sym_function_clause] = STATE(461), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [aux_sym__expr1_repeat1] = STATE(1601), + [aux_sym__application_repeat1] = STATE(1602), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(1975), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1977), + [anon_sym_forall] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [2850] = { - [sym_semi] = STATE(2849), - [aux_sym__declarations1_repeat1] = STATE(3838), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_PIPE_RPAREN] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), + [3504] = { + [sym_expr] = STATE(2693), + [sym__expr1] = STATE(3499), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(3500), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(3501), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1601), + [aux_sym__application_repeat1] = STATE(3502), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4075), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1977), + [anon_sym_forall] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), }, - [2851] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), + [3505] = { + [sym__expr1] = STATE(2523), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(1761), - [sym__declaration] = STATE(1876), - [sym_function_clause] = STATE(461), - [sym__declarations1] = STATE(3839), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_PIPE_RPAREN] = ACTIONS(2552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(953), + [sym__declaration] = STATE(954), + [sym_function_clause] = STATE(955), + [aux_sym_source_file_repeat1] = STATE(3505), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(2001), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2004), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), }, - [2852] = { - [anon_sym_RBRACE] = ACTIONS(4507), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4509), + [3506] = { + [sym_expr] = STATE(3849), + [sym__expr1] = STATE(2006), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2007), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2008), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1607), + [aux_sym__application_repeat1] = STATE(2009), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2458), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2460), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1985), + [anon_sym_forall] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [2853] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4507), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4511), + [3507] = { + [sym__expr1] = STATE(408), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(974), + [sym__declaration] = STATE(975), + [sym_function_clause] = STATE(976), + [aux_sym_source_file_repeat1] = STATE(3507), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(2001), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2004), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), }, - [2854] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4507), + [3508] = { + [sym_expr] = STATE(3860), + [sym__expr1] = STATE(1614), + [sym__application] = STATE(1145), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(1615), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_tele_arrow] = STATE(1616), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1617), + [aux_sym__application_repeat1] = STATE(1618), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(1991), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1993), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1995), + [anon_sym_forall] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), }, - [2855] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4513), + [3509] = { + [sym__expr1] = STATE(408), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(2532), + [sym__declaration] = STATE(1001), + [sym_function_clause] = STATE(1002), + [aux_sym_source_file_repeat1] = STATE(3509), + [aux_sym__expr1_repeat1] = STATE(411), + [aux_sym__application_repeat1] = STATE(412), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(2001), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2004), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_module] = ACTIONS(644), }, - [2856] = { - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_with] = ACTIONS(1891), + [3510] = { + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_PIPE_RPAREN] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_rewrite] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), }, - [2857] = { - [sym_expr] = STATE(3844), + [3511] = { + [sym_expr] = STATE(4291), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -102071,38 +121074,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2858] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_COLON] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_with] = ACTIONS(1905), - }, - [2859] = { - [sym_expr] = STATE(3845), + [3512] = { + [sym_expr] = STATE(4292), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -102138,640 +121111,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2860] = { - [ts_builtin_sym_end] = ACTIONS(186), - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), - }, - [2861] = { - [ts_builtin_sym_end] = ACTIONS(228), - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), - }, - [2862] = { - [anon_sym_RBRACE] = ACTIONS(4515), - [sym_comment] = ACTIONS(86), - }, - [2863] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4517), - [sym_comment] = ACTIONS(86), - }, - [2864] = { - [sym_atomic_expr] = STATE(2889), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(3371), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3381), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), - }, - [2865] = { - [sym_atomic_expr] = STATE(2889), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(3371), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3387), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), - }, - [2866] = { - [ts_builtin_sym_end] = ACTIONS(1983), - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_with] = ACTIONS(1983), - }, - [2867] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4519), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), - }, - [2868] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4521), - [anon_sym_PIPE] = ACTIONS(162), - }, - [2869] = { - [sym_expr] = STATE(2899), - [sym__expr1] = STATE(2867), - [sym__application] = STATE(487), - [sym__expr2] = STATE(488), - [sym__atomic_exprs1] = STATE(2868), - [sym_atomic_expr] = STATE(1922), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [sym_tele_arrow] = STATE(2869), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2036), - [aux_sym__application_repeat1] = STATE(2870), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(3371), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2406), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), - }, - [2870] = { - [sym__expr2] = STATE(1043), - [sym_atomic_expr] = STATE(1922), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(3371), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3381), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), - }, - [2871] = { - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4523), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [2872] = { - [sym_lambda_bindings] = STATE(1887), - [sym_untyped_bindings] = STATE(2872), - [sym_typed_bindings] = STATE(2872), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(2390), - [anon_sym_DOT_DOT] = ACTIONS(2390), - [anon_sym_LBRACE] = ACTIONS(2392), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2394), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), - }, - [2873] = { - [sym_expr] = STATE(1907), - [sym__expr1] = STATE(2867), - [sym__application] = STATE(487), - [sym__expr2] = STATE(488), - [sym__atomic_exprs1] = STATE(2868), - [sym_atomic_expr] = STATE(1922), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [sym_tele_arrow] = STATE(2869), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2036), - [aux_sym__application_repeat1] = STATE(2870), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(3371), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2406), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), - }, - [2874] = { - [sym_rewrite_equations] = STATE(3852), - [sym_with_expressions] = STATE(1929), - [ts_builtin_sym_end] = ACTIONS(152), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(4525), - [anon_sym_with] = ACTIONS(4527), - }, - [2875] = { - [sym_where_clause] = STATE(1933), - [sym_rhs] = STATE(1934), - [ts_builtin_sym_end] = ACTIONS(170), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4529), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(2418), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4529), - [anon_sym_module] = ACTIONS(2420), - [anon_sym_with] = ACTIONS(170), - }, - [2876] = { - [sym__expr1] = STATE(2874), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2875), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(3854), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(4523), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [2877] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4517), - }, - [2878] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4517), - }, - [2879] = { - [sym_expr] = STATE(3855), - [sym__expr1] = STATE(2867), - [sym__application] = STATE(487), - [sym__expr2] = STATE(488), - [sym__atomic_exprs1] = STATE(2868), - [sym_atomic_expr] = STATE(1922), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [sym_tele_arrow] = STATE(2869), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2036), - [aux_sym__application_repeat1] = STATE(2870), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(3371), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2406), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), - }, - [2880] = { - [ts_builtin_sym_end] = ACTIONS(1997), - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_with] = ACTIONS(1997), - }, - [2881] = { - [sym__expr2] = STATE(1043), - [sym_atomic_expr] = STATE(1903), - [sym__atomic_expr_curly] = STATE(1904), - [sym__atomic_expr_no_curly] = STATE(1904), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(2366), - [sym_set_n] = ACTIONS(2366), - [sym_name_at] = ACTIONS(2368), - [sym_qualified_name] = ACTIONS(2366), - [anon_sym__] = ACTIONS(2366), - [anon_sym_DOT] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2372), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4531), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(2366), - [anon_sym_Prop] = ACTIONS(2366), - [anon_sym_Set] = ACTIONS(2366), - [anon_sym_quote] = ACTIONS(2366), - [anon_sym_quoteTerm] = ACTIONS(2366), - [anon_sym_unquote] = ACTIONS(2366), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_LPAREN_PIPE] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2366), - }, - [2882] = { - [sym__application] = STATE(1902), - [sym__expr2] = STATE(488), - [sym_atomic_expr] = STATE(1903), - [sym__atomic_expr_curly] = STATE(1904), - [sym__atomic_expr_no_curly] = STATE(1904), - [sym_non_absurd_lambda_clause] = STATE(1905), - [sym_absurd_lambda_clause] = STATE(1905), - [sym_lambda_clause] = STATE(3857), - [aux_sym__application_repeat1] = STATE(1908), - [sym_literal] = ACTIONS(2366), - [sym_set_n] = ACTIONS(2366), - [sym_name_at] = ACTIONS(2368), - [sym_qualified_name] = ACTIONS(2366), - [anon_sym__] = ACTIONS(2366), - [anon_sym_DOT] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2372), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2374), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(2366), - [anon_sym_Prop] = ACTIONS(2366), - [anon_sym_Set] = ACTIONS(2366), - [anon_sym_quote] = ACTIONS(2366), - [anon_sym_quoteTerm] = ACTIONS(2366), - [anon_sym_unquote] = ACTIONS(2366), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_LPAREN_PIPE] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2366), - [sym_catchall_pragma] = ACTIONS(2386), - }, - [2883] = { - [sym_semi] = STATE(2882), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3858), - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_with] = ACTIONS(2001), - }, - [2884] = { - [sym_expr] = STATE(3859), + [3513] = { + [sym_expr] = STATE(4293), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -102807,161 +121148,613 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2885] = { - [anon_sym_RBRACE] = ACTIONS(3359), + [3514] = { + [anon_sym_RBRACE] = ACTIONS(4854), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3361), }, - [2886] = { - [sym_expr] = STATE(2894), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), + [3515] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4854), + [sym_comment] = ACTIONS(86), + }, + [3516] = { + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_PIPE_RPAREN] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_rewrite] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + }, + [3517] = { + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_PIPE_RPAREN] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + [anon_sym_rewrite] = ACTIONS(2965), + [anon_sym_with] = ACTIONS(2965), + }, + [3518] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4854), + }, + [3519] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_PIPE_RPAREN] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_rewrite] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [3520] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_PIPE_RPAREN] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_rewrite] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [3521] = { + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_PIPE_RPAREN] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + [anon_sym_rewrite] = ACTIONS(3017), + [anon_sym_with] = ACTIONS(3017), + }, + [3522] = { + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_PIPE_RPAREN] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + [anon_sym_rewrite] = ACTIONS(2262), + [anon_sym_with] = ACTIONS(2262), + }, + [3523] = { + [sym_vclose] = STATE(4295), + [sym__layout_close_brace] = ACTIONS(4091), + [sym_comment] = ACTIONS(86), + }, + [3524] = { + [sym_vopen] = STATE(2566), + [sym_declarations] = STATE(2567), + [sym__declarations0] = STATE(4296), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [3525] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_PIPE_RPAREN] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [3526] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_PIPE_RPAREN] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [3527] = { + [sym__application] = STATE(4297), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3391), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [3528] = { + [sym__application] = STATE(4298), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [3529] = { + [sym_binding_name] = STATE(4299), + [sym__application] = STATE(4300), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [3530] = { + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_PIPE_RPAREN] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + [anon_sym_with] = ACTIONS(882), + }, + [3531] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(4856), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4858), + }, + [3532] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(4860), + [sym_comment] = ACTIONS(86), + }, + [3533] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4856), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4862), }, - [2887] = { - [sym_expr] = STATE(2895), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), + [3534] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(4305), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [3535] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4856), + }, + [3536] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4864), + }, + [3537] = { + [sym_expr] = STATE(4303), + [sym__expr1] = STATE(3547), + [sym__application] = STATE(1668), + [sym__expr2] = STATE(1669), + [sym__atomic_exprs1] = STATE(3548), + [sym_atomic_expr] = STATE(3549), + [sym__atomic_expr_curly] = STATE(3550), + [sym__atomic_expr_no_curly] = STATE(3550), + [sym_tele_arrow] = STATE(3551), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1672), + [aux_sym__application_repeat1] = STATE(3552), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), + [sym_literal] = ACTIONS(4121), + [sym_set_n] = ACTIONS(4121), + [sym_name_at] = ACTIONS(4123), + [sym_qualified_name] = ACTIONS(4121), + [anon_sym__] = ACTIONS(4121), + [anon_sym_DOT] = ACTIONS(4125), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4129), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_forall] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_QMARK] = ACTIONS(4121), + [anon_sym_Prop] = ACTIONS(4121), + [anon_sym_Set] = ACTIONS(4121), + [anon_sym_quote] = ACTIONS(4121), + [anon_sym_quoteTerm] = ACTIONS(4121), + [anon_sym_unquote] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LPAREN_PIPE] = ACTIONS(4133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), }, - [2888] = { - [sym_expr] = STATE(2896), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), + [3538] = { + [sym__application] = STATE(4307), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(4109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [3539] = { + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_PIPE_RPAREN] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), }, - [2889] = { - [ts_builtin_sym_end] = ACTIONS(186), - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [3540] = { + [sym_atomic_expr] = STATE(4311), + [sym__atomic_expr_curly] = STATE(3550), + [sym__atomic_expr_no_curly] = STATE(3550), + [sym_literal] = ACTIONS(4121), + [sym_set_n] = ACTIONS(4121), + [sym_name_at] = ACTIONS(4123), + [sym_qualified_name] = ACTIONS(4121), + [anon_sym__] = ACTIONS(4121), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_LBRACE] = ACTIONS(4866), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4868), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(4121), + [anon_sym_Prop] = ACTIONS(4121), + [anon_sym_Set] = ACTIONS(4121), + [anon_sym_quote] = ACTIONS(4121), + [anon_sym_quoteTerm] = ACTIONS(4121), + [anon_sym_unquote] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4870), + [anon_sym_LPAREN_PIPE] = ACTIONS(4133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), }, - [2890] = { - [sym_expr] = STATE(2894), + [3541] = { + [sym_atomic_expr] = STATE(4311), + [sym__atomic_expr_curly] = STATE(3550), + [sym__atomic_expr_no_curly] = STATE(3550), + [sym_literal] = ACTIONS(4121), + [sym_set_n] = ACTIONS(4121), + [sym_name_at] = ACTIONS(4123), + [sym_qualified_name] = ACTIONS(4121), + [anon_sym__] = ACTIONS(4121), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4874), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(4121), + [anon_sym_Prop] = ACTIONS(4121), + [anon_sym_Set] = ACTIONS(4121), + [anon_sym_quote] = ACTIONS(4121), + [anon_sym_quoteTerm] = ACTIONS(4121), + [anon_sym_unquote] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_LPAREN_PIPE] = ACTIONS(4133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), + }, + [3542] = { + [sym_expr] = STATE(4316), [sym__expr1] = STATE(38), - [sym__application] = STATE(557), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -102980,7 +121773,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(3391), + [anon_sym_RBRACE] = ACTIONS(4878), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -102996,10 +121789,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2891] = { - [sym_expr] = STATE(2895), + [3543] = { + [sym_expr] = STATE(4317), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(185), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -103019,7 +121812,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3393), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4880), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -103034,10 +121827,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [2892] = { - [sym_expr] = STATE(2896), + [3544] = { + [sym_expr] = STATE(4318), [sym__expr1] = STATE(110), - [sym__application] = STATE(559), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -103068,346 +121861,806 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(3393), + [anon_sym_RPAREN] = ACTIONS(4880), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2893] = { - [ts_builtin_sym_end] = ACTIONS(228), - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [3545] = { + [sym_expr] = STATE(4319), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [2894] = { - [anon_sym_RBRACE] = ACTIONS(4533), - [sym_comment] = ACTIONS(86), + [3546] = { + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_PIPE_RPAREN] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_with] = ACTIONS(1038), }, - [2895] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4535), - [sym_comment] = ACTIONS(86), + [3547] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4882), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_PIPE_RPAREN] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), }, - [2896] = { + [3548] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4535), + [anon_sym_DASH_GT] = ACTIONS(4884), + [anon_sym_PIPE] = ACTIONS(162), }, - [2897] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4535), + [3549] = { + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_PIPE_RPAREN] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [2898] = { - [sym_expr] = STATE(3862), - [sym__expr1] = STATE(1920), - [sym__application] = STATE(487), - [sym__expr2] = STATE(488), - [sym__atomic_exprs1] = STATE(1921), - [sym_atomic_expr] = STATE(1922), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [sym_tele_arrow] = STATE(1924), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(491), - [aux_sym__application_repeat1] = STATE(1925), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(2400), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(2402), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2406), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(618), - [anon_sym_forall] = ACTIONS(620), - [anon_sym_let] = ACTIONS(622), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), + [3550] = { + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_PIPE_RPAREN] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [2899] = { - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), + [3551] = { + [sym_expr] = STATE(4321), + [sym__expr1] = STATE(3547), + [sym__application] = STATE(1668), + [sym__expr2] = STATE(1669), + [sym__atomic_exprs1] = STATE(3548), + [sym_atomic_expr] = STATE(3549), + [sym__atomic_expr_curly] = STATE(3550), + [sym__atomic_expr_no_curly] = STATE(3550), + [sym_tele_arrow] = STATE(3551), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1672), + [aux_sym__application_repeat1] = STATE(3552), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4121), + [sym_set_n] = ACTIONS(4121), + [sym_name_at] = ACTIONS(4123), + [sym_qualified_name] = ACTIONS(4121), + [anon_sym__] = ACTIONS(4121), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4129), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2059), [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_with] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_QMARK] = ACTIONS(4121), + [anon_sym_Prop] = ACTIONS(4121), + [anon_sym_Set] = ACTIONS(4121), + [anon_sym_quote] = ACTIONS(4121), + [anon_sym_quoteTerm] = ACTIONS(4121), + [anon_sym_unquote] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LPAREN_PIPE] = ACTIONS(4133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), }, - [2900] = { - [sym_atomic_expr] = STATE(2177), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(3399), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [3552] = { + [sym__expr2] = STATE(2591), + [sym_atomic_expr] = STATE(3549), + [sym__atomic_expr_curly] = STATE(3550), + [sym__atomic_expr_no_curly] = STATE(3550), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(4121), + [sym_set_n] = ACTIONS(4121), + [sym_name_at] = ACTIONS(4123), + [sym_qualified_name] = ACTIONS(4121), + [anon_sym__] = ACTIONS(4121), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_LBRACE] = ACTIONS(4866), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4868), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_forall] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_QMARK] = ACTIONS(4121), + [anon_sym_Prop] = ACTIONS(4121), + [anon_sym_Set] = ACTIONS(4121), + [anon_sym_quote] = ACTIONS(4121), + [anon_sym_quoteTerm] = ACTIONS(4121), + [anon_sym_unquote] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4870), + [anon_sym_LPAREN_PIPE] = ACTIONS(4133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), }, - [2901] = { - [sym_lambda_bindings] = STATE(3864), - [sym_untyped_bindings] = STATE(3865), - [sym_typed_bindings] = STATE(3865), - [anon_sym_DOT] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2698), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(2702), + [3553] = { + [sym__expr1] = STATE(4322), + [sym__application] = STATE(1668), + [sym__expr2] = STATE(1669), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1670), + [sym__atomic_expr_curly] = STATE(1671), + [sym__atomic_expr_no_curly] = STATE(1671), + [aux_sym__expr1_repeat1] = STATE(1672), + [aux_sym__application_repeat1] = STATE(1673), + [sym_literal] = ACTIONS(2051), + [sym_set_n] = ACTIONS(2051), + [sym_name_at] = ACTIONS(2053), + [sym_qualified_name] = ACTIONS(2051), + [anon_sym__] = ACTIONS(2051), + [anon_sym_DOT] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2057), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_forall] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_QMARK] = ACTIONS(2051), + [anon_sym_Prop] = ACTIONS(2051), + [anon_sym_Set] = ACTIONS(2051), + [anon_sym_quote] = ACTIONS(2051), + [anon_sym_quoteTerm] = ACTIONS(2051), + [anon_sym_unquote] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LPAREN_PIPE] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2051), }, - [2902] = { - [sym_forall_bindings] = STATE(3866), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [3554] = { + [sym_with_expressions] = STATE(4323), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_PIPE_RPAREN] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), + }, + [3555] = { + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_PIPE_RPAREN] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), + }, + [3556] = { + [sym_expr] = STATE(4324), + [sym__expr1] = STATE(3547), + [sym__application] = STATE(1668), + [sym__expr2] = STATE(1669), + [sym__atomic_exprs1] = STATE(3548), + [sym_atomic_expr] = STATE(3549), + [sym__atomic_expr_curly] = STATE(3550), + [sym__atomic_expr_no_curly] = STATE(3550), + [sym_tele_arrow] = STATE(3551), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1672), + [aux_sym__application_repeat1] = STATE(3552), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4121), + [sym_set_n] = ACTIONS(4121), + [sym_name_at] = ACTIONS(4123), + [sym_qualified_name] = ACTIONS(4121), + [anon_sym__] = ACTIONS(4121), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4129), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_forall] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_QMARK] = ACTIONS(4121), + [anon_sym_Prop] = ACTIONS(4121), + [anon_sym_Set] = ACTIONS(4121), + [anon_sym_quote] = ACTIONS(4121), + [anon_sym_quoteTerm] = ACTIONS(4121), + [anon_sym_unquote] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LPAREN_PIPE] = ACTIONS(4133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), + }, + [3557] = { + [sym_vopen] = STATE(4325), + [sym_declarations] = STATE(4326), + [sym__declarations0] = STATE(4327), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), }, - [2903] = { - [sym__expr1] = STATE(1035), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1036), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(3867), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(104), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [3558] = { + [sym_anonymous_name] = STATE(4328), + [sym_name] = ACTIONS(4886), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [2904] = { - [sym__application] = STATE(2194), - [sym__expr2] = STATE(1235), + [3559] = { + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_PIPE_RPAREN] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), + }, + [3560] = { + [sym_where_clause] = STATE(4329), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_PIPE_RPAREN] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), + }, + [3561] = { + [sym__expr1] = STATE(2583), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2905), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(3399), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3401), - [anon_sym_forall] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_lhs] = STATE(2584), + [sym__declaration] = STATE(2585), + [sym_function_clause] = STATE(2586), + [aux_sym_source_file_repeat1] = STATE(3561), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(2109), + [sym_set_n] = ACTIONS(2109), + [sym_name_at] = ACTIONS(2112), + [sym_qualified_name] = ACTIONS(2109), + [anon_sym__] = ACTIONS(2109), + [anon_sym_DOT] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2118), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2121), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2109), + [anon_sym_Prop] = ACTIONS(2109), + [anon_sym_Set] = ACTIONS(2109), + [anon_sym_quote] = ACTIONS(2109), + [anon_sym_quoteTerm] = ACTIONS(2109), + [anon_sym_unquote] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2130), + [anon_sym_LPAREN_PIPE] = ACTIONS(2133), + [anon_sym_PIPE_RPAREN] = ACTIONS(644), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2109), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), + }, + [3562] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_PIPE_RPAREN] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [3563] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_PIPE_RPAREN] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [3564] = { + [sym__application] = STATE(4330), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [3565] = { + [sym__application] = STATE(4331), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2905] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(3399), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), + [3566] = { + [sym_binding_name] = STATE(4332), + [sym__application] = STATE(4333), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3401), - [anon_sym_forall] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [2906] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_literal] = ACTIONS(1320), - [sym_set_n] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_name_at] = ACTIONS(1320), - [sym_qualified_name] = ACTIONS(1320), - [anon_sym__] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1320), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_BSLASH] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_forall] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_Prop] = ACTIONS(1320), - [anon_sym_Set] = ACTIONS(1320), - [anon_sym_quote] = ACTIONS(1320), - [anon_sym_quoteTerm] = ACTIONS(1320), - [anon_sym_unquote] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_RPAREN] = ACTIONS(1320), - [anon_sym_LPAREN_PIPE] = ACTIONS(1320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1320), - [anon_sym_COLON] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_with] = ACTIONS(1320), + [3567] = { + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_PIPE_RPAREN] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), }, - [2907] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_literal] = ACTIONS(1322), - [sym_set_n] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [sym_name_at] = ACTIONS(1322), - [sym_qualified_name] = ACTIONS(1322), - [anon_sym__] = ACTIONS(1322), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1322), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_BSLASH] = ACTIONS(1322), - [anon_sym_where] = ACTIONS(1322), - [anon_sym_forall] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_in] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_Prop] = ACTIONS(1322), - [anon_sym_Set] = ACTIONS(1322), - [anon_sym_quote] = ACTIONS(1322), - [anon_sym_quoteTerm] = ACTIONS(1322), - [anon_sym_unquote] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_LPAREN_PIPE] = ACTIONS(1322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_module] = ACTIONS(1322), - [anon_sym_with] = ACTIONS(1322), + [3568] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(4888), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4890), }, - [2908] = { - [ts_builtin_sym_end] = ACTIONS(30), + [3569] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(4892), + [sym_comment] = ACTIONS(86), + }, + [3570] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4888), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4894), + }, + [3571] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(4338), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [3572] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4888), + }, + [3573] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4896), + }, + [3574] = { + [sym_expr] = STATE(4336), + [sym__expr1] = STATE(3584), + [sym__application] = STATE(1684), + [sym__expr2] = STATE(1685), + [sym__atomic_exprs1] = STATE(3585), + [sym_atomic_expr] = STATE(3586), + [sym__atomic_expr_curly] = STATE(3587), + [sym__atomic_expr_no_curly] = STATE(3587), + [sym_tele_arrow] = STATE(3588), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1688), + [aux_sym__application_repeat1] = STATE(3589), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4157), + [sym_set_n] = ACTIONS(4157), + [sym_name_at] = ACTIONS(4159), + [sym_qualified_name] = ACTIONS(4157), + [anon_sym__] = ACTIONS(4157), + [anon_sym_DOT] = ACTIONS(4161), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4163), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4165), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2077), + [anon_sym_forall] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_QMARK] = ACTIONS(4157), + [anon_sym_Prop] = ACTIONS(4157), + [anon_sym_Set] = ACTIONS(4157), + [anon_sym_quote] = ACTIONS(4157), + [anon_sym_quoteTerm] = ACTIONS(4157), + [anon_sym_unquote] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LPAREN_PIPE] = ACTIONS(4169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4157), + }, + [3575] = { + [sym__application] = STATE(4340), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(4145), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [3576] = { [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), [sym_name_at] = ACTIONS(30), [sym_qualified_name] = ACTIONS(30), [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(30), @@ -103425,61 +122678,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(30), [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_PIPE_RPAREN] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), [anon_sym_COLON] = ACTIONS(30), [anon_sym_module] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), }, - [2909] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3409), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [3577] = { + [sym_atomic_expr] = STATE(4344), + [sym__atomic_expr_curly] = STATE(3587), + [sym__atomic_expr_no_curly] = STATE(3587), + [sym_literal] = ACTIONS(4157), + [sym_set_n] = ACTIONS(4157), + [sym_name_at] = ACTIONS(4159), + [sym_qualified_name] = ACTIONS(4157), + [anon_sym__] = ACTIONS(4157), + [anon_sym_DOT] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4898), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4900), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(4157), + [anon_sym_Prop] = ACTIONS(4157), + [anon_sym_Set] = ACTIONS(4157), + [anon_sym_quote] = ACTIONS(4157), + [anon_sym_quoteTerm] = ACTIONS(4157), + [anon_sym_unquote] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4902), + [anon_sym_LPAREN_PIPE] = ACTIONS(4169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4157), }, - [2910] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3409), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4547), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4549), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [3578] = { + [sym_atomic_expr] = STATE(4344), + [sym__atomic_expr_curly] = STATE(3587), + [sym__atomic_expr_no_curly] = STATE(3587), + [sym_literal] = ACTIONS(4157), + [sym_set_n] = ACTIONS(4157), + [sym_name_at] = ACTIONS(4159), + [sym_qualified_name] = ACTIONS(4157), + [anon_sym__] = ACTIONS(4157), + [anon_sym_DOT] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4906), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(4157), + [anon_sym_Prop] = ACTIONS(4157), + [anon_sym_Set] = ACTIONS(4157), + [anon_sym_quote] = ACTIONS(4157), + [anon_sym_quoteTerm] = ACTIONS(4157), + [anon_sym_unquote] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_LPAREN_PIPE] = ACTIONS(4169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4157), }, - [2911] = { - [sym_expr] = STATE(3876), + [3579] = { + [sym_expr] = STATE(4349), [sym__expr1] = STATE(38), [sym__application] = STATE(170), [sym__expr2] = STATE(40), @@ -103500,7 +122752,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(4551), + [anon_sym_RBRACE] = ACTIONS(4910), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -103516,8 +122768,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2912] = { - [sym_expr] = STATE(3877), + [3580] = { + [sym_expr] = STATE(4350), [sym__expr1] = STATE(60), [sym__application] = STATE(185), [sym__expr2] = STATE(62), @@ -103539,7 +122791,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4553), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4912), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -103554,8 +122806,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [2913] = { - [sym_expr] = STATE(3878), + [3581] = { + [sym_expr] = STATE(4351), [sym__expr1] = STATE(110), [sym__application] = STATE(213), [sym__expr2] = STATE(40), @@ -103588,12 +122840,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4912), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2914] = { - [sym_expr] = STATE(3879), + [3582] = { + [sym_expr] = STATE(4352), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -103629,85 +122881,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [2915] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_COLON] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_with] = ACTIONS(1352), + [3583] = { + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_PIPE_RPAREN] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), }, - [2916] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4555), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), + [3584] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(4914), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_PIPE_RPAREN] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), }, - [2917] = { + [3585] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4916), [anon_sym_PIPE] = ACTIONS(162), }, - [2918] = { - [ts_builtin_sym_end] = ACTIONS(164), + [3586] = { [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), [sym_name_at] = ACTIONS(166), [sym_qualified_name] = ACTIONS(166), [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(166), @@ -103725,24 +122969,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(166), [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_PIPE_RPAREN] = ACTIONS(164), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), [anon_sym_COLON] = ACTIONS(164), [anon_sym_module] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), }, - [2919] = { - [ts_builtin_sym_end] = ACTIONS(168), + [3587] = { [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), [sym_name_at] = ACTIONS(168), [sym_qualified_name] = ACTIONS(168), [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(168), @@ -103760,340 +123000,707 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(168), [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_PIPE_RPAREN] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), [anon_sym_COLON] = ACTIONS(168), [anon_sym_module] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), }, - [2920] = { - [sym_expr] = STATE(3881), - [sym__expr1] = STATE(2916), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(2917), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(2920), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2904), - [aux_sym__application_repeat1] = STATE(2921), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3409), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3401), - [anon_sym_forall] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [3588] = { + [sym_expr] = STATE(4354), + [sym__expr1] = STATE(3584), + [sym__application] = STATE(1684), + [sym__expr2] = STATE(1685), + [sym__atomic_exprs1] = STATE(3585), + [sym_atomic_expr] = STATE(3586), + [sym__atomic_expr_curly] = STATE(3587), + [sym__atomic_expr_no_curly] = STATE(3587), + [sym_tele_arrow] = STATE(3588), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1688), + [aux_sym__application_repeat1] = STATE(3589), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4157), + [sym_set_n] = ACTIONS(4157), + [sym_name_at] = ACTIONS(4159), + [sym_qualified_name] = ACTIONS(4157), + [anon_sym__] = ACTIONS(4157), + [anon_sym_DOT] = ACTIONS(4161), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4163), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4165), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2077), + [anon_sym_forall] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_QMARK] = ACTIONS(4157), + [anon_sym_Prop] = ACTIONS(4157), + [anon_sym_Set] = ACTIONS(4157), + [anon_sym_quote] = ACTIONS(4157), + [anon_sym_quoteTerm] = ACTIONS(4157), + [anon_sym_unquote] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LPAREN_PIPE] = ACTIONS(4169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4157), }, - [2921] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), + [3589] = { + [sym__expr2] = STATE(2611), + [sym_atomic_expr] = STATE(3586), + [sym__atomic_expr_curly] = STATE(3587), + [sym__atomic_expr_no_curly] = STATE(3587), [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3409), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), + [sym_literal] = ACTIONS(4157), + [sym_set_n] = ACTIONS(4157), + [sym_name_at] = ACTIONS(4159), + [sym_qualified_name] = ACTIONS(4157), + [anon_sym__] = ACTIONS(4157), + [anon_sym_DOT] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4898), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4900), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3401), - [anon_sym_forall] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [anon_sym_BSLASH] = ACTIONS(2077), + [anon_sym_forall] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_QMARK] = ACTIONS(4157), + [anon_sym_Prop] = ACTIONS(4157), + [anon_sym_Set] = ACTIONS(4157), + [anon_sym_quote] = ACTIONS(4157), + [anon_sym_quoteTerm] = ACTIONS(4157), + [anon_sym_unquote] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4902), + [anon_sym_LPAREN_PIPE] = ACTIONS(4169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4157), }, - [2922] = { - [sym_semi] = STATE(3882), - [aux_sym__declarations1_repeat1] = STATE(3883), - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [3590] = { + [sym_expr] = STATE(4355), + [sym__expr1] = STATE(3584), + [sym__application] = STATE(1684), + [sym__expr2] = STATE(1685), + [sym__atomic_exprs1] = STATE(3585), + [sym_atomic_expr] = STATE(3586), + [sym__atomic_expr_curly] = STATE(3587), + [sym__atomic_expr_no_curly] = STATE(3587), + [sym_tele_arrow] = STATE(3588), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1688), + [aux_sym__application_repeat1] = STATE(3589), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4157), + [sym_set_n] = ACTIONS(4157), + [sym_name_at] = ACTIONS(4159), + [sym_qualified_name] = ACTIONS(4157), + [anon_sym__] = ACTIONS(4157), + [anon_sym_DOT] = ACTIONS(4161), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4163), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4165), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2077), + [anon_sym_forall] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_QMARK] = ACTIONS(4157), + [anon_sym_Prop] = ACTIONS(4157), + [anon_sym_Set] = ACTIONS(4157), + [anon_sym_quote] = ACTIONS(4157), + [anon_sym_quoteTerm] = ACTIONS(4157), + [anon_sym_unquote] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LPAREN_PIPE] = ACTIONS(4169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4157), + }, + [3591] = { + [sym_vopen] = STATE(4356), + [sym_declarations] = STATE(4357), + [sym__declarations0] = STATE(4358), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [3592] = { + [sym_anonymous_name] = STATE(4359), + [sym_name] = ACTIONS(4918), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_with] = ACTIONS(1376), }, - [2923] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_where] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_RPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1380), - [anon_sym_module] = ACTIONS(1380), - [anon_sym_with] = ACTIONS(1380), + [3593] = { + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_PIPE_RPAREN] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), }, - [2924] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4559), + [3594] = { + [sym_where_clause] = STATE(4360), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_PIPE_RPAREN] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), }, - [2925] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_where] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_with] = ACTIONS(1386), + [3595] = { + [sym__expr1] = STATE(438), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_lhs] = STATE(2604), + [sym__declaration] = STATE(2605), + [sym_function_clause] = STATE(2606), + [aux_sym_source_file_repeat1] = STATE(3595), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(2109), + [sym_set_n] = ACTIONS(2109), + [sym_name_at] = ACTIONS(2112), + [sym_qualified_name] = ACTIONS(2109), + [anon_sym__] = ACTIONS(2109), + [anon_sym_DOT] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2118), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2121), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2109), + [anon_sym_Prop] = ACTIONS(2109), + [anon_sym_Set] = ACTIONS(2109), + [anon_sym_quote] = ACTIONS(2109), + [anon_sym_quoteTerm] = ACTIONS(2109), + [anon_sym_unquote] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2130), + [anon_sym_LPAREN_PIPE] = ACTIONS(2133), + [anon_sym_PIPE_RPAREN] = ACTIONS(644), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2109), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), }, - [2926] = { - [anon_sym_RBRACE] = ACTIONS(4561), + [3596] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_PIPE_RPAREN] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [3597] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_PIPE_RPAREN] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [3598] = { + [sym__application] = STATE(4361), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [3599] = { + [sym__application] = STATE(4362), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [3600] = { + [sym_binding_name] = STATE(4363), + [sym__application] = STATE(4364), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [3601] = { + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_PIPE_RPAREN] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + }, + [3602] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(4920), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4563), + [anon_sym_COLON] = ACTIONS(4922), }, - [2927] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4561), + [3603] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(4924), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4565), }, - [2928] = { + [3604] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4920), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4561), + [anon_sym_COLON] = ACTIONS(4926), }, - [2929] = { + [3605] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(4369), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [3606] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4920), }, - [2930] = { - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), + [3607] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4928), }, - [2931] = { - [sym_expr] = STATE(3889), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), + [3608] = { + [sym_expr] = STATE(4367), + [sym__expr1] = STATE(1702), + [sym__application] = STATE(1703), + [sym__expr2] = STATE(1704), + [sym__atomic_exprs1] = STATE(1705), + [sym_atomic_expr] = STATE(1706), + [sym__atomic_expr_curly] = STATE(1707), + [sym__atomic_expr_no_curly] = STATE(1707), + [sym_tele_arrow] = STATE(1708), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [aux_sym__expr1_repeat1] = STATE(1709), + [aux_sym__application_repeat1] = STATE(1710), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2087), + [sym_set_n] = ACTIONS(2087), + [sym_name_at] = ACTIONS(2089), + [sym_qualified_name] = ACTIONS(2087), + [anon_sym__] = ACTIONS(2087), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2095), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2097), + [anon_sym_forall] = ACTIONS(2099), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_QMARK] = ACTIONS(2087), + [anon_sym_Prop] = ACTIONS(2087), + [anon_sym_Set] = ACTIONS(2087), + [anon_sym_quote] = ACTIONS(2087), + [anon_sym_quoteTerm] = ACTIONS(2087), + [anon_sym_unquote] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_LPAREN_PIPE] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2087), }, - [2932] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_COLON] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), + [3609] = { + [sym__application] = STATE(4371), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [2933] = { - [sym_expr] = STATE(3890), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [3610] = { + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_PIPE_RPAREN] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + }, + [3611] = { + [sym_vopen] = STATE(4372), + [sym_declarations] = STATE(4373), + [sym__declarations0] = STATE(4374), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [3612] = { + [sym_anonymous_name] = STATE(4375), + [sym_name] = ACTIONS(4930), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2934] = { - [ts_builtin_sym_end] = ACTIONS(186), + [3613] = { + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_PIPE_RPAREN] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + }, + [3614] = { + [sym_where_clause] = STATE(4376), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_PIPE_RPAREN] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + }, + [3615] = { + [sym__expr1] = STATE(438), + [sym__application] = STATE(439), + [sym__expr2] = STATE(440), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(441), + [sym__atomic_expr_curly] = STATE(442), + [sym__atomic_expr_no_curly] = STATE(442), + [sym_lhs] = STATE(2630), + [sym__declaration] = STATE(2631), + [sym_function_clause] = STATE(2632), + [aux_sym_source_file_repeat1] = STATE(3615), + [aux_sym__expr1_repeat1] = STATE(447), + [aux_sym__application_repeat1] = STATE(448), + [sym_literal] = ACTIONS(2109), + [sym_set_n] = ACTIONS(2109), + [sym_name_at] = ACTIONS(2112), + [sym_qualified_name] = ACTIONS(2109), + [anon_sym__] = ACTIONS(2109), + [anon_sym_DOT] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2118), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2121), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2109), + [anon_sym_Prop] = ACTIONS(2109), + [anon_sym_Set] = ACTIONS(2109), + [anon_sym_quote] = ACTIONS(2109), + [anon_sym_quoteTerm] = ACTIONS(2109), + [anon_sym_unquote] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2130), + [anon_sym_LPAREN_PIPE] = ACTIONS(2133), + [anon_sym_PIPE_RPAREN] = ACTIONS(644), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2109), + [anon_sym_module] = ACTIONS(644), + }, + [3616] = { + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_PIPE_RPAREN] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + }, + [3617] = { [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), [sym_name_at] = ACTIONS(186), [sym_qualified_name] = ACTIONS(186), [anon_sym__] = ACTIONS(186), @@ -104101,12 +123708,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), [anon_sym_Prop] = ACTIONS(186), [anon_sym_Set] = ACTIONS(186), @@ -104115,15 +123723,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_PIPE_RPAREN] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), [anon_sym_module] = ACTIONS(186), }, - [2935] = { - [ts_builtin_sym_end] = ACTIONS(228), + [3618] = { [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), [sym_name_at] = ACTIONS(228), [sym_qualified_name] = ACTIONS(228), [anon_sym__] = ACTIONS(228), @@ -104131,12 +123737,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), [anon_sym_Prop] = ACTIONS(228), [anon_sym_Set] = ACTIONS(228), @@ -104145,574 +123752,185 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_PIPE_RPAREN] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), [anon_sym_module] = ACTIONS(228), }, - [2936] = { - [anon_sym_RBRACE] = ACTIONS(4569), + [3619] = { + [anon_sym_RBRACE] = ACTIONS(4932), [sym_comment] = ACTIONS(86), }, - [2937] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4571), + [3620] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4934), [sym_comment] = ACTIONS(86), }, - [2938] = { - [sym_atomic_expr] = STATE(2963), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(3435), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3445), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), - }, - [2939] = { - [sym_atomic_expr] = STATE(2963), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(3435), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3451), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), - }, - [2940] = { - [ts_builtin_sym_end] = ACTIONS(1983), - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - }, - [2941] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4573), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [2942] = { + [3621] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4575), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_RPAREN] = ACTIONS(4934), }, - [2943] = { - [sym_expr] = STATE(2973), - [sym__expr1] = STATE(2941), - [sym__application] = STATE(503), - [sym__expr2] = STATE(504), - [sym__atomic_exprs1] = STATE(2942), - [sym_atomic_expr] = STATE(1976), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [sym_tele_arrow] = STATE(2943), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2039), - [aux_sym__application_repeat1] = STATE(2944), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(3435), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2474), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [3622] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4934), }, - [2944] = { - [sym__expr2] = STATE(1064), - [sym_atomic_expr] = STATE(1976), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(3435), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3445), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [3623] = { + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_PIPE_RPAREN] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), }, - [2945] = { - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4577), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [3624] = { + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_PIPE_RPAREN] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), }, - [2946] = { - [sym_lambda_bindings] = STATE(1941), - [sym_untyped_bindings] = STATE(2946), - [sym_typed_bindings] = STATE(2946), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(2458), - [anon_sym_DOT_DOT] = ACTIONS(2458), - [anon_sym_LBRACE] = ACTIONS(2460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2462), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [3625] = { + [ts_builtin_sym_end] = ACTIONS(2588), + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), }, - [2947] = { - [sym_expr] = STATE(1961), - [sym__expr1] = STATE(2941), - [sym__application] = STATE(503), - [sym__expr2] = STATE(504), - [sym__atomic_exprs1] = STATE(2942), - [sym_atomic_expr] = STATE(1976), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [sym_tele_arrow] = STATE(2943), + [3626] = { + [sym_expr] = STATE(4379), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2039), - [aux_sym__application_repeat1] = STATE(2944), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(3435), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2474), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), - }, - [2948] = { - [sym_rewrite_equations] = STATE(3896), - [sym_with_expressions] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(152), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(4525), - [anon_sym_with] = ACTIONS(4579), - }, - [2949] = { - [sym_where_clause] = STATE(1985), - [sym_rhs] = STATE(1986), - [ts_builtin_sym_end] = ACTIONS(170), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4581), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(2484), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4581), - [anon_sym_module] = ACTIONS(2486), - }, - [2950] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2949), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(3898), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(4577), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [2951] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4571), - }, - [2952] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4571), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2953] = { - [sym_expr] = STATE(3899), - [sym__expr1] = STATE(2941), - [sym__application] = STATE(503), - [sym__expr2] = STATE(504), - [sym__atomic_exprs1] = STATE(2942), - [sym_atomic_expr] = STATE(1976), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [sym_tele_arrow] = STATE(2943), + [3627] = { + [sym_expr] = STATE(4380), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2039), - [aux_sym__application_repeat1] = STATE(2944), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(3435), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2474), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), - }, - [2954] = { - [ts_builtin_sym_end] = ACTIONS(1997), - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - }, - [2955] = { - [sym__expr2] = STATE(1064), - [sym_atomic_expr] = STATE(1957), - [sym__atomic_expr_curly] = STATE(1958), - [sym__atomic_expr_no_curly] = STATE(1958), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(2434), - [sym_set_n] = ACTIONS(2434), - [sym_name_at] = ACTIONS(2436), - [sym_qualified_name] = ACTIONS(2434), - [anon_sym__] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2440), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4583), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(2434), - [anon_sym_Prop] = ACTIONS(2434), - [anon_sym_Set] = ACTIONS(2434), - [anon_sym_quote] = ACTIONS(2434), - [anon_sym_quoteTerm] = ACTIONS(2434), - [anon_sym_unquote] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_LPAREN_PIPE] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2434), - }, - [2956] = { - [sym__application] = STATE(1956), - [sym__expr2] = STATE(504), - [sym_atomic_expr] = STATE(1957), - [sym__atomic_expr_curly] = STATE(1958), - [sym__atomic_expr_no_curly] = STATE(1958), - [sym_non_absurd_lambda_clause] = STATE(1959), - [sym_absurd_lambda_clause] = STATE(1959), - [sym_lambda_clause] = STATE(3901), - [aux_sym__application_repeat1] = STATE(1962), - [sym_literal] = ACTIONS(2434), - [sym_set_n] = ACTIONS(2434), - [sym_name_at] = ACTIONS(2436), - [sym_qualified_name] = ACTIONS(2434), - [anon_sym__] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2440), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2442), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(2434), - [anon_sym_Prop] = ACTIONS(2434), - [anon_sym_Set] = ACTIONS(2434), - [anon_sym_quote] = ACTIONS(2434), - [anon_sym_quoteTerm] = ACTIONS(2434), - [anon_sym_unquote] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_LPAREN_PIPE] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2434), - [sym_catchall_pragma] = ACTIONS(2454), - }, - [2957] = { - [sym_semi] = STATE(2956), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3902), - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2958] = { - [sym_expr] = STATE(3903), + [3628] = { + [sym_expr] = STATE(4381), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -104748,13 +123966,315 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2959] = { - [anon_sym_RBRACE] = ACTIONS(3423), + [3629] = { + [anon_sym_RBRACE] = ACTIONS(4936), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3425), }, - [2960] = { - [sym_expr] = STATE(2968), + [3630] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4936), + [sym_comment] = ACTIONS(86), + }, + [3631] = { + [ts_builtin_sym_end] = ACTIONS(2244), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + }, + [3632] = { + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + [anon_sym_with] = ACTIONS(2965), + }, + [3633] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4936), + }, + [3634] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [3635] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [3636] = { + [ts_builtin_sym_end] = ACTIONS(3017), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + [anon_sym_with] = ACTIONS(3017), + }, + [3637] = { + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4938), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [3638] = { + [sym_lambda_bindings] = STATE(2929), + [sym_untyped_bindings] = STATE(3638), + [sym_typed_bindings] = STATE(3638), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_DOT_DOT] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3461), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), + }, + [3639] = { + [sym_expr] = STATE(2940), + [sym__expr1] = STATE(2694), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(2695), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(2698), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2682), + [aux_sym__application_repeat1] = STATE(2699), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3193), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3185), + [anon_sym_forall] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [3640] = { + [sym__expr1] = STATE(952), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(953), + [sym__declaration] = STATE(954), + [sym_function_clause] = STATE(955), + [aux_sym_source_file_repeat1] = STATE(1755), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [3641] = { + [sym_expr] = STATE(3649), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -104775,7 +124295,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3455), + [anon_sym_RBRACE] = ACTIONS(4223), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -104791,8 +124311,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2961] = { - [sym_expr] = STATE(2969), + [3642] = { + [sym_expr] = STATE(3650), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -104814,7 +124334,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3457), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4225), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -104829,8 +124349,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2962] = { - [sym_expr] = STATE(2970), + [3643] = { + [sym_expr] = STATE(3651), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -104863,20 +124383,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3457), + [anon_sym_RPAREN] = ACTIONS(4225), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2963] = { + [3644] = { [ts_builtin_sym_end] = ACTIONS(186), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), [sym_name_at] = ACTIONS(186), [sym_qualified_name] = ACTIONS(186), [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(186), @@ -104886,6 +124406,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), [anon_sym_Prop] = ACTIONS(186), [anon_sym_Set] = ACTIONS(186), @@ -104893,15 +124414,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(186), [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_RPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), [anon_sym_COLON] = ACTIONS(186), [anon_sym_module] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [2964] = { - [sym_expr] = STATE(2968), + [3645] = { + [sym_expr] = STATE(3649), [sym__expr1] = STATE(38), - [sym__application] = STATE(557), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -104920,7 +124443,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(3455), + [anon_sym_RBRACE] = ACTIONS(4223), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -104936,10 +124459,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2965] = { - [sym_expr] = STATE(2969), + [3646] = { + [sym_expr] = STATE(3650), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -104959,7 +124482,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3457), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4225), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -104974,10 +124497,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [2966] = { - [sym_expr] = STATE(2970), + [3647] = { + [sym_expr] = STATE(3651), [sym__expr1] = STATE(110), - [sym__application] = STATE(559), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -105008,20 +124531,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(3457), + [anon_sym_RPAREN] = ACTIONS(4225), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [2967] = { + [3648] = { [ts_builtin_sym_end] = ACTIONS(228), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), [sym_name_at] = ACTIONS(228), [sym_qualified_name] = ACTIONS(228), [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(228), @@ -105031,6 +124554,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), [anon_sym_Prop] = ACTIONS(228), [anon_sym_Set] = ACTIONS(228), @@ -105038,534 +124562,1297 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(228), [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), [anon_sym_COLON] = ACTIONS(228), [anon_sym_module] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [2968] = { - [anon_sym_RBRACE] = ACTIONS(4585), + [3649] = { + [anon_sym_RBRACE] = ACTIONS(4940), [sym_comment] = ACTIONS(86), }, - [2969] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4587), + [3650] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4942), [sym_comment] = ACTIONS(86), }, - [2970] = { + [3651] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4942), }, - [2971] = { + [3652] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4587), + [anon_sym_PIPE_RPAREN] = ACTIONS(4942), }, - [2972] = { - [sym_expr] = STATE(3906), - [sym__expr1] = STATE(1974), - [sym__application] = STATE(503), - [sym__expr2] = STATE(504), - [sym__atomic_exprs1] = STATE(1975), - [sym_atomic_expr] = STATE(1976), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [sym_tele_arrow] = STATE(1978), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(507), - [aux_sym__application_repeat1] = STATE(1979), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(2468), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(2470), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2474), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(636), - [anon_sym_forall] = ACTIONS(638), - [anon_sym_let] = ACTIONS(640), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [3653] = { + [sym_expr] = STATE(4386), + [sym__expr1] = STATE(2694), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(2695), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(2698), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2682), + [aux_sym__application_repeat1] = STATE(2699), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3193), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3185), + [anon_sym_forall] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), }, - [2973] = { - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), + [3654] = { + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_RPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), }, - [2974] = { - [sym_atomic_expr] = STATE(2196), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(3463), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [3655] = { + [ts_builtin_sym_end] = ACTIONS(2244), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_RPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), }, - [2975] = { - [sym_lambda_bindings] = STATE(3908), - [sym_untyped_bindings] = STATE(3909), - [sym_typed_bindings] = STATE(3909), - [anon_sym_DOT] = ACTIONS(2708), - [anon_sym_DOT_DOT] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2714), + [3656] = { + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_RPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + [anon_sym_with] = ACTIONS(2262), + }, + [3657] = { + [sym_vclose] = STATE(4387), + [sym__layout_close_brace] = ACTIONS(4231), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4589), - [anon_sym_LPAREN] = ACTIONS(2718), }, - [2976] = { - [sym_forall_bindings] = STATE(3910), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [3658] = { + [sym_vopen] = STATE(2700), + [sym_declarations] = STATE(2701), + [sym__declarations0] = STATE(4388), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), }, - [2977] = { - [sym__expr1] = STATE(1056), + [3659] = { + [ts_builtin_sym_end] = ACTIONS(2588), + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + }, + [3660] = { + [sym_expr] = STATE(4389), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [3661] = { + [sym_expr] = STATE(4390), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [3662] = { + [sym_expr] = STATE(4391), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [3663] = { + [anon_sym_RBRACE] = ACTIONS(4944), + [sym_comment] = ACTIONS(86), + }, + [3664] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4944), + [sym_comment] = ACTIONS(86), + }, + [3665] = { + [ts_builtin_sym_end] = ACTIONS(2244), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + }, + [3666] = { + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + }, + [3667] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4944), + }, + [3668] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [3669] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [3670] = { + [ts_builtin_sym_end] = ACTIONS(3017), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + }, + [3671] = { + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4946), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + }, + [3672] = { + [sym_lambda_bindings] = STATE(2953), + [sym_untyped_bindings] = STATE(3672), + [sym_typed_bindings] = STATE(3672), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_DOT_DOT] = ACTIONS(3483), + [anon_sym_LBRACE] = ACTIONS(3485), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3487), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(3489), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + }, + [3673] = { + [sym_expr] = STATE(2962), + [sym__expr1] = STATE(2738), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2739), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2740), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2734), + [aux_sym__application_repeat1] = STATE(2741), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(3245), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3247), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3239), + [anon_sym_forall] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), + }, + [3674] = { + [sym__expr1] = STATE(973), [sym__application] = STATE(94), [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), [sym_atomic_expr] = STATE(96), [sym__atomic_expr_curly] = STATE(97), [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1057), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(3911), + [sym_lhs] = STATE(974), + [sym__declaration] = STATE(975), + [sym_function_clause] = STATE(976), + [aux_sym_source_file_repeat1] = STATE(1791), [aux_sym__expr1_repeat1] = STATE(102), [aux_sym__application_repeat1] = STATE(103), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(104), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + }, + [3675] = { + [sym_expr] = STATE(3821), + [sym__expr1] = STATE(2738), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2739), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2740), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2734), + [aux_sym__application_repeat1] = STATE(2741), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(3245), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3247), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3239), + [anon_sym_forall] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), + }, + [3676] = { + [ts_builtin_sym_end] = ACTIONS(2244), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_RPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + }, + [3677] = { + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_RPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + }, + [3678] = { + [sym_vclose] = STATE(4394), + [sym__layout_close_brace] = ACTIONS(4253), + [sym_comment] = ACTIONS(86), + }, + [3679] = { + [sym_vopen] = STATE(2742), + [sym_declarations] = STATE(2743), + [sym__declarations0] = STATE(4395), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [3680] = { + [ts_builtin_sym_end] = ACTIONS(2588), + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + }, + [3681] = { + [sym_expr] = STATE(4396), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2978] = { - [sym__application] = STATE(2212), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(2979), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(3463), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3465), - [anon_sym_forall] = ACTIONS(3467), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [3682] = { + [sym_expr] = STATE(4397), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2979] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(3463), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), + [3683] = { + [sym_expr] = STATE(4398), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3465), - [anon_sym_forall] = ACTIONS(3467), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2980] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3471), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [3684] = { + [anon_sym_RBRACE] = ACTIONS(4948), + [sym_comment] = ACTIONS(86), }, - [2981] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3471), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3554), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3556), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [3685] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4948), + [sym_comment] = ACTIONS(86), }, - [2982] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [3686] = { + [ts_builtin_sym_end] = ACTIONS(2244), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), }, - [2983] = { + [3687] = { + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + }, + [3688] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4593), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_RPAREN] = ACTIONS(4948), + }, + [3689] = { + [ts_builtin_sym_end] = ACTIONS(3017), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + }, + [3690] = { + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4950), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + }, + [3691] = { + [sym_lambda_bindings] = STATE(2969), + [sym_untyped_bindings] = STATE(3691), + [sym_typed_bindings] = STATE(3691), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3509), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(3511), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + }, + [3692] = { + [sym_expr] = STATE(2978), + [sym__expr1] = STATE(2765), + [sym__application] = STATE(1145), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(2766), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_tele_arrow] = STATE(2767), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2768), + [aux_sym__application_repeat1] = STATE(2769), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(3265), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3269), + [anon_sym_forall] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), + }, + [3693] = { + [sym__expr1] = STATE(973), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(1000), + [sym__declaration] = STATE(1001), + [sym_function_clause] = STATE(1002), + [aux_sym_source_file_repeat1] = STATE(1815), + [aux_sym__expr1_repeat1] = STATE(102), + [aux_sym__application_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(440), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + }, + [3694] = { + [sym_expr] = STATE(2980), + [sym__expr1] = STATE(2765), + [sym__application] = STATE(1145), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(2766), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_tele_arrow] = STATE(2767), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2768), + [aux_sym__application_repeat1] = STATE(2769), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(3265), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3269), + [anon_sym_forall] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), }, - [2984] = { - [sym_expr] = STATE(3069), - [sym__expr1] = STATE(2982), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2983), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2984), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2978), - [aux_sym__application_repeat1] = STATE(2985), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3471), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3465), - [anon_sym_forall] = ACTIONS(3467), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [3695] = { + [sym_atomic_expr] = STATE(2981), + [sym__atomic_expr_curly] = STATE(1994), + [sym__atomic_expr_no_curly] = STATE(1994), + [sym_literal] = ACTIONS(2438), + [sym_set_n] = ACTIONS(2438), + [sym_name_at] = ACTIONS(4271), + [sym_qualified_name] = ACTIONS(2438), + [anon_sym__] = ACTIONS(2438), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2444), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2438), + [anon_sym_Prop] = ACTIONS(2438), + [anon_sym_Set] = ACTIONS(2438), + [anon_sym_quote] = ACTIONS(2438), + [anon_sym_quoteTerm] = ACTIONS(2438), + [anon_sym_unquote] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_LPAREN_PIPE] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2438), }, - [2985] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3471), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), + [3696] = { + [sym__expr2] = STATE(1996), + [sym_atomic_expr] = STATE(1993), + [sym__atomic_expr_curly] = STATE(1994), + [sym__atomic_expr_no_curly] = STATE(1994), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(2438), + [sym_set_n] = ACTIONS(2438), + [sym_name_at] = ACTIONS(4271), + [sym_qualified_name] = ACTIONS(2438), + [anon_sym__] = ACTIONS(2438), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2444), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3465), - [anon_sym_forall] = ACTIONS(3467), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [anon_sym_BSLASH] = ACTIONS(3269), + [anon_sym_forall] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_QMARK] = ACTIONS(2438), + [anon_sym_Prop] = ACTIONS(2438), + [anon_sym_Set] = ACTIONS(2438), + [anon_sym_quote] = ACTIONS(2438), + [anon_sym_quoteTerm] = ACTIONS(2438), + [anon_sym_unquote] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_LPAREN_PIPE] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2438), }, - [2986] = { - [sym_semi] = STATE(3913), - [aux_sym__declarations1_repeat1] = STATE(3914), - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), + [3697] = { + [ts_builtin_sym_end] = ACTIONS(2244), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_RPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), }, - [2987] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_where] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_RPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1380), - [anon_sym_module] = ACTIONS(1380), + [3698] = { + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_RPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), }, - [2988] = { + [3699] = { + [sym_vclose] = STATE(4401), + [sym__layout_close_brace] = ACTIONS(4273), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4595), }, - [2989] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_where] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), + [3700] = { + [sym_vopen] = STATE(2770), + [sym_declarations] = STATE(2771), + [sym__declarations0] = STATE(4402), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [2990] = { - [anon_sym_RBRACE] = ACTIONS(4597), + [3701] = { + [anon_sym_RBRACE] = ACTIONS(4952), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4954), }, - [2991] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4597), + [3702] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4952), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4601), + [anon_sym_COLON] = ACTIONS(4956), }, - [2992] = { + [3703] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4597), + [anon_sym_RPAREN] = ACTIONS(4952), }, - [2993] = { + [3704] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4958), }, - [2994] = { - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), + [3705] = { + [sym__layout_semicolon] = ACTIONS(1925), + [sym__layout_close_brace] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_DOT] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1925), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1925), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_where] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_COLON] = ACTIONS(1925), + [anon_sym_module] = ACTIONS(1925), + [anon_sym_rewrite] = ACTIONS(1925), + [anon_sym_with] = ACTIONS(1925), }, - [2995] = { - [sym_expr] = STATE(3920), + [3706] = { + [sym_expr] = STATE(4407), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -105601,36 +125888,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [2996] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), + [3707] = { + [sym__layout_semicolon] = ACTIONS(2366), + [sym__layout_close_brace] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2366), + [anon_sym_where] = ACTIONS(2366), + [anon_sym_COLON] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_rewrite] = ACTIONS(2366), + [anon_sym_with] = ACTIONS(2366), }, - [2997] = { - [sym_expr] = STATE(3921), + [3708] = { + [sym_expr] = STATE(4408), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -105666,511 +125937,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [2998] = { - [ts_builtin_sym_end] = ACTIONS(186), - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - }, - [2999] = { - [ts_builtin_sym_end] = ACTIONS(228), - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - }, - [3000] = { - [anon_sym_RBRACE] = ACTIONS(4605), - [sym_comment] = ACTIONS(86), - }, - [3001] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4607), - [sym_comment] = ACTIONS(86), - }, - [3002] = { - [ts_builtin_sym_end] = ACTIONS(1983), - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - }, - [3003] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4609), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [3004] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4611), - [anon_sym_PIPE] = ACTIONS(162), - }, - [3005] = { - [sym_expr] = STATE(3021), - [sym__expr1] = STATE(3003), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(3004), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(3005), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2046), - [aux_sym__application_repeat1] = STATE(2047), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(2546), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), - }, - [3006] = { - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4613), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [3007] = { - [sym_lambda_bindings] = STATE(1993), - [sym_untyped_bindings] = STATE(3007), - [sym_typed_bindings] = STATE(3007), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(2524), - [anon_sym_DOT_DOT] = ACTIONS(2524), - [anon_sym_LBRACE] = ACTIONS(2526), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2528), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - }, - [3008] = { - [sym_expr] = STATE(2013), - [sym__expr1] = STATE(3003), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(3004), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(3005), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2046), - [aux_sym__application_repeat1] = STATE(2047), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(2546), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), - }, - [3009] = { - [sym_where_clause] = STATE(2025), - [sym_rhs] = STATE(2026), - [ts_builtin_sym_end] = ACTIONS(170), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4615), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(2534), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4615), - [anon_sym_module] = ACTIONS(2536), - }, - [3010] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3009), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(3927), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(4613), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [3011] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4607), - }, - [3012] = { + [3709] = { + [sym_vclose] = STATE(4410), + [sym__layout_close_brace] = ACTIONS(4960), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4607), - }, - [3013] = { - [sym_expr] = STATE(3928), - [sym__expr1] = STATE(3003), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(3004), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(3005), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2046), - [aux_sym__application_repeat1] = STATE(2047), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(2546), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), - }, - [3014] = { - [ts_builtin_sym_end] = ACTIONS(1997), - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - }, - [3015] = { - [sym__expr2] = STATE(1101), - [sym_atomic_expr] = STATE(2009), - [sym__atomic_expr_curly] = STATE(2010), - [sym__atomic_expr_no_curly] = STATE(2010), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(2500), - [sym_set_n] = ACTIONS(2500), - [sym_name_at] = ACTIONS(2502), - [sym_qualified_name] = ACTIONS(2500), - [anon_sym__] = ACTIONS(2500), - [anon_sym_DOT] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2506), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4617), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(2500), - [anon_sym_Prop] = ACTIONS(2500), - [anon_sym_Set] = ACTIONS(2500), - [anon_sym_quote] = ACTIONS(2500), - [anon_sym_quoteTerm] = ACTIONS(2500), - [anon_sym_unquote] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2500), - }, - [3016] = { - [sym__application] = STATE(2008), - [sym__expr2] = STATE(523), - [sym_atomic_expr] = STATE(2009), - [sym__atomic_expr_curly] = STATE(2010), - [sym__atomic_expr_no_curly] = STATE(2010), - [sym_non_absurd_lambda_clause] = STATE(2011), - [sym_absurd_lambda_clause] = STATE(2011), - [sym_lambda_clause] = STATE(3930), - [aux_sym__application_repeat1] = STATE(2014), - [sym_literal] = ACTIONS(2500), - [sym_set_n] = ACTIONS(2500), - [sym_name_at] = ACTIONS(2502), - [sym_qualified_name] = ACTIONS(2500), - [anon_sym__] = ACTIONS(2500), - [anon_sym_DOT] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2506), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2508), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(2500), - [anon_sym_Prop] = ACTIONS(2500), - [anon_sym_Set] = ACTIONS(2500), - [anon_sym_quote] = ACTIONS(2500), - [anon_sym_quoteTerm] = ACTIONS(2500), - [anon_sym_unquote] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2500), - [sym_catchall_pragma] = ACTIONS(2520), - }, - [3017] = { - [sym_semi] = STATE(3016), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3931), - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), }, - [3018] = { - [sym_expr] = STATE(3932), + [3710] = { + [sym_expr] = STATE(4411), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -106206,905 +125979,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3019] = { - [anon_sym_RBRACE] = ACTIONS(3477), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3479), - }, - [3020] = { - [sym_expr] = STATE(3933), - [sym__expr1] = STATE(2019), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(2020), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(2021), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(528), - [aux_sym__application_repeat1] = STATE(529), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(652), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(660), - [anon_sym_forall] = ACTIONS(662), - [anon_sym_let] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), - }, - [3021] = { - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - }, - [3022] = { - [sym_atomic_expr] = STATE(2217), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3497), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2722), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [3023] = { - [sym_atomic_expr] = STATE(2217), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3497), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2728), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [3024] = { - [sym_lambda_bindings] = STATE(3935), - [sym_untyped_bindings] = STATE(3936), - [sym_typed_bindings] = STATE(3936), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_DOT_DOT] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2742), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(2746), - }, - [3025] = { - [sym_forall_bindings] = STATE(3937), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [3026] = { - [sym__expr1] = STATE(1056), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1083), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(3938), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(104), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(110), - [anon_sym_forall] = ACTIONS(112), - [anon_sym_let] = ACTIONS(114), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [3027] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4621), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [3028] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4623), - [anon_sym_PIPE] = ACTIONS(162), - }, - [3029] = { - [sym_expr] = STATE(2237), - [sym__expr1] = STATE(3027), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3028), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3029), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3030), - [aux_sym__application_repeat1] = STATE(3031), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3497), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3499), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3501), - [anon_sym_forall] = ACTIONS(3503), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [3030] = { - [sym__application] = STATE(2244), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2245), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(3941), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(4625), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3501), - [anon_sym_forall] = ACTIONS(3503), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - }, - [3031] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3497), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2722), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3501), - [anon_sym_forall] = ACTIONS(3503), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [3032] = { - [sym_semi] = STATE(3942), - [aux_sym__declarations1_repeat1] = STATE(3943), - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - }, - [3033] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_where] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_RPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_module] = ACTIONS(1380), - }, - [3034] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4627), - }, - [3035] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_where] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - }, - [3036] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [3037] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - }, - [3038] = { - [sym_expr] = STATE(2028), - [sym__expr1] = STATE(2043), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(2044), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(2045), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2046), - [aux_sym__application_repeat1] = STATE(2047), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(2546), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), - }, - [3039] = { - [sym_atomic_expr] = STATE(2029), - [sym__atomic_expr_curly] = STATE(1099), - [sym__atomic_expr_no_curly] = STATE(1099), - [sym_literal] = ACTIONS(1358), - [sym_set_n] = ACTIONS(1358), - [sym_name_at] = ACTIONS(3517), - [sym_qualified_name] = ACTIONS(1358), - [anon_sym__] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1364), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_Prop] = ACTIONS(1358), - [anon_sym_Set] = ACTIONS(1358), - [anon_sym_quote] = ACTIONS(1358), - [anon_sym_quoteTerm] = ACTIONS(1358), - [anon_sym_unquote] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LPAREN_PIPE] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1358), - }, - [3040] = { - [sym__expr2] = STATE(1101), - [sym_atomic_expr] = STATE(1098), - [sym__atomic_expr_curly] = STATE(1099), - [sym__atomic_expr_no_curly] = STATE(1099), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1358), - [sym_set_n] = ACTIONS(1358), - [sym_name_at] = ACTIONS(3517), - [sym_qualified_name] = ACTIONS(1358), - [anon_sym__] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1364), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_Prop] = ACTIONS(1358), - [anon_sym_Set] = ACTIONS(1358), - [anon_sym_quote] = ACTIONS(1358), - [anon_sym_quoteTerm] = ACTIONS(1358), - [anon_sym_unquote] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LPAREN_PIPE] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1358), - }, - [3041] = { - [anon_sym_SEMI] = ACTIONS(4629), - [anon_sym_DOT] = ACTIONS(4631), - [anon_sym_DOT_DOT] = ACTIONS(4629), - [anon_sym_LBRACE] = ACTIONS(4631), - [anon_sym_RBRACE] = ACTIONS(4629), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4629), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4629), - [anon_sym_EQ] = ACTIONS(4629), - [anon_sym_LPAREN] = ACTIONS(4629), - [anon_sym_RPAREN] = ACTIONS(4629), - [anon_sym_PIPE_RPAREN] = ACTIONS(4629), - [anon_sym_COLON] = ACTIONS(4629), - }, - [3042] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - }, - [3043] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - }, - [3044] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(2062), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2063), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2064), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1479), - [aux_sym__application_repeat1] = STATE(1480), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [3045] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(2062), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2063), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2064), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1479), - [aux_sym__application_repeat1] = STATE(1480), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [3046] = { - [sym_expr] = STATE(2093), - [sym__expr1] = STATE(3945), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(3946), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(3947), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2466), - [aux_sym__application_repeat1] = STATE(2474), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2966), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [3047] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2068), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(3047), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(2972), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2975), - [anon_sym_forall] = ACTIONS(2978), - [anon_sym_let] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - }, - [3048] = { - [sym_expr] = STATE(2511), - [sym__expr1] = STATE(2062), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2063), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2064), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1479), - [aux_sym__application_repeat1] = STATE(1480), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [3049] = { - [sym_semi] = STATE(2074), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3049), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3624), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3624), - [anon_sym_COLON] = ACTIONS(3624), - }, - [3050] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - }, - [3051] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - }, - [3052] = { - [anon_sym_RBRACE] = ACTIONS(4633), - [sym_comment] = ACTIONS(86), - }, - [3053] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4635), - [sym_comment] = ACTIONS(86), - }, - [3054] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4635), - }, - [3055] = { + [3711] = { + [anon_sym_RBRACE] = ACTIONS(4277), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4635), + [anon_sym_COLON] = ACTIONS(4279), }, - [3056] = { - [sym_expr] = STATE(3064), + [3712] = { + [sym_expr] = STATE(3720), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -107125,7 +126006,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(4299), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -107141,8 +126022,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3057] = { - [sym_expr] = STATE(3065), + [3713] = { + [sym_expr] = STATE(3721), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -107164,7 +126045,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3560), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4301), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -107179,8 +126060,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3058] = { - [sym_expr] = STATE(3066), + [3714] = { + [sym_expr] = STATE(3722), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -107213,12 +126094,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3560), + [anon_sym_RPAREN] = ACTIONS(4301), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3059] = { - [ts_builtin_sym_end] = ACTIONS(186), + [3715] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), [anon_sym_SEMI] = ACTIONS(186), @@ -107227,7 +126109,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(186), @@ -107237,7 +126118,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), [anon_sym_Prop] = ACTIONS(186), [anon_sym_Set] = ACTIONS(186), @@ -107245,16 +126125,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(186), [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), [anon_sym_COLON] = ACTIONS(186), [anon_sym_module] = ACTIONS(186), + [anon_sym_rewrite] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [3060] = { - [sym_expr] = STATE(3064), + [3716] = { + [sym_expr] = STATE(3720), [sym__expr1] = STATE(38), - [sym__application] = STATE(557), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -107273,7 +126154,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(4299), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -107289,10 +126170,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3061] = { - [sym_expr] = STATE(3065), + [3717] = { + [sym_expr] = STATE(3721), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -107312,7 +126193,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3560), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4301), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -107327,10 +126208,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [3062] = { - [sym_expr] = STATE(3066), + [3718] = { + [sym_expr] = STATE(3722), [sym__expr1] = STATE(110), - [sym__application] = STATE(559), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -107361,12 +126242,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(3560), + [anon_sym_RPAREN] = ACTIONS(4301), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3063] = { - [ts_builtin_sym_end] = ACTIONS(228), + [3719] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), [anon_sym_SEMI] = ACTIONS(228), @@ -107375,7 +126257,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(228), @@ -107385,7 +126266,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), [anon_sym_Prop] = ACTIONS(228), [anon_sym_Set] = ACTIONS(228), @@ -107393,510 +126273,354 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(228), [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), [anon_sym_COLON] = ACTIONS(228), [anon_sym_module] = ACTIONS(228), + [anon_sym_rewrite] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [3064] = { - [anon_sym_RBRACE] = ACTIONS(4637), + [3720] = { + [anon_sym_RBRACE] = ACTIONS(4962), [sym_comment] = ACTIONS(86), }, - [3065] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4639), + [3721] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4964), [sym_comment] = ACTIONS(86), }, - [3066] = { + [3722] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4639), + [anon_sym_RPAREN] = ACTIONS(4964), }, - [3067] = { + [3723] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4639), - }, - [3068] = { - [sym_expr] = STATE(3952), - [sym__expr1] = STATE(2094), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2095), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2098), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1254), - [aux_sym__application_repeat1] = STATE(2099), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2602), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2604), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1564), - [anon_sym_forall] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [3069] = { - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_RPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - }, - [3070] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2068), - [sym__declaration] = STATE(3953), - [sym_function_clause] = STATE(579), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [3071] = { - [sym_semi] = STATE(3070), - [aux_sym__declarations1_repeat1] = STATE(3954), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - }, - [3072] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2068), - [sym__declaration] = STATE(2100), - [sym_function_clause] = STATE(579), - [sym__declarations1] = STATE(3955), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), - }, - [3073] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), + [anon_sym_PIPE_RPAREN] = ACTIONS(4964), }, - [3074] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - }, - [3075] = { - [sym_expr] = STATE(739), - [sym__expr1] = STATE(2111), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(2112), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(2113), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2114), - [aux_sym__application_repeat1] = STATE(2115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2624), + [3724] = { + [sym_expr] = STATE(4414), + [sym__expr1] = STATE(2799), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(2800), + [sym_atomic_expr] = STATE(2801), + [sym__atomic_expr_curly] = STATE(2802), + [sym__atomic_expr_no_curly] = STATE(2802), + [sym_tele_arrow] = STATE(2803), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(2804), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3297), + [sym_set_n] = ACTIONS(3297), + [sym_name_at] = ACTIONS(3299), + [sym_qualified_name] = ACTIONS(3297), + [anon_sym__] = ACTIONS(3297), + [anon_sym_DOT] = ACTIONS(3301), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3305), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_Prop] = ACTIONS(3297), + [anon_sym_Set] = ACTIONS(3297), + [anon_sym_quote] = ACTIONS(3297), + [anon_sym_quoteTerm] = ACTIONS(3297), + [anon_sym_unquote] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_LPAREN_PIPE] = ACTIONS(3309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), }, - [3076] = { - [sym_atomic_expr] = STATE(3083), - [sym__atomic_expr_curly] = STATE(2135), - [sym__atomic_expr_no_curly] = STATE(2135), - [sym_literal] = ACTIONS(2630), - [sym_set_n] = ACTIONS(2630), - [sym_name_at] = ACTIONS(3578), - [sym_qualified_name] = ACTIONS(2630), - [anon_sym__] = ACTIONS(2630), - [anon_sym_DOT] = ACTIONS(3578), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2636), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2630), - [anon_sym_Prop] = ACTIONS(2630), - [anon_sym_Set] = ACTIONS(2630), - [anon_sym_quote] = ACTIONS(2630), - [anon_sym_quoteTerm] = ACTIONS(2630), - [anon_sym_unquote] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2638), - [anon_sym_LPAREN_PIPE] = ACTIONS(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2630), + [3725] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym__layout_close_brace] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(781), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_where] = ACTIONS(781), + [anon_sym_COLON] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_rewrite] = ACTIONS(781), + [anon_sym_with] = ACTIONS(781), }, - [3077] = { - [sym__expr2] = STATE(289), - [sym_atomic_expr] = STATE(2134), - [sym__atomic_expr_curly] = STATE(2135), - [sym__atomic_expr_no_curly] = STATE(2135), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2630), - [sym_set_n] = ACTIONS(2630), - [sym_name_at] = ACTIONS(3578), - [sym_qualified_name] = ACTIONS(2630), - [anon_sym__] = ACTIONS(2630), - [anon_sym_DOT] = ACTIONS(3578), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2636), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(2630), - [anon_sym_Prop] = ACTIONS(2630), - [anon_sym_Set] = ACTIONS(2630), - [anon_sym_quote] = ACTIONS(2630), - [anon_sym_quoteTerm] = ACTIONS(2630), - [anon_sym_unquote] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2638), - [anon_sym_LPAREN_PIPE] = ACTIONS(2640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2630), + [3726] = { + [sym__layout_semicolon] = ACTIONS(3747), + [sym__layout_close_brace] = ACTIONS(3747), + [sym_literal] = ACTIONS(1194), + [sym_set_n] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1194), + [sym_name_at] = ACTIONS(1194), + [sym_qualified_name] = ACTIONS(1194), + [anon_sym__] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1194), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1194), + [anon_sym_where] = ACTIONS(1194), + [anon_sym_forall] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_in] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(1194), + [anon_sym_Prop] = ACTIONS(1194), + [anon_sym_Set] = ACTIONS(1194), + [anon_sym_quote] = ACTIONS(1194), + [anon_sym_quoteTerm] = ACTIONS(1194), + [anon_sym_unquote] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LPAREN_PIPE] = ACTIONS(1194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_rewrite] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), }, - [3078] = { - [sym_expr] = STATE(1314), - [sym__expr1] = STATE(2111), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(2112), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(2113), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2114), - [aux_sym__application_repeat1] = STATE(2115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2624), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [3727] = { + [sym__layout_semicolon] = ACTIONS(3765), + [sym__layout_close_brace] = ACTIONS(3765), + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_rewrite] = ACTIONS(1212), + [anon_sym_with] = ACTIONS(1212), }, - [3079] = { - [sym_expr] = STATE(2144), - [sym__expr1] = STATE(3958), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(3959), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(3960), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3269), - [aux_sym__application_repeat1] = STATE(3961), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(4641), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [3728] = { + [sym__layout_semicolon] = ACTIONS(3767), + [sym__layout_close_brace] = ACTIONS(3767), + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_rewrite] = ACTIONS(1214), + [anon_sym_with] = ACTIONS(1214), }, - [3080] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), + [3729] = { + [sym__layout_semicolon] = ACTIONS(3785), + [sym__layout_close_brace] = ACTIONS(3785), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + [anon_sym_rewrite] = ACTIONS(1244), + [anon_sym_with] = ACTIONS(1244), + }, + [3730] = { + [sym_vclose] = STATE(4416), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2119), - [sym__declaration] = STATE(600), - [sym_function_clause] = STATE(601), - [aux_sym_source_file_repeat1] = STATE(3080), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(1802), - [sym_set_n] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(3829), - [sym_qualified_name] = ACTIONS(1802), - [anon_sym__] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE_RBRACE] = ACTIONS(680), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(3832), - [anon_sym_forall] = ACTIONS(3835), - [anon_sym_let] = ACTIONS(3838), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1802), - [anon_sym_Prop] = ACTIONS(1802), - [anon_sym_Set] = ACTIONS(1802), - [anon_sym_quote] = ACTIONS(1802), - [anon_sym_quoteTerm] = ACTIONS(1802), - [anon_sym_unquote] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LPAREN_PIPE] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON] = ACTIONS(680), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(4417), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(4966), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [3081] = { - [sym_expr] = STATE(3281), - [sym__expr1] = STATE(2111), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(2112), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(2113), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2114), - [aux_sym__application_repeat1] = STATE(2115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2624), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [3731] = { + [sym__layout_semicolon] = ACTIONS(3793), + [sym__layout_close_brace] = ACTIONS(3793), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), + [anon_sym_rewrite] = ACTIONS(1284), + [anon_sym_with] = ACTIONS(1284), }, - [3082] = { - [sym_semi] = STATE(2125), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3082), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3624), + [3732] = { + [sym__layout_semicolon] = ACTIONS(3795), + [sym__layout_close_brace] = ACTIONS(3795), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_rewrite] = ACTIONS(1286), + [anon_sym_with] = ACTIONS(1286), + }, + [3733] = { [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3624), - [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_where] = ACTIONS(4968), }, - [3083] = { + [3734] = { + [sym__layout_semicolon] = ACTIONS(3799), + [sym__layout_close_brace] = ACTIONS(3799), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), + [anon_sym_rewrite] = ACTIONS(1292), + [anon_sym_with] = ACTIONS(1292), + }, + [3735] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), [anon_sym_SEMI] = ACTIONS(186), @@ -107906,11 +126630,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(186), [anon_sym_PIPE] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), @@ -107923,8 +126647,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [3084] = { + [3736] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), [anon_sym_SEMI] = ACTIONS(228), @@ -107934,11 +126662,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(228), [anon_sym_PIPE] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), @@ -107951,138 +126679,405 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [3085] = { - [anon_sym_RBRACE] = ACTIONS(4645), + [3737] = { + [anon_sym_RBRACE] = ACTIONS(4970), [sym_comment] = ACTIONS(86), }, - [3086] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4647), + [3738] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4972), [sym_comment] = ACTIONS(86), }, - [3087] = { + [3739] = { + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4976), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4978), }, - [3088] = { + [3740] = { + [sym__application] = STATE(4425), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(4426), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(4980), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), + }, + [3741] = { + [sym__application] = STATE(4427), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4980), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [3742] = { + [sym_vopen] = STATE(4428), + [sym__layout_open_brace] = ACTIONS(426), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4647), }, - [3089] = { - [sym_expr] = STATE(3097), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), + [3743] = { + [sym_binding_name] = STATE(4429), + [sym__application] = STATE(4430), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(3604), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(4980), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3090] = { - [sym_expr] = STATE(3098), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3606), + [3744] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4982), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_where] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), + [anon_sym_with] = ACTIONS(757), + }, + [3745] = { + [sym_lambda_bindings] = STATE(4424), + [sym_untyped_bindings] = STATE(3745), + [sym_typed_bindings] = STATE(3745), + [sym__layout_semicolon] = ACTIONS(763), + [sym__layout_close_brace] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_DOT_DOT] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4317), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_where] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(4321), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_module] = ACTIONS(763), + [anon_sym_with] = ACTIONS(763), + }, + [3746] = { + [sym_expr] = STATE(4440), + [sym__expr1] = STATE(4441), + [sym__application] = STATE(2825), + [sym__expr2] = STATE(2826), + [sym__atomic_exprs1] = STATE(4442), + [sym_atomic_expr] = STATE(4443), + [sym__atomic_expr_curly] = STATE(4444), + [sym__atomic_expr_no_curly] = STATE(4444), + [sym_tele_arrow] = STATE(4445), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2829), + [aux_sym__application_repeat1] = STATE(4446), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4986), + [sym_set_n] = ACTIONS(4986), + [sym_name_at] = ACTIONS(4988), + [sym_qualified_name] = ACTIONS(4986), + [anon_sym__] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4994), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3321), + [anon_sym_forall] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_Prop] = ACTIONS(4986), + [anon_sym_Set] = ACTIONS(4986), + [anon_sym_quote] = ACTIONS(4986), + [anon_sym_quoteTerm] = ACTIONS(4986), + [anon_sym_unquote] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_LPAREN_PIPE] = ACTIONS(4998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), + }, + [3747] = { + [sym_rewrite_equations] = STATE(4448), + [sym_with_expressions] = STATE(4449), + [sym__layout_semicolon] = ACTIONS(1711), + [sym__layout_close_brace] = ACTIONS(1711), + [sym_literal] = ACTIONS(152), + [sym_set_n] = ACTIONS(152), + [anon_sym_SEMI] = ACTIONS(152), + [sym_name_at] = ACTIONS(152), + [sym_qualified_name] = ACTIONS(152), + [anon_sym__] = ACTIONS(152), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(152), + [anon_sym_LBRACE_LBRACE] = ACTIONS(152), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(152), + [anon_sym_where] = ACTIONS(152), + [anon_sym_forall] = ACTIONS(152), + [anon_sym_let] = ACTIONS(152), + [anon_sym_in] = ACTIONS(152), + [anon_sym_QMARK] = ACTIONS(152), + [anon_sym_Prop] = ACTIONS(152), + [anon_sym_Set] = ACTIONS(152), + [anon_sym_quote] = ACTIONS(152), + [anon_sym_quoteTerm] = ACTIONS(152), + [anon_sym_unquote] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_LPAREN_PIPE] = ACTIONS(152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(152), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_module] = ACTIONS(152), + [anon_sym_rewrite] = ACTIONS(2949), + [anon_sym_with] = ACTIONS(152), }, - [3091] = { - [sym_expr] = STATE(3099), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [3748] = { + [sym_where_clause] = STATE(4453), + [sym_rhs] = STATE(4454), + [sym__layout_semicolon] = ACTIONS(1717), + [sym__layout_close_brace] = ACTIONS(1717), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(3606), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(170), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(170), + [anon_sym_with] = ACTIONS(170), + }, + [3749] = { + [sym__layout_semicolon] = ACTIONS(1725), + [sym__layout_close_brace] = ACTIONS(1725), + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [anon_sym_SEMI] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), + [anon_sym_with] = ACTIONS(178), + }, + [3750] = { + [sym__layout_semicolon] = ACTIONS(1727), + [sym__layout_close_brace] = ACTIONS(1727), + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [anon_sym_SEMI] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), + [anon_sym_with] = ACTIONS(180), }, - [3092] = { + [3751] = { + [sym__expr1] = STATE(3747), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(3748), + [sym__declaration] = STATE(3749), + [sym_function_clause] = STATE(3750), + [aux_sym_source_file_repeat1] = STATE(4455), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_in] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), + }, + [3752] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(4972), + }, + [3753] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(4972), + }, + [3754] = { + [sym__layout_semicolon] = ACTIONS(787), + [sym__layout_close_brace] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(787), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_where] = ACTIONS(787), + [anon_sym_COLON] = ACTIONS(787), + [anon_sym_module] = ACTIONS(787), + [anon_sym_with] = ACTIONS(787), + }, + [3755] = { + [sym__layout_semicolon] = ACTIONS(789), + [sym__layout_close_brace] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_where] = ACTIONS(789), + [anon_sym_COLON] = ACTIONS(789), + [anon_sym_module] = ACTIONS(789), + [anon_sym_with] = ACTIONS(789), + }, + [3756] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), [anon_sym_SEMI] = ACTIONS(186), @@ -108092,16 +127087,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), [anon_sym_EQ] = ACTIONS(186), [anon_sym_PIPE] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), [anon_sym_Prop] = ACTIONS(186), [anon_sym_Set] = ACTIONS(186), @@ -108114,121 +127106,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(186), [anon_sym_module] = ACTIONS(186), }, - [3093] = { - [sym_expr] = STATE(3097), - [sym__expr1] = STATE(38), - [sym__application] = STATE(557), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(173), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(208), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(3604), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_forall] = ACTIONS(220), - [anon_sym_let] = ACTIONS(222), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [3094] = { - [sym_expr] = STATE(3098), - [sym__expr1] = STATE(60), - [sym__application] = STATE(558), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(188), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(232), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3606), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(242), - [anon_sym_forall] = ACTIONS(244), - [anon_sym_let] = ACTIONS(246), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), - }, - [3095] = { - [sym_expr] = STATE(3099), - [sym__expr1] = STATE(110), - [sym__application] = STATE(559), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(3606), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [3096] = { + [3757] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), [anon_sym_SEMI] = ACTIONS(228), @@ -108238,16 +127118,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), [anon_sym_EQ] = ACTIONS(228), [anon_sym_PIPE] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), [anon_sym_Prop] = ACTIONS(228), [anon_sym_Set] = ACTIONS(228), @@ -108260,760 +127137,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(228), [anon_sym_module] = ACTIONS(228), }, - [3097] = { - [anon_sym_RBRACE] = ACTIONS(4649), - [sym_comment] = ACTIONS(86), - }, - [3098] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4651), - [sym_comment] = ACTIONS(86), - }, - [3099] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4651), - }, - [3100] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4651), - }, - [3101] = { - [sym_expr] = STATE(3966), - [sym__expr1] = STATE(2145), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(2146), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(2149), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1431), - [aux_sym__application_repeat1] = STATE(2150), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(2644), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2646), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1770), - [anon_sym_forall] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - }, - [3102] = { - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - }, - [3103] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2119), - [sym__declaration] = STATE(3967), - [sym_function_clause] = STATE(601), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [3104] = { - [sym_semi] = STATE(3103), - [aux_sym__declarations1_repeat1] = STATE(3968), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - }, - [3105] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2119), - [sym__declaration] = STATE(2151), - [sym_function_clause] = STATE(601), - [sym__declarations1] = STATE(3969), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2552), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(2552), - }, - [3106] = { - [sym_atomic_expr] = STATE(2217), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3614), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2722), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [3107] = { - [sym_atomic_expr] = STATE(2217), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3614), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2728), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [3108] = { - [sym_lambda_bindings] = STATE(3970), - [sym_untyped_bindings] = STATE(3971), - [sym_typed_bindings] = STATE(3971), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_DOT_DOT] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2742), + [3758] = { + [anon_sym_RBRACE] = ACTIONS(5002), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2746), }, - [3109] = { - [sym_forall_bindings] = STATE(3972), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [3759] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5004), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [3110] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3973), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(3974), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [3111] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), }, - [3112] = { + [3760] = { + [anon_sym_LBRACE] = ACTIONS(5006), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5008), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4655), - [anon_sym_PIPE] = ACTIONS(162), - }, - [3113] = { - [sym_expr] = STATE(2237), - [sym__expr1] = STATE(3111), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3112), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3113), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3114), - [aux_sym__application_repeat1] = STATE(3115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3614), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [3114] = { - [sym__application] = STATE(2244), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2245), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(3977), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(4657), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - }, - [3115] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3614), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2722), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [3116] = { - [sym_expr] = STATE(2643), - [sym__expr1] = STATE(2166), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2167), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2168), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(2169), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2676), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [3117] = { - [sym_expr] = STATE(3577), - [sym__expr1] = STATE(2166), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2167), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2168), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(2169), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(2676), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [3118] = { - [sym_semi] = STATE(2172), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3118), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_rewrite] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - }, - [3119] = { - [sym__expr1] = STATE(1484), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1485), - [sym__declaration] = STATE(2644), - [sym_function_clause] = STATE(100), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [3120] = { - [sym_semi] = STATE(3119), - [aux_sym__declarations1_repeat1] = STATE(3978), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_rewrite] = ACTIONS(2550), - [anon_sym_with] = ACTIONS(2550), - }, - [3121] = { - [sym__expr1] = STATE(1484), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1485), - [sym__declaration] = STATE(2175), - [sym_function_clause] = STATE(100), - [sym__declarations1] = STATE(2646), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - [anon_sym_rewrite] = ACTIONS(2552), - [anon_sym_with] = ACTIONS(2552), - }, - [3122] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(5010), }, - [3123] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), - }, - [3124] = { - [sym__application] = STATE(3979), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [3761] = { + [sym__application] = STATE(4462), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(4463), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [3125] = { - [sym__application] = STATE(3980), + [3762] = { + [sym__application] = STATE(4464), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), [sym_name_at] = ACTIONS(410), @@ -109022,6 +127201,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(410), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5012), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(416), [anon_sym_forall] = ACTIONS(418), @@ -109036,27 +127216,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3126] = { - [sym_binding_name] = STATE(3981), - [sym__application] = STATE(3982), + [3763] = { + [sym_vopen] = STATE(4465), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), + }, + [3764] = { + [sym_binding_name] = STATE(4466), + [sym__application] = STATE(4467), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), [anon_sym_QMARK] = ACTIONS(408), [anon_sym_Prop] = ACTIONS(408), [anon_sym_Set] = ACTIONS(408), @@ -109064,119 +127249,246 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(408), [anon_sym_unquote] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(5012), [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3127] = { - [ts_builtin_sym_end] = ACTIONS(968), - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), - [anon_sym_with] = ACTIONS(968), - }, - [3128] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(4659), + [3765] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_DASH_GT] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_where] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), }, - [3129] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(4663), - [sym_comment] = ACTIONS(86), + [3766] = { + [sym_lambda_bindings] = STATE(4461), + [sym_untyped_bindings] = STATE(3766), + [sym_typed_bindings] = STATE(3766), + [sym__layout_semicolon] = ACTIONS(763), + [sym__layout_close_brace] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4333), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_where] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_module] = ACTIONS(763), }, - [3130] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4659), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4665), + [3767] = { + [sym_expr] = STATE(4477), + [sym__expr1] = STATE(4478), + [sym__application] = STATE(2841), + [sym__expr2] = STATE(2842), + [sym__atomic_exprs1] = STATE(4479), + [sym_atomic_expr] = STATE(4480), + [sym__atomic_expr_curly] = STATE(4481), + [sym__atomic_expr_no_curly] = STATE(4481), + [sym_tele_arrow] = STATE(4482), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2845), + [aux_sym__application_repeat1] = STATE(4483), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(5018), + [sym_set_n] = ACTIONS(5018), + [sym_name_at] = ACTIONS(5020), + [sym_qualified_name] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5026), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3339), + [anon_sym_forall] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_QMARK] = ACTIONS(5018), + [anon_sym_Prop] = ACTIONS(5018), + [anon_sym_Set] = ACTIONS(5018), + [anon_sym_quote] = ACTIONS(5018), + [anon_sym_quoteTerm] = ACTIONS(5018), + [anon_sym_unquote] = ACTIONS(5018), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_LPAREN_PIPE] = ACTIONS(5030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), }, - [3131] = { - [ts_builtin_sym_end] = ACTIONS(30), - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [3768] = { + [sym_where_clause] = STATE(4487), + [sym_rhs] = STATE(4488), + [sym__layout_semicolon] = ACTIONS(1717), + [sym__layout_close_brace] = ACTIONS(1717), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(170), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(170), + [anon_sym_module] = ACTIONS(170), + }, + [3769] = { + [sym__layout_semicolon] = ACTIONS(1725), + [sym__layout_close_brace] = ACTIONS(1725), + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [anon_sym_SEMI] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), + }, + [3770] = { + [sym__layout_semicolon] = ACTIONS(1727), + [sym__layout_close_brace] = ACTIONS(1727), + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [anon_sym_SEMI] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), + }, + [3771] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(3768), + [sym__declaration] = STATE(3769), + [sym_function_clause] = STATE(3770), + [aux_sym_source_file_repeat1] = STATE(4489), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_in] = ACTIONS(5032), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + }, + [3772] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5004), }, - [3132] = { - [sym_atomic_expr] = STATE(3987), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(3651), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), + [3773] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(5004), }, - [3133] = { - [sym_expr] = STATE(3989), + [3774] = { + [sym__layout_semicolon] = ACTIONS(787), + [sym__layout_close_brace] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(787), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_where] = ACTIONS(787), + [anon_sym_COLON] = ACTIONS(787), + [anon_sym_module] = ACTIONS(787), + }, + [3775] = { + [sym__layout_semicolon] = ACTIONS(789), + [sym__layout_close_brace] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_where] = ACTIONS(789), + [anon_sym_COLON] = ACTIONS(789), + [anon_sym_module] = ACTIONS(789), + }, + [3776] = { + [sym_expr] = STATE(3784), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -109197,7 +127509,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_RBRACE] = ACTIONS(4351), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -109213,8 +127525,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3134] = { - [sym_expr] = STATE(3990), + [3777] = { + [sym_expr] = STATE(3785), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -109236,7 +127548,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4669), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4353), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -109251,45 +127563,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3135] = { - [sym_expr] = STATE(3993), - [sym__expr1] = STATE(3994), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3995), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3996), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2460), - [aux_sym__application_repeat1] = STATE(3997), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4671), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [3136] = { - [sym_expr] = STATE(3998), + [3778] = { + [sym_expr] = STATE(3798), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -109322,856 +127597,242 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(4669), + [anon_sym_RPAREN] = ACTIONS(4353), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3137] = { - [sym_expr] = STATE(3999), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), + [3779] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + }, + [3780] = { + [sym_expr] = STATE(3784), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [3138] = { - [sym__application] = STATE(4001), - [sym__expr2] = STATE(1235), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [aux_sym__application_repeat1] = STATE(4002), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(3651), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - }, - [3139] = { - [ts_builtin_sym_end] = ACTIONS(1044), - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_RPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_with] = ACTIONS(1044), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3140] = { - [ts_builtin_sym_end] = ACTIONS(164), - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [3781] = { + [sym_expr] = STATE(3785), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4353), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [3141] = { - [ts_builtin_sym_end] = ACTIONS(168), - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [3782] = { + [sym_expr] = STATE(3798), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(4353), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3142] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), + [3783] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_with] = ACTIONS(1046), - }, - [3143] = { - [sym_semi] = STATE(4003), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4004), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_with] = ACTIONS(1048), - }, - [3144] = { - [ts_builtin_sym_end] = ACTIONS(1052), - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_RPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_COLON] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_with] = ACTIONS(1052), - }, - [3145] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(3651), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [3146] = { + [3784] = { + [anon_sym_RBRACE] = ACTIONS(5034), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4659), }, - [3147] = { + [3785] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5036), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4677), - }, - [3148] = { - [sym_expr] = STATE(3985), - [sym__expr1] = STATE(3152), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3153), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3154), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1238), - [aux_sym__application_repeat1] = STATE(3155), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3675), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1546), - [anon_sym_forall] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [3149] = { - [sym__application] = STATE(4006), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(3647), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), - }, - [3150] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3675), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [3151] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3675), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4547), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4549), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [3152] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), }, - [3153] = { + [3786] = { + [anon_sym_LBRACE] = ACTIONS(5038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5040), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4681), - [anon_sym_PIPE] = ACTIONS(162), - }, - [3154] = { - [sym_expr] = STATE(3881), - [sym__expr1] = STATE(3152), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3153), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3154), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1238), - [aux_sym__application_repeat1] = STATE(3155), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3675), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1546), - [anon_sym_forall] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [3155] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3675), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1546), - [anon_sym_forall] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [3156] = { - [sym__expr1] = STATE(2906), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(1238), - [aux_sym__application_repeat1] = STATE(1239), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(1540), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1546), - [anon_sym_forall] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [3157] = { - [sym_with_expressions] = STATE(2907), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(3679), - }, - [3158] = { - [sym_expr] = STATE(2915), - [sym__expr1] = STATE(3152), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3153), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3154), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1238), - [aux_sym__application_repeat1] = STATE(3155), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3675), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1546), - [anon_sym_forall] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [3159] = { - [sym__expr1] = STATE(3434), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3435), - [sym__declaration] = STATE(4008), - [sym_function_clause] = STATE(1038), - [sym__declarations1] = STATE(2923), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), - [anon_sym_with] = ACTIONS(670), - }, - [3160] = { - [sym_anonymous_name] = STATE(4009), - [sym_name] = ACTIONS(4683), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), - }, - [3161] = { - [sym_where_clause] = STATE(2925), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(3683), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(3685), - [anon_sym_with] = ACTIONS(678), - }, - [3162] = { - [sym__expr1] = STATE(2189), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2190), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(3162), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(1596), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1599), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(1602), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), - }, - [3163] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [3164] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(5042), }, - [3165] = { - [sym__application] = STATE(4010), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [3787] = { + [sym__application] = STATE(4496), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(4497), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(5044), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [3166] = { - [sym__application] = STATE(4011), + [3788] = { + [sym__application] = STATE(4498), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), [sym_name_at] = ACTIONS(410), @@ -110180,6 +127841,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(410), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5044), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(416), [anon_sym_forall] = ACTIONS(418), @@ -110194,89 +127856,300 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3167] = { - [sym_binding_name] = STATE(4012), - [sym__application] = STATE(4013), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [3789] = { + [sym_vopen] = STATE(4499), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), + }, + [3790] = { + [sym_binding_name] = STATE(4500), + [sym__application] = STATE(4501), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(5044), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [3791] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_where] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), + }, + [3792] = { + [sym_lambda_bindings] = STATE(4495), + [sym_untyped_bindings] = STATE(3792), + [sym_typed_bindings] = STATE(3792), + [sym__layout_semicolon] = ACTIONS(763), + [sym__layout_close_brace] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4361), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(763), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_where] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_module] = ACTIONS(763), + }, + [3793] = { + [sym_expr] = STATE(4504), + [sym__expr1] = STATE(4505), + [sym__application] = STATE(2860), + [sym__expr2] = STATE(2861), + [sym__atomic_exprs1] = STATE(4506), + [sym_atomic_expr] = STATE(2863), + [sym__atomic_expr_curly] = STATE(2864), + [sym__atomic_expr_no_curly] = STATE(2864), + [sym_tele_arrow] = STATE(4507), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2866), + [aux_sym__application_repeat1] = STATE(2867), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3349), + [sym_set_n] = ACTIONS(3349), + [sym_name_at] = ACTIONS(3351), + [sym_qualified_name] = ACTIONS(3349), + [anon_sym__] = ACTIONS(3349), + [anon_sym_DOT] = ACTIONS(3353), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3357), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3359), + [anon_sym_forall] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_QMARK] = ACTIONS(3349), + [anon_sym_Prop] = ACTIONS(3349), + [anon_sym_Set] = ACTIONS(3349), + [anon_sym_quote] = ACTIONS(3349), + [anon_sym_quoteTerm] = ACTIONS(3349), + [anon_sym_unquote] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_LPAREN_PIPE] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), + }, + [3794] = { + [sym_where_clause] = STATE(4510), + [sym_rhs] = STATE(4511), + [sym__layout_semicolon] = ACTIONS(1717), + [sym__layout_close_brace] = ACTIONS(1717), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(170), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(3905), + [anon_sym_module] = ACTIONS(170), + }, + [3795] = { + [sym__layout_semicolon] = ACTIONS(1725), + [sym__layout_close_brace] = ACTIONS(1725), + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [anon_sym_SEMI] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), + }, + [3796] = { + [sym__layout_semicolon] = ACTIONS(1727), + [sym__layout_close_brace] = ACTIONS(1727), + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [anon_sym_SEMI] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), }, - [3168] = { - [ts_builtin_sym_end] = ACTIONS(968), - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), + [3797] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(3794), + [sym__declaration] = STATE(3795), + [sym_function_clause] = STATE(3796), + [aux_sym_source_file_repeat1] = STATE(4512), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [sym_literal] = ACTIONS(1861), + [sym_set_n] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(1863), + [sym_qualified_name] = ACTIONS(1861), + [anon_sym__] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1867), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_in] = ACTIONS(5050), + [anon_sym_QMARK] = ACTIONS(1861), + [anon_sym_Prop] = ACTIONS(1861), + [anon_sym_Set] = ACTIONS(1861), + [anon_sym_quote] = ACTIONS(1861), + [anon_sym_quoteTerm] = ACTIONS(1861), + [anon_sym_unquote] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LPAREN_PIPE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), + [anon_sym_module] = ACTIONS(440), }, - [3169] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(4685), + [3798] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4687), + [anon_sym_RPAREN] = ACTIONS(5036), }, - [3170] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(4689), + [3799] = { [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(5036), }, - [3171] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4685), + [3800] = { + [sym_expr] = STATE(4513), + [sym__expr1] = STATE(2859), + [sym__application] = STATE(2860), + [sym__expr2] = STATE(2861), + [sym__atomic_exprs1] = STATE(2862), + [sym_atomic_expr] = STATE(2863), + [sym__atomic_expr_curly] = STATE(2864), + [sym__atomic_expr_no_curly] = STATE(2864), + [sym_tele_arrow] = STATE(2865), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2866), + [aux_sym__application_repeat1] = STATE(2867), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3349), + [sym_set_n] = ACTIONS(3349), + [sym_name_at] = ACTIONS(3351), + [sym_qualified_name] = ACTIONS(3349), + [anon_sym__] = ACTIONS(3349), + [anon_sym_DOT] = ACTIONS(3353), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3357), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3359), + [anon_sym_forall] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_QMARK] = ACTIONS(3349), + [anon_sym_Prop] = ACTIONS(3349), + [anon_sym_Set] = ACTIONS(3349), + [anon_sym_quote] = ACTIONS(3349), + [anon_sym_quoteTerm] = ACTIONS(3349), + [anon_sym_unquote] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_LPAREN_PIPE] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), + }, + [3801] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym__layout_close_brace] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(781), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4691), + [anon_sym_where] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), }, - [3172] = { - [ts_builtin_sym_end] = ACTIONS(30), + [3802] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -110285,16 +128158,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), [anon_sym_QMARK] = ACTIONS(30), [anon_sym_Prop] = ACTIONS(30), [anon_sym_Set] = ACTIONS(30), @@ -110302,37 +128173,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(30), [anon_sym_unquote] = ACTIONS(30), [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), [anon_sym_module] = ACTIONS(30), }, - [3173] = { - [sym_atomic_expr] = STATE(4018), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(3701), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3701), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), + [3803] = { + [sym_atomic_expr] = STATE(4514), + [sym__atomic_expr_curly] = STATE(3810), + [sym__atomic_expr_no_curly] = STATE(3810), + [sym_literal] = ACTIONS(4369), + [sym_set_n] = ACTIONS(4369), + [sym_name_at] = ACTIONS(4371), + [sym_qualified_name] = ACTIONS(4369), + [anon_sym__] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4371), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4375), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(4369), + [anon_sym_Prop] = ACTIONS(4369), + [anon_sym_Set] = ACTIONS(4369), + [anon_sym_quote] = ACTIONS(4369), + [anon_sym_quoteTerm] = ACTIONS(4369), + [anon_sym_unquote] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_LPAREN_PIPE] = ACTIONS(4379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4369), }, - [3174] = { - [sym_expr] = STATE(4020), + [3804] = { + [sym_expr] = STATE(4516), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -110353,7 +128222,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(4693), + [anon_sym_RBRACE] = ACTIONS(5052), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -110369,8 +128238,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3175] = { - [sym_expr] = STATE(4021), + [3805] = { + [sym_expr] = STATE(4517), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -110392,7 +128261,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4695), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5054), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -110407,45 +128276,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3176] = { - [sym_expr] = STATE(4022), - [sym__expr1] = STATE(3945), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(3946), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(3947), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2466), - [aux_sym__application_repeat1] = STATE(2474), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2966), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [3177] = { - [sym_expr] = STATE(4023), + [3806] = { + [sym_expr] = STATE(4518), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -110478,12 +128310,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(4695), + [anon_sym_RPAREN] = ACTIONS(5054), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3178] = { - [sym_expr] = STATE(4024), + [3807] = { + [sym_expr] = STATE(4519), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -110519,70 +128351,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [3179] = { - [sym__application] = STATE(4026), - [sym__expr2] = STATE(1251), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [aux_sym__application_repeat1] = STATE(4027), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(3701), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3701), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4697), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - }, - [3180] = { - [ts_builtin_sym_end] = ACTIONS(1044), - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_RPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), + [3808] = { + [sym__layout_semicolon] = ACTIONS(787), + [sym__layout_close_brace] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(787), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_where] = ACTIONS(787), + [anon_sym_module] = ACTIONS(787), }, - [3181] = { - [ts_builtin_sym_end] = ACTIONS(164), + [3809] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -110591,16 +128371,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), [anon_sym_QMARK] = ACTIONS(166), [anon_sym_Prop] = ACTIONS(166), [anon_sym_Set] = ACTIONS(166), @@ -110608,14 +128386,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(166), [anon_sym_unquote] = ACTIONS(166), [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), [anon_sym_module] = ACTIONS(164), }, - [3182] = { - [ts_builtin_sym_end] = ACTIONS(168), + [3810] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -110624,16 +128401,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), [anon_sym_QMARK] = ACTIONS(168), [anon_sym_Prop] = ACTIONS(168), [anon_sym_Set] = ACTIONS(168), @@ -110641,595 +128416,977 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(168), [anon_sym_unquote] = ACTIONS(168), [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), [anon_sym_module] = ACTIONS(168), }, - [3183] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), + [3811] = { + [sym__expr2] = STATE(3812), + [sym_atomic_expr] = STATE(3809), + [sym__atomic_expr_curly] = STATE(3810), + [sym__atomic_expr_no_curly] = STATE(3810), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(4369), + [sym_set_n] = ACTIONS(4369), + [sym_name_at] = ACTIONS(4371), + [sym_qualified_name] = ACTIONS(4369), + [anon_sym__] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4371), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4375), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3359), + [anon_sym_forall] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_QMARK] = ACTIONS(4369), + [anon_sym_Prop] = ACTIONS(4369), + [anon_sym_Set] = ACTIONS(4369), + [anon_sym_quote] = ACTIONS(4369), + [anon_sym_quoteTerm] = ACTIONS(4369), + [anon_sym_unquote] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_LPAREN_PIPE] = ACTIONS(4379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4369), }, - [3184] = { - [sym_semi] = STATE(4028), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4029), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), + [3812] = { + [sym__layout_semicolon] = ACTIONS(789), + [sym__layout_close_brace] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_where] = ACTIONS(789), + [anon_sym_module] = ACTIONS(789), }, - [3185] = { - [ts_builtin_sym_end] = ACTIONS(1052), - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_RPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_COLON] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), + [3813] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym__layout_close_brace] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [sym_comment] = ACTIONS(86), }, - [3186] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(3701), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3701), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4697), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), + [3814] = { + [sym__layout_semicolon] = ACTIONS(4670), + [sym__layout_close_brace] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4670), + [sym_comment] = ACTIONS(86), }, - [3187] = { + [3815] = { + [sym_vclose] = STATE(4520), + [sym__layout_close_brace] = ACTIONS(4381), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4685), }, - [3188] = { + [3816] = { + [sym_vopen] = STATE(2868), + [sym_declarations] = STATE(2869), + [sym__declarations0] = STATE(4521), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4699), }, - [3189] = { - [sym_expr] = STATE(4016), - [sym__expr1] = STATE(2094), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2095), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2098), + [3817] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + }, + [3818] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + }, + [3819] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [3820] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [3821] = { + [ts_builtin_sym_end] = ACTIONS(3017), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_RPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + }, + [3822] = { + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_RPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + }, + [3823] = { + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_RPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + }, + [3824] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE_RBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + }, + [3825] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE_RBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + }, + [3826] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE_RBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [3827] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE_RBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [3828] = { + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + }, + [3829] = { + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + }, + [3830] = { + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + }, + [3831] = { + [anon_sym_RBRACE] = ACTIONS(5056), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5058), + }, + [3832] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5056), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5060), + }, + [3833] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5056), + }, + [3834] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5062), + }, + [3835] = { + [ts_builtin_sym_end] = ACTIONS(1759), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_RPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), + }, + [3836] = { + [sym_expr] = STATE(4526), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1254), - [aux_sym__application_repeat1] = STATE(2099), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2602), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2604), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1564), - [anon_sym_forall] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3190] = { - [sym__application] = STATE(4031), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(3697), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [3837] = { + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), + }, + [3838] = { + [sym_expr] = STATE(4527), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3191] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3440), - [sym__declaration] = STATE(4032), - [sym_function_clause] = STATE(1059), - [sym__declarations1] = STATE(2987), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [3839] = { + [sym_vclose] = STATE(4528), + [sym__layout_close_brace] = ACTIONS(4231), + [sym_comment] = ACTIONS(86), + }, + [3840] = { + [sym_expr] = STATE(4529), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3192] = { - [sym_anonymous_name] = STATE(4033), - [sym_name] = ACTIONS(4701), - [anon_sym__] = ACTIONS(676), + [3841] = { + [anon_sym_RBRACE] = ACTIONS(4410), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4412), + }, + [3842] = { + [sym_expr] = STATE(4386), + [sym__expr1] = STATE(2941), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(2942), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(2943), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1114), + [aux_sym__application_repeat1] = STATE(2944), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3465), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_forall] = ACTIONS(1380), + [anon_sym_let] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), }, - [3193] = { - [sym_where_clause] = STATE(2989), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(3725), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(3727), + [3843] = { + [anon_sym_RBRACE] = ACTIONS(5064), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5066), }, - [3194] = { - [sym__expr1] = STATE(200), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2208), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(3194), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(1596), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1599), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(1602), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), + [3844] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5064), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5068), }, - [3195] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), + [3845] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5064), }, - [3196] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), + [3846] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5070), }, - [3197] = { - [sym__application] = STATE(4034), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [3847] = { + [ts_builtin_sym_end] = ACTIONS(1759), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_RPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + }, + [3848] = { + [sym_expr] = STATE(4534), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3198] = { - [sym__application] = STATE(4035), + [3849] = { + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + }, + [3850] = { + [sym_expr] = STATE(4535), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3199] = { - [sym_binding_name] = STATE(4036), - [sym__application] = STATE(4037), + [3851] = { + [sym_vclose] = STATE(4536), + [sym__layout_close_brace] = ACTIONS(4253), + [sym_comment] = ACTIONS(86), + }, + [3852] = { + [sym_expr] = STATE(4537), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3200] = { - [ts_builtin_sym_end] = ACTIONS(968), - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), + [3853] = { + [anon_sym_RBRACE] = ACTIONS(4424), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4426), }, - [3201] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(4703), + [3854] = { + [anon_sym_RBRACE] = ACTIONS(5072), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4705), + [anon_sym_COLON] = ACTIONS(5074), }, - [3202] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(4707), + [3855] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5072), [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5076), }, - [3203] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4703), + [3856] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4709), + [anon_sym_RPAREN] = ACTIONS(5072), }, - [3204] = { - [ts_builtin_sym_end] = ACTIONS(30), - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_RPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), + [3857] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5078), }, - [3205] = { - [sym_atomic_expr] = STATE(4042), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(3743), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), + [3858] = { + [ts_builtin_sym_end] = ACTIONS(1759), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_RPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), }, - [3206] = { - [sym_expr] = STATE(4044), + [3859] = { + [sym_expr] = STATE(4542), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -111250,7 +129407,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(4711), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -111266,8 +129422,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3207] = { - [sym_expr] = STATE(4045), + [3860] = { + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + }, + [3861] = { + [sym_expr] = STATE(4543), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -111289,7 +129475,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4713), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -111304,45 +129489,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3208] = { - [sym_expr] = STATE(4046), - [sym__expr1] = STATE(3111), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3112), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3113), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3114), - [aux_sym__application_repeat1] = STATE(3115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3614), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [3862] = { + [sym_vclose] = STATE(4544), + [sym__layout_close_brace] = ACTIONS(4273), + [sym_comment] = ACTIONS(86), }, - [3209] = { - [sym_expr] = STATE(4047), + [3863] = { + [sym_expr] = STATE(4545), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -111375,532 +129528,522 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(4713), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3210] = { - [sym_expr] = STATE(4048), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [3864] = { + [anon_sym_RBRACE] = ACTIONS(4434), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4436), }, - [3211] = { - [sym__application] = STATE(4050), - [sym__expr2] = STATE(1270), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [aux_sym__application_repeat1] = STATE(4051), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(3743), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4715), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), + [3865] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), }, - [3212] = { - [ts_builtin_sym_end] = ACTIONS(1044), - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_RPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), + [3866] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), }, - [3213] = { - [ts_builtin_sym_end] = ACTIONS(164), - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_RPAREN] = ACTIONS(164), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_module] = ACTIONS(164), + [3867] = { + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4392), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4392), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4392), + [anon_sym_EQ] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(4392), }, - [3214] = { - [ts_builtin_sym_end] = ACTIONS(168), - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), + [3868] = { + [anon_sym_RBRACE] = ACTIONS(5080), + [sym_comment] = ACTIONS(86), }, - [3215] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), + [3869] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5080), + [sym_comment] = ACTIONS(86), }, - [3216] = { - [sym_semi] = STATE(4052), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4053), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), + [3870] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5080), }, - [3217] = { - [ts_builtin_sym_end] = ACTIONS(1052), - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_RPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), + [3871] = { + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + [anon_sym_rewrite] = ACTIONS(3863), + [anon_sym_with] = ACTIONS(3863), }, - [3218] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(3743), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4715), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), + [3872] = { + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_rewrite] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), }, - [3219] = { + [3873] = { + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_rewrite] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + }, + [3874] = { + [anon_sym_RBRACE] = ACTIONS(5082), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4703), + [anon_sym_COLON] = ACTIONS(5084), }, - [3220] = { + [3875] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5082), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4717), + [anon_sym_COLON] = ACTIONS(5086), }, - [3221] = { - [sym_expr] = STATE(4040), - [sym__expr1] = STATE(1268), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(1271), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(1274), + [3876] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5082), + }, + [3877] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5088), + }, + [3878] = { + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), + }, + [3879] = { + [sym_expr] = STATE(4551), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1275), - [aux_sym__application_repeat1] = STATE(1276), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(1576), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(1578), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1584), - [anon_sym_forall] = ACTIONS(1586), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3222] = { - [sym__application] = STATE(4055), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(3739), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [3880] = { + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), }, - [3223] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3973), - [sym__declaration] = STATE(4056), - [sym_function_clause] = STATE(1085), - [sym__declarations1] = STATE(3033), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [3881] = { + [sym_expr] = STATE(4552), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_module] = ACTIONS(670), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3224] = { - [sym_anonymous_name] = STATE(4057), - [sym_name] = ACTIONS(4719), - [anon_sym__] = ACTIONS(676), + [3882] = { + [sym_vclose] = STATE(4554), + [sym__layout_close_brace] = ACTIONS(5090), + [sym_comment] = ACTIONS(86), + }, + [3883] = { + [sym_expr] = STATE(4555), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3225] = { - [sym_where_clause] = STATE(3035), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), + [3884] = { + [anon_sym_RBRACE] = ACTIONS(4452), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4454), + }, + [3885] = { + [sym_expr] = STATE(3893), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(3767), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(3769), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3226] = { - [sym__expr1] = STATE(200), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2232), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(3226), - [aux_sym__expr1_repeat1] = STATE(205), - [aux_sym__application_repeat1] = STATE(206), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(1596), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1599), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(1602), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_module] = ACTIONS(680), + [3886] = { + [sym_expr] = STATE(3894), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4476), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3227] = { - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_RPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), + [3887] = { + [sym_expr] = STATE(3895), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(4476), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3228] = { - [ts_builtin_sym_end] = ACTIONS(186), + [3888] = { [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), [sym_name_at] = ACTIONS(186), [sym_qualified_name] = ACTIONS(186), [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE_RBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), [anon_sym_EQ] = ACTIONS(186), [anon_sym_PIPE] = ACTIONS(186), [anon_sym_BSLASH] = ACTIONS(186), @@ -111915,171 +130058,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(186), [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), [anon_sym_module] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [3229] = { - [ts_builtin_sym_end] = ACTIONS(228), - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - }, - [3230] = { - [anon_sym_RBRACE] = ACTIONS(4721), - [sym_comment] = ACTIONS(86), - }, - [3231] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4723), - [sym_comment] = ACTIONS(86), - }, - [3232] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4723), - }, - [3233] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4723), - }, - [3234] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - }, - [3235] = { - [sym_semi] = STATE(2249), - [aux_sym__declarations1_repeat1] = STATE(3235), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - }, - [3236] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_RPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - }, - [3237] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(2254), - [sym__application] = STATE(39), + [3889] = { + [sym_expr] = STATE(3893), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2255), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2256), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2257), - [aux_sym__application_repeat1] = STATE(2258), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2766), + [sym_name_at] = ACTIONS(208), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(4474), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1612), - [anon_sym_forall] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1616), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -112090,200 +130102,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3238] = { - [sym_atomic_expr] = STATE(3050), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(3777), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(3777), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), - }, - [3239] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(2083), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(3777), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(3777), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1612), - [anon_sym_forall] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), - }, - [3240] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(2254), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2255), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2256), + [3890] = { + [sym_expr] = STATE(3894), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2257), - [aux_sym__application_repeat1] = STATE(2258), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2766), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2768), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4476), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1612), - [anon_sym_forall] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [3241] = { - [sym_expr] = STATE(2093), - [sym__expr1] = STATE(4062), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4063), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4064), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3594), - [aux_sym__application_repeat1] = STATE(4065), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4725), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4727), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [3242] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2262), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(3242), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4209), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4212), - [anon_sym_forall] = ACTIONS(4215), - [anon_sym_let] = ACTIONS(4218), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [3243] = { - [sym_expr] = STATE(2511), - [sym__expr1] = STATE(2254), - [sym__application] = STATE(39), + [3891] = { + [sym_expr] = STATE(3895), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2255), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2256), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2257), - [aux_sym__application_repeat1] = STATE(2258), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2766), + [sym_name_at] = ACTIONS(268), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1612), - [anon_sym_forall] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1616), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -112291,972 +130174,398 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(4476), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3244] = { - [sym_semi] = STATE(2266), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3244), - [anon_sym_SEMI] = ACTIONS(3626), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3624), - [anon_sym_RPAREN] = ACTIONS(3624), - [anon_sym_COLON] = ACTIONS(3624), - }, - [3245] = { - [sym_expr] = STATE(3952), - [sym__expr1] = STATE(2273), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2274), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2275), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1728), - [aux_sym__application_repeat1] = STATE(2276), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2776), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2153), - [anon_sym_forall] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [3246] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2262), - [sym__declaration] = STATE(3953), - [sym_function_clause] = STATE(579), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [3247] = { - [sym_semi] = STATE(3246), - [aux_sym__declarations1_repeat1] = STATE(4066), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_RPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - }, - [3248] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2262), - [sym__declaration] = STATE(2277), - [sym_function_clause] = STATE(579), - [sym__declarations1] = STATE(3955), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(2552), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), - }, - [3249] = { - [anon_sym_RBRACE] = ACTIONS(4729), - [sym_comment] = ACTIONS(86), - }, - [3250] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4729), - [sym_comment] = ACTIONS(86), - }, - [3251] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4729), - }, - [3252] = { - [anon_sym_SEMI] = ACTIONS(3568), - [anon_sym_DOT] = ACTIONS(3570), - [anon_sym_DOT_DOT] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3568), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3568), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(3568), - [anon_sym_EQ] = ACTIONS(3568), - [anon_sym_LPAREN] = ACTIONS(3568), - [anon_sym_COLON] = ACTIONS(3568), - }, - [3253] = { - [sym_expr] = STATE(2315), - [sym__expr1] = STATE(2324), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(2325), - [sym_atomic_expr] = STATE(1387), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_tele_arrow] = STATE(2326), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(2327), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(2826), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1728), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), - }, - [3254] = { - [sym__expr1] = STATE(2351), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [3255] = { - [sym__expr1] = STATE(2352), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [3892] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE_RBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [3256] = { - [sym_with_expressions] = STATE(2353), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE_RBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_rewrite] = ACTIONS(646), - [anon_sym_with] = ACTIONS(3799), - }, - [3257] = { - [sym_expr] = STATE(2354), - [sym__expr1] = STATE(2324), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(2325), - [sym_atomic_expr] = STATE(1387), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_tele_arrow] = STATE(2326), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(2327), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(2826), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1728), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), - }, - [3258] = { - [sym__expr1] = STATE(2296), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2297), - [sym__declaration] = STATE(722), - [sym_function_clause] = STATE(723), - [aux_sym_source_file_repeat1] = STATE(3258), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(1802), - [sym_set_n] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(3829), - [sym_qualified_name] = ACTIONS(1802), - [anon_sym__] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE_RBRACE] = ACTIONS(680), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(3832), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(3835), - [anon_sym_let] = ACTIONS(3838), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1802), - [anon_sym_Prop] = ACTIONS(1802), - [anon_sym_Set] = ACTIONS(1802), - [anon_sym_quote] = ACTIONS(1802), - [anon_sym_quoteTerm] = ACTIONS(1802), - [anon_sym_unquote] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LPAREN_PIPE] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_rewrite] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), - }, - [3259] = { - [sym_atomic_expr] = STATE(2359), - [sym__atomic_expr_curly] = STATE(1414), - [sym__atomic_expr_no_curly] = STATE(1414), - [sym_literal] = ACTIONS(1744), - [sym_set_n] = ACTIONS(1744), - [sym_name_at] = ACTIONS(3803), - [sym_qualified_name] = ACTIONS(1744), - [anon_sym__] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1750), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1744), - [anon_sym_Prop] = ACTIONS(1744), - [anon_sym_Set] = ACTIONS(1744), - [anon_sym_quote] = ACTIONS(1744), - [anon_sym_quoteTerm] = ACTIONS(1744), - [anon_sym_unquote] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1744), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [3260] = { - [sym_lambda_bindings] = STATE(4068), - [sym_untyped_bindings] = STATE(4069), - [sym_typed_bindings] = STATE(4069), - [anon_sym_DOT] = ACTIONS(2860), - [anon_sym_DOT_DOT] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2866), + [3893] = { + [anon_sym_RBRACE] = ACTIONS(5092), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2870), }, - [3261] = { - [sym_forall_bindings] = STATE(4070), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [3894] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5094), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [3262] = { - [sym__expr1] = STATE(4071), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4072), - [sym__declaration] = STATE(2373), - [sym_function_clause] = STATE(2374), - [aux_sym_source_file_repeat1] = STATE(4073), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [3263] = { - [sym__application] = STATE(2378), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1413), - [sym__atomic_expr_curly] = STATE(1414), - [sym__atomic_expr_no_curly] = STATE(1414), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(3264), - [sym_literal] = ACTIONS(1744), - [sym_set_n] = ACTIONS(1744), - [sym_name_at] = ACTIONS(3803), - [sym_qualified_name] = ACTIONS(1744), - [anon_sym__] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1750), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(1744), - [anon_sym_Prop] = ACTIONS(1744), - [anon_sym_Set] = ACTIONS(1744), - [anon_sym_quote] = ACTIONS(1744), - [anon_sym_quoteTerm] = ACTIONS(1744), - [anon_sym_unquote] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1744), - }, - [3264] = { - [sym__expr2] = STATE(2379), - [sym_atomic_expr] = STATE(1413), - [sym__atomic_expr_curly] = STATE(1414), - [sym__atomic_expr_no_curly] = STATE(1414), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1744), - [sym_set_n] = ACTIONS(1744), - [sym_name_at] = ACTIONS(3803), - [sym_qualified_name] = ACTIONS(1744), - [anon_sym__] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1750), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(1744), - [anon_sym_Prop] = ACTIONS(1744), - [anon_sym_Set] = ACTIONS(1744), - [anon_sym_quote] = ACTIONS(1744), - [anon_sym_quoteTerm] = ACTIONS(1744), - [anon_sym_unquote] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1744), - }, - [3265] = { - [sym_atomic_expr] = STATE(2380), - [sym__atomic_expr_curly] = STATE(1430), - [sym__atomic_expr_no_curly] = STATE(1430), - [sym_literal] = ACTIONS(1762), - [sym_set_n] = ACTIONS(1762), - [sym_name_at] = ACTIONS(3811), - [sym_qualified_name] = ACTIONS(1762), - [anon_sym__] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(3811), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1768), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1762), - [anon_sym_Prop] = ACTIONS(1762), - [anon_sym_Set] = ACTIONS(1762), - [anon_sym_quote] = ACTIONS(1762), - [anon_sym_quoteTerm] = ACTIONS(1762), - [anon_sym_unquote] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_LPAREN_PIPE] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), }, - [3266] = { - [sym_lambda_bindings] = STATE(4074), - [sym_untyped_bindings] = STATE(4075), - [sym_typed_bindings] = STATE(4075), - [anon_sym_DOT] = ACTIONS(2876), - [anon_sym_DOT_DOT] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2882), + [3895] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_RPAREN] = ACTIONS(5094), }, - [3267] = { - [sym_forall_bindings] = STATE(4076), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [3896] = { [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [3268] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4077), - [sym__declaration] = STATE(2393), - [sym_function_clause] = STATE(2394), - [aux_sym_source_file_repeat1] = STATE(4078), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [3269] = { - [sym__application] = STATE(2398), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1429), - [sym__atomic_expr_curly] = STATE(1430), - [sym__atomic_expr_no_curly] = STATE(1430), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(3270), - [sym_literal] = ACTIONS(1762), - [sym_set_n] = ACTIONS(1762), - [sym_name_at] = ACTIONS(3811), - [sym_qualified_name] = ACTIONS(1762), - [anon_sym__] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(3811), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1768), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(1762), - [anon_sym_Prop] = ACTIONS(1762), - [anon_sym_Set] = ACTIONS(1762), - [anon_sym_quote] = ACTIONS(1762), - [anon_sym_quoteTerm] = ACTIONS(1762), - [anon_sym_unquote] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_LPAREN_PIPE] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), + [anon_sym_PIPE_RPAREN] = ACTIONS(5094), }, - [3270] = { - [sym__expr2] = STATE(2399), - [sym_atomic_expr] = STATE(1429), - [sym__atomic_expr_curly] = STATE(1430), - [sym__atomic_expr_no_curly] = STATE(1430), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1762), - [sym_set_n] = ACTIONS(1762), - [sym_name_at] = ACTIONS(3811), - [sym_qualified_name] = ACTIONS(1762), - [anon_sym__] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(3811), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1768), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(1762), - [anon_sym_Prop] = ACTIONS(1762), - [anon_sym_Set] = ACTIONS(1762), - [anon_sym_quote] = ACTIONS(1762), - [anon_sym_quoteTerm] = ACTIONS(1762), - [anon_sym_unquote] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_LPAREN_PIPE] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), + [3897] = { + [sym_expr] = STATE(4558), + [sym__expr1] = STATE(3031), + [sym__application] = STATE(1234), + [sym__expr2] = STATE(1235), + [sym__atomic_exprs1] = STATE(3032), + [sym_atomic_expr] = STATE(3033), + [sym__atomic_expr_curly] = STATE(3034), + [sym__atomic_expr_no_curly] = STATE(3034), + [sym_tele_arrow] = STATE(3035), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1238), + [aux_sym__application_repeat1] = STATE(3036), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3561), + [sym_set_n] = ACTIONS(3561), + [sym_name_at] = ACTIONS(3563), + [sym_qualified_name] = ACTIONS(3561), + [anon_sym__] = ACTIONS(3561), + [anon_sym_DOT] = ACTIONS(3565), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3567), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3569), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_forall] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_Prop] = ACTIONS(3561), + [anon_sym_Set] = ACTIONS(3561), + [anon_sym_quote] = ACTIONS(3561), + [anon_sym_quoteTerm] = ACTIONS(3561), + [anon_sym_unquote] = ACTIONS(3561), + [anon_sym_LPAREN] = ACTIONS(3571), + [anon_sym_LPAREN_PIPE] = ACTIONS(3573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3561), }, - [3271] = { - [sym_atomic_expr] = STATE(2403), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(3819), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3819), - [anon_sym_LBRACE] = ACTIONS(2888), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2890), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), + [3898] = { + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), }, - [3272] = { - [sym_atomic_expr] = STATE(2403), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(3819), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3819), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2896), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), + [3899] = { + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_with] = ACTIONS(1212), }, - [3273] = { - [sym_lambda_bindings] = STATE(4079), - [sym_untyped_bindings] = STATE(4080), - [sym_typed_bindings] = STATE(4080), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_DOT_DOT] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2910), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2914), + [3900] = { + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_with] = ACTIONS(1214), }, - [3274] = { - [sym_forall_bindings] = STATE(4081), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [3901] = { + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + [anon_sym_with] = ACTIONS(1244), }, - [3275] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), + [3902] = { + [sym_vclose] = STATE(4559), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4082), - [sym__declaration] = STATE(2419), - [sym_function_clause] = STATE(2420), - [aux_sym_source_file_repeat1] = STATE(4083), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(4560), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(5090), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [3903] = { + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1284), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), + [anon_sym_with] = ACTIONS(1284), }, - [3276] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4731), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [3904] = { + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_with] = ACTIONS(1286), }, - [3277] = { + [3905] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4733), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_where] = ACTIONS(5096), }, - [3278] = { - [sym_expr] = STATE(2425), - [sym__expr1] = STATE(3276), - [sym__application] = STATE(1446), - [sym__expr2] = STATE(1447), - [sym__atomic_exprs1] = STATE(3277), - [sym_atomic_expr] = STATE(1449), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_tele_arrow] = STATE(3278), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3279), - [aux_sym__application_repeat1] = STATE(3280), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(3819), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1788), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), + [3906] = { + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), + [anon_sym_with] = ACTIONS(1292), }, - [3279] = { - [sym__application] = STATE(2432), - [sym__expr2] = STATE(1447), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2433), - [sym__atomic_expr_curly] = STATE(2434), - [sym__atomic_expr_no_curly] = STATE(2434), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(4086), - [sym_literal] = ACTIONS(2920), - [sym_set_n] = ACTIONS(2920), - [sym_name_at] = ACTIONS(4735), - [sym_qualified_name] = ACTIONS(2920), - [anon_sym__] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(4735), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2926), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(2920), - [anon_sym_Prop] = ACTIONS(2920), - [anon_sym_Set] = ACTIONS(2920), - [anon_sym_quote] = ACTIONS(2920), - [anon_sym_quoteTerm] = ACTIONS(2920), - [anon_sym_unquote] = ACTIONS(2920), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_LPAREN_PIPE] = ACTIONS(2930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2920), + [3907] = { + [anon_sym_RBRACE] = ACTIONS(5098), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5100), }, - [3280] = { - [sym__expr2] = STATE(2436), - [sym_atomic_expr] = STATE(1449), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(3819), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3819), - [anon_sym_LBRACE] = ACTIONS(2888), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2890), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), + [3908] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5098), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5102), }, - [3281] = { - [anon_sym_SEMI] = ACTIONS(4083), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4083), + [3909] = { [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(4083), - [anon_sym_COLON] = ACTIONS(4083), + [anon_sym_RPAREN] = ACTIONS(5098), }, - [3282] = { - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), - [anon_sym_rewrite] = ACTIONS(2934), - [anon_sym_with] = ACTIONS(2934), + [3910] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5104), }, - [3283] = { - [sym_expr] = STATE(4087), + [3911] = { + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + }, + [3912] = { + [sym_expr] = STATE(4566), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -113292,8 +130601,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3284] = { - [sym_expr] = STATE(4088), + [3913] = { + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + }, + [3914] = { + [sym_expr] = STATE(4567), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -113329,8 +130667,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3285] = { - [sym_expr] = STATE(4089), + [3915] = { + [sym_vclose] = STATE(4569), + [sym__layout_close_brace] = ACTIONS(5106), + [sym_comment] = ACTIONS(86), + }, + [3916] = { + [sym_expr] = STATE(4570), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -113366,729 +130709,536 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3286] = { - [anon_sym_RBRACE] = ACTIONS(4737), - [sym_comment] = ACTIONS(86), - }, - [3287] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4737), + [3917] = { + [anon_sym_RBRACE] = ACTIONS(4484), [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4486), }, - [3288] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_rewrite] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), - }, - [3289] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_rewrite] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), + [3918] = { + [sym_vclose] = STATE(4571), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(4572), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(5106), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [3290] = { - [sym_expr] = STATE(3298), - [sym__expr1] = STATE(2324), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(2325), - [sym_atomic_expr] = STATE(1387), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_tele_arrow] = STATE(2326), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(2327), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(2826), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1728), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), + [3919] = { + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), }, - [3291] = { - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_rewrite] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), + [3920] = { + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), }, - [3292] = { - [sym_expr] = STATE(4091), - [sym__expr1] = STATE(2324), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(2325), - [sym_atomic_expr] = STATE(1387), - [sym__atomic_expr_curly] = STATE(1388), - [sym__atomic_expr_no_curly] = STATE(1388), - [sym_tele_arrow] = STATE(2326), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(2327), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1720), - [sym_set_n] = ACTIONS(1720), - [sym_name_at] = ACTIONS(2826), - [sym_qualified_name] = ACTIONS(1720), - [anon_sym__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1728), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(1720), - [anon_sym_Prop] = ACTIONS(1720), - [anon_sym_Set] = ACTIONS(1720), - [anon_sym_quote] = ACTIONS(1720), - [anon_sym_quoteTerm] = ACTIONS(1720), - [anon_sym_unquote] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1720), + [3921] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(5108), }, - [3293] = { - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_rewrite] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), + [3922] = { + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), }, - [3294] = { - [sym_semi] = STATE(2333), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3294), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_rewrite] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), + [3923] = { + [anon_sym_RBRACE] = ACTIONS(5110), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5112), }, - [3295] = { + [3924] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5110), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_COLON] = ACTIONS(5114), }, - [3296] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_rewrite] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), + [3925] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5110), }, - [3297] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_rewrite] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), + [3926] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5116), }, - [3298] = { - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), - [anon_sym_rewrite] = ACTIONS(3153), - [anon_sym_with] = ACTIONS(3153), + [3927] = { + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), }, - [3299] = { - [sym__expr1] = STATE(2296), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2297), - [sym__declaration] = STATE(4092), - [sym_function_clause] = STATE(723), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [3928] = { + [sym_expr] = STATE(4578), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [3300] = { - [sym_semi] = STATE(3299), - [aux_sym__declarations1_repeat1] = STATE(4093), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_rewrite] = ACTIONS(2550), - [anon_sym_with] = ACTIONS(2550), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3301] = { - [sym__expr1] = STATE(2296), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2297), - [sym__declaration] = STATE(2355), - [sym_function_clause] = STATE(723), - [sym__declarations1] = STATE(4094), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2552), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - [anon_sym_rewrite] = ACTIONS(2552), - [anon_sym_with] = ACTIONS(2552), + [3929] = { + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), }, - [3302] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), + [3930] = { + [sym_expr] = STATE(4579), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3303] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), + [3931] = { + [sym_vclose] = STATE(4581), + [sym__layout_close_brace] = ACTIONS(5118), + [sym_comment] = ACTIONS(86), }, - [3304] = { - [sym__application] = STATE(4095), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [3932] = { + [sym_expr] = STATE(4582), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3305] = { - [sym__application] = STATE(4096), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [3933] = { + [anon_sym_RBRACE] = ACTIONS(4496), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4498), }, - [3306] = { - [sym_binding_name] = STATE(4097), - [sym__application] = STATE(4098), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [3934] = { + [sym_vclose] = STATE(4583), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(4584), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(5118), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [3935] = { + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1284), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), }, - [3307] = { - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE_RBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), - [anon_sym_with] = ACTIONS(968), + [3936] = { + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), }, - [3308] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(4739), + [3937] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4741), + [anon_sym_where] = ACTIONS(5120), }, - [3309] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(4743), - [sym_comment] = ACTIONS(86), + [3938] = { + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), }, - [3310] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4739), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4745), + [3939] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE_RBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), }, - [3311] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), + [3940] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE_RBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), }, - [3312] = { - [sym_atomic_expr] = STATE(4103), - [sym__atomic_expr_curly] = STATE(3321), - [sym__atomic_expr_no_curly] = STATE(3321), - [sym_literal] = ACTIONS(3877), - [sym_set_n] = ACTIONS(3877), - [sym_name_at] = ACTIONS(3879), - [sym_qualified_name] = ACTIONS(3877), - [anon_sym__] = ACTIONS(3877), - [anon_sym_DOT] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3883), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3877), - [anon_sym_Prop] = ACTIONS(3877), - [anon_sym_Set] = ACTIONS(3877), - [anon_sym_quote] = ACTIONS(3877), - [anon_sym_quoteTerm] = ACTIONS(3877), - [anon_sym_unquote] = ACTIONS(3877), - [anon_sym_LPAREN] = ACTIONS(3887), - [anon_sym_LPAREN_PIPE] = ACTIONS(3889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3877), + [3941] = { + [sym__layout_semicolon] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_DOT_DOT] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3011), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), }, - [3313] = { - [sym_expr] = STATE(4105), + [3942] = { + [sym_expr] = STATE(4586), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -114109,7 +131259,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(4747), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -114125,8 +131274,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3314] = { - [sym_expr] = STATE(4106), + [3943] = { + [sym_expr] = STATE(4587), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -114148,7 +131297,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4749), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -114163,45 +131311,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3315] = { - [sym_expr] = STATE(4109), - [sym__expr1] = STATE(4110), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(4111), - [sym_atomic_expr] = STATE(3339), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_tele_arrow] = STATE(4112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3263), - [aux_sym__application_repeat1] = STATE(4113), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(4751), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(4753), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3911), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), - }, - [3316] = { - [sym_expr] = STATE(4114), + [3944] = { + [sym_expr] = STATE(4588), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -114234,454 +131345,192 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(4749), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3317] = { - [sym_expr] = STATE(4115), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [3318] = { - [sym__application] = STATE(4117), - [sym__expr2] = STATE(1412), - [sym_atomic_expr] = STATE(3320), - [sym__atomic_expr_curly] = STATE(3321), - [sym__atomic_expr_no_curly] = STATE(3321), - [aux_sym__application_repeat1] = STATE(4118), - [sym_literal] = ACTIONS(3877), - [sym_set_n] = ACTIONS(3877), - [sym_name_at] = ACTIONS(3879), - [sym_qualified_name] = ACTIONS(3877), - [anon_sym__] = ACTIONS(3877), - [anon_sym_DOT] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3883), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4755), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3877), - [anon_sym_Prop] = ACTIONS(3877), - [anon_sym_Set] = ACTIONS(3877), - [anon_sym_quote] = ACTIONS(3877), - [anon_sym_quoteTerm] = ACTIONS(3877), - [anon_sym_unquote] = ACTIONS(3877), - [anon_sym_LPAREN] = ACTIONS(3887), - [anon_sym_LPAREN_PIPE] = ACTIONS(3889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3877), - }, - [3319] = { - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_with] = ACTIONS(1044), - }, - [3320] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), - }, - [3321] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), - }, - [3322] = { - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1046), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_with] = ACTIONS(1046), - }, - [3323] = { - [sym_semi] = STATE(4119), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4120), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_with] = ACTIONS(1048), + [3945] = { + [anon_sym_RBRACE] = ACTIONS(5122), + [sym_comment] = ACTIONS(86), }, - [3324] = { - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_COLON] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_with] = ACTIONS(1052), + [3946] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5122), + [sym_comment] = ACTIONS(86), }, - [3325] = { - [sym__expr2] = STATE(2379), - [sym_atomic_expr] = STATE(3320), - [sym__atomic_expr_curly] = STATE(3321), - [sym__atomic_expr_no_curly] = STATE(3321), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3877), - [sym_set_n] = ACTIONS(3877), - [sym_name_at] = ACTIONS(3879), - [sym_qualified_name] = ACTIONS(3877), - [anon_sym__] = ACTIONS(3877), - [anon_sym_DOT] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3883), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4755), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3877), - [anon_sym_Prop] = ACTIONS(3877), - [anon_sym_Set] = ACTIONS(3877), - [anon_sym_quote] = ACTIONS(3877), - [anon_sym_quoteTerm] = ACTIONS(3877), - [anon_sym_unquote] = ACTIONS(3877), - [anon_sym_LPAREN] = ACTIONS(3887), - [anon_sym_LPAREN_PIPE] = ACTIONS(3889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3877), + [3947] = { + [sym__layout_semicolon] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_RBRACE] = ACTIONS(3439), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3439), }, - [3326] = { + [3948] = { + [sym__layout_semicolon] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_RBRACE] = ACTIONS(3441), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4739), + [anon_sym_EQ] = ACTIONS(3441), }, - [3327] = { + [3949] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4757), + [anon_sym_RPAREN] = ACTIONS(5122), }, - [3328] = { - [sym_expr] = STATE(4101), - [sym__expr1] = STATE(3337), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(3338), - [sym_atomic_expr] = STATE(3339), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_tele_arrow] = STATE(3341), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1415), - [aux_sym__application_repeat1] = STATE(3342), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(3905), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3911), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1752), - [anon_sym_forall] = ACTIONS(1754), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), + [3950] = { + [sym__layout_semicolon] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1444), }, - [3329] = { - [sym__application] = STATE(4122), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(3875), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [3951] = { + [sym_expr] = STATE(3959), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(4536), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3330] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), + [3952] = { + [sym_expr] = STATE(3960), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4538), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3331] = { - [sym_atomic_expr] = STATE(4126), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(3905), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(4759), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4761), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(4763), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), + [3953] = { + [sym_expr] = STATE(3973), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3332] = { - [sym_atomic_expr] = STATE(4126), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(3905), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(4765), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4767), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(4769), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), + [3954] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [3333] = { - [sym_expr] = STATE(4131), + [3955] = { + [sym_expr] = STATE(3959), [sym__expr1] = STATE(38), - [sym__application] = STATE(170), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -114700,7 +131549,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(4771), + [anon_sym_RBRACE] = ACTIONS(4536), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -114716,10 +131565,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3334] = { - [sym_expr] = STATE(4132), + [3956] = { + [sym_expr] = STATE(3960), [sym__expr1] = STATE(60), - [sym__application] = STATE(185), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -114739,7 +131588,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4773), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4538), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -114754,10 +131603,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [3335] = { - [sym_expr] = STATE(4133), + [3957] = { + [sym_expr] = STATE(3973), [sym__expr1] = STATE(110), - [sym__application] = STATE(213), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -114788,702 +131637,474 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(4773), + [anon_sym_RPAREN] = ACTIONS(4538), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3336] = { - [sym_expr] = STATE(4134), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [3958] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [3337] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4775), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), + [3959] = { + [anon_sym_RBRACE] = ACTIONS(5124), + [sym_comment] = ACTIONS(86), }, - [3338] = { + [3960] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5126), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4777), - [anon_sym_PIPE] = ACTIONS(162), }, - [3339] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), + [3961] = { + [anon_sym_LBRACE] = ACTIONS(5128), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5130), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(5132), }, - [3340] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), + [3962] = { + [sym__application] = STATE(4596), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(4597), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(5134), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), - }, - [3341] = { - [sym_expr] = STATE(4136), - [sym__expr1] = STATE(3337), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(3338), - [sym_atomic_expr] = STATE(3339), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_tele_arrow] = STATE(3341), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1415), - [aux_sym__application_repeat1] = STATE(3342), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(3905), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3911), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1752), - [anon_sym_forall] = ACTIONS(1754), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [3342] = { - [sym__expr2] = STATE(2379), - [sym_atomic_expr] = STATE(3339), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(3905), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(4759), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4761), + [3963] = { + [sym__application] = STATE(4598), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5134), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1752), - [anon_sym_forall] = ACTIONS(1754), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(4763), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), - }, - [3343] = { - [sym__expr1] = STATE(4137), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1413), - [sym__atomic_expr_curly] = STATE(1414), - [sym__atomic_expr_no_curly] = STATE(1414), - [aux_sym__expr1_repeat1] = STATE(1415), - [aux_sym__application_repeat1] = STATE(1416), - [sym_literal] = ACTIONS(1744), - [sym_set_n] = ACTIONS(1744), - [sym_name_at] = ACTIONS(1746), - [sym_qualified_name] = ACTIONS(1744), - [anon_sym__] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1750), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1752), - [anon_sym_forall] = ACTIONS(1754), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_QMARK] = ACTIONS(1744), - [anon_sym_Prop] = ACTIONS(1744), - [anon_sym_Set] = ACTIONS(1744), - [anon_sym_quote] = ACTIONS(1744), - [anon_sym_quoteTerm] = ACTIONS(1744), - [anon_sym_unquote] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1744), - }, - [3344] = { - [sym_with_expressions] = STATE(4138), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE_RBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(3917), - }, - [3345] = { - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE_RBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(646), - }, - [3346] = { - [sym_expr] = STATE(4139), - [sym__expr1] = STATE(3337), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(3338), - [sym_atomic_expr] = STATE(3339), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_tele_arrow] = STATE(3341), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1415), - [aux_sym__application_repeat1] = STATE(3342), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(3905), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3911), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1752), - [anon_sym_forall] = ACTIONS(1754), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3347] = { - [sym__expr1] = STATE(4071), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4072), - [sym__declaration] = STATE(4140), - [sym_function_clause] = STATE(2374), - [sym__declarations1] = STATE(4141), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(670), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), - [anon_sym_with] = ACTIONS(670), + [3964] = { + [sym_vopen] = STATE(4599), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), }, - [3348] = { - [sym_anonymous_name] = STATE(4142), - [sym_name] = ACTIONS(4779), - [anon_sym__] = ACTIONS(676), + [3965] = { + [sym_binding_name] = STATE(4600), + [sym__application] = STATE(4601), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(5134), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3349] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE_RBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(678), - [anon_sym_with] = ACTIONS(678), - }, - [3350] = { - [sym_where_clause] = STATE(4143), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE_RBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(3921), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(3923), - [anon_sym_with] = ACTIONS(678), - }, - [3351] = { - [sym__expr1] = STATE(2371), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2372), - [sym__declaration] = STATE(2373), - [sym_function_clause] = STATE(2374), - [aux_sym_source_file_repeat1] = STATE(3351), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(1802), - [sym_set_n] = ACTIONS(1802), - [sym_name_at] = ACTIONS(1805), - [sym_qualified_name] = ACTIONS(1802), - [anon_sym__] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE_RBRACE] = ACTIONS(680), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1814), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1802), - [anon_sym_Prop] = ACTIONS(1802), - [anon_sym_Set] = ACTIONS(1802), - [anon_sym_quote] = ACTIONS(1802), - [anon_sym_quoteTerm] = ACTIONS(1802), - [anon_sym_unquote] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LPAREN_PIPE] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), + [3966] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(5136), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [3352] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), + [3967] = { + [sym_lambda_bindings] = STATE(4595), + [sym_untyped_bindings] = STATE(3967), + [sym_typed_bindings] = STATE(3967), + [sym__layout_semicolon] = ACTIONS(763), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [anon_sym_SEMI] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_DOT_DOT] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5140), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5142), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(5144), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), }, - [3353] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), + [3968] = { + [sym_expr] = STATE(4604), + [sym__expr1] = STATE(3120), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(3123), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(3126), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3127), + [aux_sym__application_repeat1] = STATE(3128), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3639), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3647), + [anon_sym_forall] = ACTIONS(3649), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), }, - [3354] = { - [sym__application] = STATE(4144), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [3969] = { + [sym_where_clause] = STATE(4607), + [sym_rhs] = STATE(4608), + [sym__layout_semicolon] = ACTIONS(1717), + [sym_literal] = ACTIONS(170), + [sym_set_n] = ACTIONS(170), + [anon_sym_SEMI] = ACTIONS(170), + [sym_name_at] = ACTIONS(170), + [sym_qualified_name] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(170), + [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(170), + [anon_sym_where] = ACTIONS(170), + [anon_sym_forall] = ACTIONS(170), + [anon_sym_let] = ACTIONS(170), + [anon_sym_in] = ACTIONS(170), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_Prop] = ACTIONS(170), + [anon_sym_Set] = ACTIONS(170), + [anon_sym_quote] = ACTIONS(170), + [anon_sym_quoteTerm] = ACTIONS(170), + [anon_sym_unquote] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LPAREN_PIPE] = ACTIONS(170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(2612), + [anon_sym_module] = ACTIONS(170), }, - [3355] = { - [sym__application] = STATE(4145), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [3970] = { + [sym__layout_semicolon] = ACTIONS(1725), + [sym_literal] = ACTIONS(178), + [sym_set_n] = ACTIONS(178), + [anon_sym_SEMI] = ACTIONS(178), + [sym_name_at] = ACTIONS(178), + [sym_qualified_name] = ACTIONS(178), + [anon_sym__] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(178), + [anon_sym_RBRACE] = ACTIONS(178), + [anon_sym_LBRACE_LBRACE] = ACTIONS(178), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_BSLASH] = ACTIONS(178), + [anon_sym_where] = ACTIONS(178), + [anon_sym_forall] = ACTIONS(178), + [anon_sym_let] = ACTIONS(178), + [anon_sym_in] = ACTIONS(178), + [anon_sym_QMARK] = ACTIONS(178), + [anon_sym_Prop] = ACTIONS(178), + [anon_sym_Set] = ACTIONS(178), + [anon_sym_quote] = ACTIONS(178), + [anon_sym_quoteTerm] = ACTIONS(178), + [anon_sym_unquote] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(178), + [anon_sym_LPAREN_PIPE] = ACTIONS(178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(178), + [anon_sym_module] = ACTIONS(178), }, - [3356] = { - [sym_binding_name] = STATE(4146), - [sym__application] = STATE(4147), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [3971] = { + [sym__layout_semicolon] = ACTIONS(1727), + [sym_literal] = ACTIONS(180), + [sym_set_n] = ACTIONS(180), + [anon_sym_SEMI] = ACTIONS(180), + [sym_name_at] = ACTIONS(180), + [sym_qualified_name] = ACTIONS(180), + [anon_sym__] = ACTIONS(180), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(180), + [anon_sym_LBRACE_LBRACE] = ACTIONS(180), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_BSLASH] = ACTIONS(180), + [anon_sym_where] = ACTIONS(180), + [anon_sym_forall] = ACTIONS(180), + [anon_sym_let] = ACTIONS(180), + [anon_sym_in] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(180), + [anon_sym_Prop] = ACTIONS(180), + [anon_sym_Set] = ACTIONS(180), + [anon_sym_quote] = ACTIONS(180), + [anon_sym_quoteTerm] = ACTIONS(180), + [anon_sym_unquote] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_LPAREN_PIPE] = ACTIONS(180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(180), + [anon_sym_module] = ACTIONS(180), }, - [3357] = { - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE_RBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), + [3972] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3969), + [sym__declaration] = STATE(3970), + [sym_function_clause] = STATE(3971), + [aux_sym_source_file_repeat1] = STATE(4609), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [3358] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(4781), + [3973] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4783), + [anon_sym_RPAREN] = ACTIONS(5126), }, - [3359] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(4785), + [3974] = { [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(5126), }, - [3360] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4781), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4787), + [3975] = { + [sym_expr] = STATE(4610), + [sym__expr1] = STATE(3120), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(3123), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(3126), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3127), + [aux_sym__application_repeat1] = STATE(3128), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3639), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3647), + [anon_sym_forall] = ACTIONS(3649), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), }, - [3361] = { + [3976] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + }, + [3977] = { + [sym__layout_semicolon] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -115492,11 +132113,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), @@ -115511,34 +132132,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), [anon_sym_module] = ACTIONS(30), }, - [3362] = { - [sym_atomic_expr] = STATE(4152), - [sym__atomic_expr_curly] = STATE(3371), - [sym__atomic_expr_no_curly] = STATE(3371), - [sym_literal] = ACTIONS(3937), - [sym_set_n] = ACTIONS(3937), - [sym_name_at] = ACTIONS(3939), - [sym_qualified_name] = ACTIONS(3937), - [anon_sym__] = ACTIONS(3937), - [anon_sym_DOT] = ACTIONS(3939), - [anon_sym_LBRACE] = ACTIONS(3941), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3943), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3937), - [anon_sym_Prop] = ACTIONS(3937), - [anon_sym_Set] = ACTIONS(3937), - [anon_sym_quote] = ACTIONS(3937), - [anon_sym_quoteTerm] = ACTIONS(3937), - [anon_sym_unquote] = ACTIONS(3937), - [anon_sym_LPAREN] = ACTIONS(3947), - [anon_sym_LPAREN_PIPE] = ACTIONS(3949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3937), + [3978] = { + [sym_atomic_expr] = STATE(4611), + [sym__atomic_expr_curly] = STATE(3985), + [sym__atomic_expr_no_curly] = STATE(3985), + [sym_literal] = ACTIONS(4556), + [sym_set_n] = ACTIONS(4556), + [sym_name_at] = ACTIONS(4558), + [sym_qualified_name] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4560), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4562), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_Prop] = ACTIONS(4556), + [anon_sym_Set] = ACTIONS(4556), + [anon_sym_quote] = ACTIONS(4556), + [anon_sym_quoteTerm] = ACTIONS(4556), + [anon_sym_unquote] = ACTIONS(4556), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_LPAREN_PIPE] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4556), }, - [3363] = { - [sym_expr] = STATE(4154), + [3979] = { + [sym_expr] = STATE(4613), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -115559,7 +132179,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(4789), + [anon_sym_RBRACE] = ACTIONS(5146), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -115575,8 +132195,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3364] = { - [sym_expr] = STATE(4155), + [3980] = { + [sym_expr] = STATE(4614), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -115598,7 +132218,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4791), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5148), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -115613,45 +132233,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3365] = { - [sym_expr] = STATE(4156), - [sym__expr1] = STATE(3958), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(3959), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(3960), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3269), - [aux_sym__application_repeat1] = STATE(3961), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(4641), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - }, - [3366] = { - [sym_expr] = STATE(4157), + [3981] = { + [sym_expr] = STATE(4615), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -115684,12 +132267,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(4791), + [anon_sym_RPAREN] = ACTIONS(5148), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3367] = { - [sym_expr] = STATE(4158), + [3982] = { + [sym_expr] = STATE(4616), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -115725,67 +132308,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [3368] = { - [sym__application] = STATE(4160), - [sym__expr2] = STATE(1428), - [sym_atomic_expr] = STATE(3370), - [sym__atomic_expr_curly] = STATE(3371), - [sym__atomic_expr_no_curly] = STATE(3371), - [aux_sym__application_repeat1] = STATE(4161), - [sym_literal] = ACTIONS(3937), - [sym_set_n] = ACTIONS(3937), - [sym_name_at] = ACTIONS(3939), - [sym_qualified_name] = ACTIONS(3937), - [anon_sym__] = ACTIONS(3937), - [anon_sym_DOT] = ACTIONS(3939), - [anon_sym_LBRACE] = ACTIONS(3941), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3943), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4793), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(3937), - [anon_sym_Prop] = ACTIONS(3937), - [anon_sym_Set] = ACTIONS(3937), - [anon_sym_quote] = ACTIONS(3937), - [anon_sym_quoteTerm] = ACTIONS(3937), - [anon_sym_unquote] = ACTIONS(3937), - [anon_sym_LPAREN] = ACTIONS(3947), - [anon_sym_LPAREN_PIPE] = ACTIONS(3949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3937), - }, - [3369] = { - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), + [3983] = { + [sym__layout_semicolon] = ACTIONS(787), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [anon_sym_SEMI] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_RBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), }, - [3370] = { + [3984] = { + [sym__layout_semicolon] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -115794,11 +132348,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), @@ -115813,10 +132367,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), [anon_sym_module] = ACTIONS(164), }, - [3371] = { + [3985] = { + [sym__layout_semicolon] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -115825,11 +132379,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), @@ -115844,455 +132398,1131 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), [anon_sym_module] = ACTIONS(168), }, - [3372] = { - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1046), + [3986] = { + [sym__expr2] = STATE(3987), + [sym_atomic_expr] = STATE(3984), + [sym__atomic_expr_curly] = STATE(3985), + [sym__atomic_expr_no_curly] = STATE(3985), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(4556), + [sym_set_n] = ACTIONS(4556), + [sym_name_at] = ACTIONS(4558), + [sym_qualified_name] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4558), + [anon_sym_LBRACE] = ACTIONS(4560), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4562), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3647), + [anon_sym_forall] = ACTIONS(3649), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_Prop] = ACTIONS(4556), + [anon_sym_Set] = ACTIONS(4556), + [anon_sym_quote] = ACTIONS(4556), + [anon_sym_quoteTerm] = ACTIONS(4556), + [anon_sym_unquote] = ACTIONS(4556), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_LPAREN_PIPE] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4556), }, - [3373] = { - [sym_semi] = STATE(4162), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4163), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), + [3987] = { + [sym__layout_semicolon] = ACTIONS(789), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), }, - [3374] = { - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_COLON] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), + [3988] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), }, - [3375] = { - [sym__expr2] = STATE(2399), - [sym_atomic_expr] = STATE(3370), - [sym__atomic_expr_curly] = STATE(3371), - [sym__atomic_expr_no_curly] = STATE(3371), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3937), - [sym_set_n] = ACTIONS(3937), - [sym_name_at] = ACTIONS(3939), - [sym_qualified_name] = ACTIONS(3937), - [anon_sym__] = ACTIONS(3937), - [anon_sym_DOT] = ACTIONS(3939), - [anon_sym_LBRACE] = ACTIONS(3941), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3943), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4793), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(3937), - [anon_sym_Prop] = ACTIONS(3937), - [anon_sym_Set] = ACTIONS(3937), - [anon_sym_quote] = ACTIONS(3937), - [anon_sym_quoteTerm] = ACTIONS(3937), - [anon_sym_unquote] = ACTIONS(3937), - [anon_sym_LPAREN] = ACTIONS(3947), - [anon_sym_LPAREN_PIPE] = ACTIONS(3949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3937), + [3989] = { + [sym__layout_semicolon] = ACTIONS(4670), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), }, - [3376] = { + [3990] = { + [sym_vclose] = STATE(4617), + [sym__layout_close_brace] = ACTIONS(4568), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4781), }, - [3377] = { + [3991] = { + [sym_vopen] = STATE(3129), + [sym_declarations] = STATE(3130), + [sym__declarations0] = STATE(4618), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4795), }, - [3378] = { - [sym_expr] = STATE(4150), - [sym__expr1] = STATE(2145), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(2146), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(2149), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1431), - [aux_sym__application_repeat1] = STATE(2150), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(2644), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2646), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1770), - [anon_sym_forall] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [3992] = { + [anon_sym_RBRACE] = ACTIONS(5150), + [sym_comment] = ACTIONS(86), }, - [3379] = { - [sym__application] = STATE(4165), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(3935), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [3993] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5150), + [sym_comment] = ACTIONS(86), + }, + [3994] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5150), + }, + [3995] = { + [sym__layout_semicolon] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(3407), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_RBRACE] = ACTIONS(3409), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3409), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_COLON] = ACTIONS(3409), + }, + [3996] = { + [anon_sym_RBRACE] = ACTIONS(5152), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5154), + }, + [3997] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5152), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5156), + }, + [3998] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5152), + }, + [3999] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5158), + }, + [4000] = { + [sym__layout_semicolon] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_DOT] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1925), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1925), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_COLON] = ACTIONS(1925), + }, + [4001] = { + [sym_expr] = STATE(4624), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3380] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), + [4002] = { + [sym__layout_semicolon] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2366), + [anon_sym_COLON] = ACTIONS(2366), + }, + [4003] = { + [sym_expr] = STATE(4625), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [4004] = { + [sym_vclose] = STATE(4627), + [sym__layout_close_brace] = ACTIONS(5160), + [sym_comment] = ACTIONS(86), + }, + [4005] = { + [sym_expr] = STATE(4628), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [4006] = { + [anon_sym_RBRACE] = ACTIONS(4574), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4576), + }, + [4007] = { + [sym_expr] = STATE(4629), + [sym__expr1] = STATE(3160), + [sym__application] = STATE(1351), + [sym__expr2] = STATE(1352), + [sym__atomic_exprs1] = STATE(3161), + [sym_atomic_expr] = STATE(1354), + [sym__atomic_expr_curly] = STATE(1355), + [sym__atomic_expr_no_curly] = STATE(1355), + [sym_tele_arrow] = STATE(3162), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1357), + [aux_sym__application_repeat1] = STATE(1358), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1675), + [sym_set_n] = ACTIONS(1675), + [sym_name_at] = ACTIONS(1677), + [sym_qualified_name] = ACTIONS(1675), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1683), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1685), + [anon_sym_forall] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_QMARK] = ACTIONS(1675), + [anon_sym_Prop] = ACTIONS(1675), + [anon_sym_Set] = ACTIONS(1675), + [anon_sym_quote] = ACTIONS(1675), + [anon_sym_quoteTerm] = ACTIONS(1675), + [anon_sym_unquote] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_LPAREN_PIPE] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), + }, + [4008] = { + [sym__layout_semicolon] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_RBRACE] = ACTIONS(781), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_COLON] = ACTIONS(781), + }, + [4009] = { + [sym__layout_semicolon] = ACTIONS(3785), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + }, + [4010] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(5162), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [4011] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(5164), + [anon_sym_PIPE] = ACTIONS(162), + }, + [4012] = { + [sym_expr] = STATE(4631), + [sym__expr1] = STATE(4010), + [sym__application] = STATE(2283), + [sym__expr2] = STATE(2284), + [sym__atomic_exprs1] = STATE(4011), + [sym_atomic_expr] = STATE(2300), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_tele_arrow] = STATE(4012), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2287), + [aux_sym__application_repeat1] = STATE(2303), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(2750), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2756), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_forall] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), + }, + [4013] = { + [sym_vclose] = STATE(4633), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4077), - [sym__declaration] = STATE(4166), - [sym_function_clause] = STATE(2394), - [sym__declarations1] = STATE(4167), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(670), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(4634), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(5166), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [4014] = { + [sym__layout_semicolon] = ACTIONS(3793), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + }, + [4015] = { + [sym__layout_semicolon] = ACTIONS(3795), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + }, + [4016] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(5168), + }, + [4017] = { + [sym__layout_semicolon] = ACTIONS(3799), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + }, + [4018] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + }, + [4019] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + }, + [4020] = { + [sym__layout_semicolon] = ACTIONS(3011), + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_rewrite] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), + }, + [4021] = { + [sym_expr] = STATE(4636), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [4022] = { + [sym_expr] = STATE(4637), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [4023] = { + [sym_expr] = STATE(4638), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [4024] = { + [anon_sym_RBRACE] = ACTIONS(5170), + [sym_comment] = ACTIONS(86), + }, + [4025] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5170), + [sym_comment] = ACTIONS(86), + }, + [4026] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_rewrite] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), }, - [3381] = { - [sym_anonymous_name] = STATE(4168), - [sym_name] = ACTIONS(4797), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), + [4027] = { + [sym__layout_semicolon] = ACTIONS(3441), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + [anon_sym_rewrite] = ACTIONS(2965), + [anon_sym_with] = ACTIONS(2965), }, - [3382] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE_RBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(678), + [4028] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5170), }, - [3383] = { - [sym_where_clause] = STATE(4169), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE_RBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(3963), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(3965), + [4029] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_rewrite] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), }, - [3384] = { - [sym__expr1] = STATE(263), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2392), - [sym__declaration] = STATE(2393), - [sym_function_clause] = STATE(2394), - [aux_sym_source_file_repeat1] = STATE(3384), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(1802), - [sym_set_n] = ACTIONS(1802), - [sym_name_at] = ACTIONS(1805), - [sym_qualified_name] = ACTIONS(1802), - [anon_sym__] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE_RBRACE] = ACTIONS(680), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1814), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1802), - [anon_sym_Prop] = ACTIONS(1802), - [anon_sym_Set] = ACTIONS(1802), - [anon_sym_quote] = ACTIONS(1802), - [anon_sym_quoteTerm] = ACTIONS(1802), - [anon_sym_unquote] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LPAREN_PIPE] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), + [4030] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_rewrite] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), }, - [3385] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), + [4031] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + [anon_sym_rewrite] = ACTIONS(3017), + [anon_sym_with] = ACTIONS(3017), }, - [3386] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), + [4032] = { + [sym__layout_semicolon] = ACTIONS(4670), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + [anon_sym_rewrite] = ACTIONS(2262), + [anon_sym_with] = ACTIONS(2262), }, - [3387] = { - [sym__application] = STATE(4170), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [4033] = { + [sym_vclose] = STATE(4640), + [sym__layout_close_brace] = ACTIONS(4600), + [sym_comment] = ACTIONS(86), + }, + [4034] = { + [sym_vopen] = STATE(3205), + [sym_declarations] = STATE(3206), + [sym__declarations0] = STATE(4641), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [4035] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [4036] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [4037] = { + [sym__application] = STATE(4642), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [3388] = { - [sym__application] = STATE(4171), + [4038] = { + [sym__application] = STATE(4643), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), [sym_name_at] = ACTIONS(410), @@ -116315,27 +133545,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3389] = { - [sym_binding_name] = STATE(4172), - [sym__application] = STATE(4173), + [4039] = { + [sym_binding_name] = STATE(4644), + [sym__application] = STATE(4645), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), [sym_literal] = ACTIONS(408), [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(412), [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), [anon_sym_QMARK] = ACTIONS(408), [anon_sym_Prop] = ACTIONS(408), [anon_sym_Set] = ACTIONS(408), @@ -116346,54 +133576,170 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(424), [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3390] = { - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), + [4040] = { + [sym__layout_semicolon] = ACTIONS(1356), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + [anon_sym_with] = ACTIONS(882), + }, + [4041] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(5172), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5174), + }, + [4042] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE_RBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(5176), + [sym_comment] = ACTIONS(86), }, - [3391] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(4799), + [4043] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5172), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4801), + [anon_sym_COLON] = ACTIONS(5178), }, - [3392] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(4803), + [4044] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(4650), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [4045] = { [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5172), }, - [3393] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4799), + [4046] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4805), + [anon_sym_COLON] = ACTIONS(5180), }, - [3394] = { + [4047] = { + [sym_expr] = STATE(4648), + [sym__expr1] = STATE(4057), + [sym__application] = STATE(2267), + [sym__expr2] = STATE(2268), + [sym__atomic_exprs1] = STATE(4058), + [sym_atomic_expr] = STATE(4059), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [sym_tele_arrow] = STATE(4061), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2271), + [aux_sym__application_repeat1] = STATE(4062), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(4632), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(4634), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4636), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4638), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2718), + [anon_sym_forall] = ACTIONS(2720), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(4640), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), + }, + [4048] = { + [sym__application] = STATE(4652), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(4618), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [4049] = { + [sym__layout_semicolon] = ACTIONS(878), [sym_literal] = ACTIONS(30), [sym_set_n] = ACTIONS(30), [anon_sym_SEMI] = ACTIONS(30), @@ -116402,11 +133748,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(30), [anon_sym_DOT] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_RBRACE] = ACTIONS(30), [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [anon_sym_RBRACE_RBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(30), [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), [anon_sym_BSLASH] = ACTIONS(30), [anon_sym_where] = ACTIONS(30), [anon_sym_forall] = ACTIONS(30), @@ -116421,184 +133768,172 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(30), [anon_sym_LPAREN_PIPE] = ACTIONS(30), [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), [anon_sym_module] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), }, - [3395] = { - [sym_atomic_expr] = STATE(4178), - [sym__atomic_expr_curly] = STATE(3404), - [sym__atomic_expr_no_curly] = STATE(3404), - [sym_literal] = ACTIONS(3979), - [sym_set_n] = ACTIONS(3979), - [sym_name_at] = ACTIONS(3981), - [sym_qualified_name] = ACTIONS(3979), - [anon_sym__] = ACTIONS(3979), - [anon_sym_DOT] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3985), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3979), - [anon_sym_Prop] = ACTIONS(3979), - [anon_sym_Set] = ACTIONS(3979), - [anon_sym_quote] = ACTIONS(3979), - [anon_sym_quoteTerm] = ACTIONS(3979), - [anon_sym_unquote] = ACTIONS(3979), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), + [4050] = { + [sym_atomic_expr] = STATE(4656), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(4632), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(5182), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5184), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(5186), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), }, - [3396] = { - [sym_expr] = STATE(4180), + [4051] = { + [sym_atomic_expr] = STATE(4656), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(4632), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(5188), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5190), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(5192), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), + }, + [4052] = { + [sym_expr] = STATE(4661), [sym__expr1] = STATE(38), - [sym__application] = STATE(39), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(4807), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(5194), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3397] = { - [sym_expr] = STATE(4181), + [4053] = { + [sym_expr] = STATE(4662), [sym__expr1] = STATE(60), - [sym__application] = STATE(61), + [sym__application] = STATE(185), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), + [aux_sym__application_repeat1] = STATE(188), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4809), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), - }, - [3398] = { - [sym_expr] = STATE(4182), - [sym__expr1] = STATE(3276), - [sym__application] = STATE(1446), - [sym__expr2] = STATE(1447), - [sym__atomic_exprs1] = STATE(3277), - [sym_atomic_expr] = STATE(1449), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_tele_arrow] = STATE(3278), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3279), - [aux_sym__application_repeat1] = STATE(3280), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(3819), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3821), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5196), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [3399] = { - [sym_expr] = STATE(4183), + [4054] = { + [sym_expr] = STATE(4663), [sym__expr1] = STATE(110), - [sym__application] = STATE(39), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(4809), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(5196), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3400] = { - [sym_expr] = STATE(4184), + [4055] = { + [sym_expr] = STATE(4664), [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -116634,66 +133969,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(148), [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [3401] = { - [sym__application] = STATE(4186), - [sym__expr2] = STATE(1447), - [sym_atomic_expr] = STATE(3403), - [sym__atomic_expr_curly] = STATE(3404), - [sym__atomic_expr_no_curly] = STATE(3404), - [aux_sym__application_repeat1] = STATE(4187), - [sym_literal] = ACTIONS(3979), - [sym_set_n] = ACTIONS(3979), - [sym_name_at] = ACTIONS(3981), - [sym_qualified_name] = ACTIONS(3979), - [anon_sym__] = ACTIONS(3979), - [anon_sym_DOT] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3985), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4811), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(3979), - [anon_sym_Prop] = ACTIONS(3979), - [anon_sym_Set] = ACTIONS(3979), - [anon_sym_quote] = ACTIONS(3979), - [anon_sym_quoteTerm] = ACTIONS(3979), - [anon_sym_unquote] = ACTIONS(3979), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), + [4056] = { + [sym__layout_semicolon] = ACTIONS(1360), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_with] = ACTIONS(1038), }, - [3402] = { - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), + [4057] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(5198), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), }, - [3403] = { + [4058] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(5200), + [anon_sym_PIPE] = ACTIONS(162), + }, + [4059] = { + [sym__layout_semicolon] = ACTIONS(962), [sym_literal] = ACTIONS(166), [sym_set_n] = ACTIONS(166), [anon_sym_SEMI] = ACTIONS(164), @@ -116702,11 +134048,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(166), [anon_sym_DOT] = ACTIONS(166), [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(164), [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [anon_sym_RBRACE_RBRACE] = ACTIONS(164), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(166), [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), [anon_sym_BSLASH] = ACTIONS(166), [anon_sym_where] = ACTIONS(164), [anon_sym_forall] = ACTIONS(166), @@ -116721,9 +134068,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(166), [anon_sym_LPAREN_PIPE] = ACTIONS(166), [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), [anon_sym_module] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [3404] = { + [4060] = { + [sym__layout_semicolon] = ACTIONS(964), [sym_literal] = ACTIONS(168), [sym_set_n] = ACTIONS(168), [anon_sym_SEMI] = ACTIONS(168), @@ -116732,11 +134082,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), [anon_sym_DOT] = ACTIONS(168), [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [anon_sym_RBRACE_RBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), [anon_sym_BSLASH] = ACTIONS(168), [anon_sym_where] = ACTIONS(168), [anon_sym_forall] = ACTIONS(168), @@ -116751,723 +134102,1406 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(168), [anon_sym_LPAREN_PIPE] = ACTIONS(168), [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), [anon_sym_module] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [3405] = { - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1046), + [4061] = { + [sym_expr] = STATE(4666), + [sym__expr1] = STATE(4057), + [sym__application] = STATE(2267), + [sym__expr2] = STATE(2268), + [sym__atomic_exprs1] = STATE(4058), + [sym_atomic_expr] = STATE(4059), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [sym_tele_arrow] = STATE(4061), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2271), + [aux_sym__application_repeat1] = STATE(4062), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(4632), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(4634), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4636), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4638), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2718), + [anon_sym_forall] = ACTIONS(2720), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(4640), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), + }, + [4062] = { + [sym__expr2] = STATE(3230), + [sym_atomic_expr] = STATE(4059), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(4632), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(5182), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5184), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(2718), + [anon_sym_forall] = ACTIONS(2720), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(5186), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), }, - [3406] = { - [sym_semi] = STATE(4188), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4189), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), + [4063] = { + [sym__expr1] = STATE(4667), + [sym__application] = STATE(2267), + [sym__expr2] = STATE(2268), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(2269), + [sym__atomic_expr_curly] = STATE(2270), + [sym__atomic_expr_no_curly] = STATE(2270), + [aux_sym__expr1_repeat1] = STATE(2271), + [aux_sym__application_repeat1] = STATE(2272), + [sym_literal] = ACTIONS(2710), + [sym_set_n] = ACTIONS(2710), + [sym_name_at] = ACTIONS(2712), + [sym_qualified_name] = ACTIONS(2710), + [anon_sym__] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2718), + [anon_sym_forall] = ACTIONS(2720), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_Prop] = ACTIONS(2710), + [anon_sym_Set] = ACTIONS(2710), + [anon_sym_quote] = ACTIONS(2710), + [anon_sym_quoteTerm] = ACTIONS(2710), + [anon_sym_unquote] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_LPAREN_PIPE] = ACTIONS(2726), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), }, - [3407] = { - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), + [4064] = { + [sym_with_expressions] = STATE(4668), + [sym__layout_semicolon] = ACTIONS(2746), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), }, - [3408] = { - [sym__expr2] = STATE(2436), - [sym_atomic_expr] = STATE(3403), - [sym__atomic_expr_curly] = STATE(3404), - [sym__atomic_expr_no_curly] = STATE(3404), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3979), - [sym_set_n] = ACTIONS(3979), - [sym_name_at] = ACTIONS(3981), - [sym_qualified_name] = ACTIONS(3979), - [anon_sym__] = ACTIONS(3979), - [anon_sym_DOT] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3985), + [4065] = { + [sym__layout_semicolon] = ACTIONS(2746), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), + }, + [4066] = { + [sym_expr] = STATE(4669), + [sym__expr1] = STATE(4057), + [sym__application] = STATE(2267), + [sym__expr2] = STATE(2268), + [sym__atomic_exprs1] = STATE(4058), + [sym_atomic_expr] = STATE(4059), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [sym_tele_arrow] = STATE(4061), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2271), + [aux_sym__application_repeat1] = STATE(4062), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(4632), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(4634), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4636), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4638), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2718), + [anon_sym_forall] = ACTIONS(2720), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(4640), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), + }, + [4067] = { + [sym_vopen] = STATE(4670), + [sym_declarations] = STATE(4671), + [sym__declarations0] = STATE(4672), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [4068] = { + [sym_anonymous_name] = STATE(4673), + [sym_name] = ACTIONS(5202), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4811), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(3979), - [anon_sym_Prop] = ACTIONS(3979), - [anon_sym_Set] = ACTIONS(3979), - [anon_sym_quote] = ACTIONS(3979), - [anon_sym_quoteTerm] = ACTIONS(3979), - [anon_sym_unquote] = ACTIONS(3979), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), }, - [3409] = { + [4069] = { + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), + }, + [4070] = { + [sym_where_clause] = STATE(4674), + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), + }, + [4071] = { + [sym__expr1] = STATE(3222), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3223), + [sym__declaration] = STATE(3224), + [sym_function_clause] = STATE(3225), + [aux_sym_source_file_repeat1] = STATE(4071), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(2766), + [sym_literal] = ACTIONS(2768), + [sym_set_n] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(2771), + [sym_qualified_name] = ACTIONS(2768), + [anon_sym__] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2777), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2780), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(2783), + [anon_sym_let] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_Prop] = ACTIONS(2768), + [anon_sym_Set] = ACTIONS(2768), + [anon_sym_quote] = ACTIONS(2768), + [anon_sym_quoteTerm] = ACTIONS(2768), + [anon_sym_unquote] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LPAREN_PIPE] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), + }, + [4072] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [4073] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [4074] = { + [sym__application] = STATE(4675), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [4075] = { + [sym__application] = STATE(4676), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [4076] = { + [sym_binding_name] = STATE(4677), + [sym__application] = STATE(4678), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + }, + [4077] = { + [sym__layout_semicolon] = ACTIONS(1356), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + }, + [4078] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(5204), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5206), + }, + [4079] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(5208), + [sym_comment] = ACTIONS(86), + }, + [4080] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5204), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5210), + }, + [4081] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(4683), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [4082] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5204), + }, + [4083] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5212), + }, + [4084] = { + [sym_expr] = STATE(4681), + [sym__expr1] = STATE(4010), + [sym__application] = STATE(2283), + [sym__expr2] = STATE(2284), + [sym__atomic_exprs1] = STATE(4011), + [sym_atomic_expr] = STATE(2300), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_tele_arrow] = STATE(4012), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2287), + [aux_sym__application_repeat1] = STATE(2303), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(2750), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2756), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_forall] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), + }, + [4085] = { + [sym__application] = STATE(4685), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [4086] = { + [sym__layout_semicolon] = ACTIONS(1360), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + }, + [4087] = { + [sym_vopen] = STATE(4686), + [sym_declarations] = STATE(4687), + [sym__declarations0] = STATE(4688), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4799), }, - [3410] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4813), + [4088] = { + [sym_anonymous_name] = STATE(4689), + [sym_name] = ACTIONS(5214), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), }, - [3411] = { - [sym_expr] = STATE(4176), - [sym__expr1] = STATE(1445), - [sym__application] = STATE(1446), - [sym__expr2] = STATE(1447), - [sym__atomic_exprs1] = STATE(1448), - [sym_atomic_expr] = STATE(1449), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_tele_arrow] = STATE(1451), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1452), - [aux_sym__application_repeat1] = STATE(1453), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(1782), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1788), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1790), - [anon_sym_forall] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1794), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), + [4089] = { + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), }, - [3412] = { - [sym__application] = STATE(4191), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [4090] = { + [sym_where_clause] = STATE(4690), + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), }, - [3413] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), + [4091] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4082), - [sym__declaration] = STATE(4192), - [sym_function_clause] = STATE(2420), - [sym__declarations1] = STATE(4193), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(670), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_module] = ACTIONS(670), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3243), + [sym__declaration] = STATE(3244), + [sym_function_clause] = STATE(3245), + [aux_sym_source_file_repeat1] = STATE(4091), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(2766), + [sym_literal] = ACTIONS(2768), + [sym_set_n] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(2771), + [sym_qualified_name] = ACTIONS(2768), + [anon_sym__] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2777), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2780), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(2783), + [anon_sym_let] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_Prop] = ACTIONS(2768), + [anon_sym_Set] = ACTIONS(2768), + [anon_sym_quote] = ACTIONS(2768), + [anon_sym_quoteTerm] = ACTIONS(2768), + [anon_sym_unquote] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LPAREN_PIPE] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), }, - [3414] = { - [sym_anonymous_name] = STATE(4194), - [sym_name] = ACTIONS(4815), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), + [4092] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), }, - [3415] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE_RBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(678), + [4093] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), }, - [3416] = { - [sym_where_clause] = STATE(4195), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE_RBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(4007), + [4094] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), }, - [3417] = { - [sym__expr1] = STATE(263), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2418), - [sym__declaration] = STATE(2419), - [sym_function_clause] = STATE(2420), - [aux_sym_source_file_repeat1] = STATE(3417), - [aux_sym__expr1_repeat1] = STATE(272), - [aux_sym__application_repeat1] = STATE(273), - [sym_literal] = ACTIONS(1802), - [sym_set_n] = ACTIONS(1802), - [sym_name_at] = ACTIONS(1805), - [sym_qualified_name] = ACTIONS(1802), - [anon_sym__] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE_RBRACE] = ACTIONS(680), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(1814), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1802), - [anon_sym_Prop] = ACTIONS(1802), - [anon_sym_Set] = ACTIONS(1802), - [anon_sym_quote] = ACTIONS(1802), - [anon_sym_quoteTerm] = ACTIONS(1802), - [anon_sym_unquote] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LPAREN_PIPE] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(680), + [4095] = { + [sym__layout_semicolon] = ACTIONS(5216), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), }, - [3418] = { - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3153), + [4096] = { + [sym__layout_semicolon] = ACTIONS(5218), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + }, + [4097] = { + [sym__layout_semicolon] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_DOT_DOT] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3011), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + }, + [4098] = { + [sym_expr] = STATE(4691), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3419] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), + [4099] = { + [sym_expr] = STATE(4692), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3420] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), + [4100] = { + [sym_expr] = STATE(4693), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3421] = { - [anon_sym_RBRACE] = ACTIONS(4817), + [4101] = { + [anon_sym_RBRACE] = ACTIONS(5220), [sym_comment] = ACTIONS(86), }, - [3422] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4819), + [4102] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5220), [sym_comment] = ACTIONS(86), }, - [3423] = { + [4103] = { + [sym__layout_semicolon] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_RBRACE] = ACTIONS(3439), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4819), }, - [3424] = { + [4104] = { + [sym__layout_semicolon] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_RBRACE] = ACTIONS(3441), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(4819), }, - [3425] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), + [4105] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5220), }, - [3426] = { - [sym_semi] = STATE(2437), - [aux_sym__declarations1_repeat1] = STATE(3426), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), + [4106] = { + [sym_expr] = STATE(3102), + [sym__expr1] = STATE(4107), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(4108), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(4109), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2332), + [aux_sym__application_repeat1] = STATE(2333), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(2813), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(2815), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2817), + [anon_sym_forall] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), }, - [3427] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), + [4107] = { + [sym__layout_semicolon] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(280), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(5222), }, - [3428] = { - [ts_builtin_sym_end] = ACTIONS(4821), - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_COLON] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - [anon_sym_rewrite] = ACTIONS(4821), - [anon_sym_with] = ACTIONS(4821), + [4108] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(5222), + [anon_sym_PIPE] = ACTIONS(162), }, - [3429] = { - [sym_expr] = STATE(2511), - [sym__expr1] = STATE(1476), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(1477), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(1478), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1479), - [aux_sym__application_repeat1] = STATE(1480), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(1857), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_forall] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [4109] = { + [sym_expr] = STATE(3108), + [sym__expr1] = STATE(4107), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(4108), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(4109), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2332), + [aux_sym__application_repeat1] = STATE(2333), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(2813), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(2815), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2817), + [anon_sym_forall] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), }, - [3430] = { - [sym_semi] = STATE(2445), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3430), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3624), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3624), + [4110] = { + [sym_expr] = STATE(3119), + [sym__expr1] = STATE(4696), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(4697), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(4698), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3320), + [aux_sym__application_repeat1] = STATE(3321), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3837), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3839), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3841), + [anon_sym_forall] = ACTIONS(3843), + [anon_sym_let] = ACTIONS(3845), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), }, - [3431] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4823), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [4111] = { + [sym__expr1] = STATE(1407), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3283), + [sym__declaration] = STATE(1309), + [sym_function_clause] = STATE(1310), + [aux_sym_source_file_repeat1] = STATE(4111), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym__layout_semicolon] = ACTIONS(2766), + [sym_literal] = ACTIONS(2768), + [sym_set_n] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(3849), + [sym_qualified_name] = ACTIONS(2768), + [anon_sym__] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2777), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(3852), + [anon_sym_forall] = ACTIONS(3855), + [anon_sym_let] = ACTIONS(3858), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_Prop] = ACTIONS(2768), + [anon_sym_Set] = ACTIONS(2768), + [anon_sym_quote] = ACTIONS(2768), + [anon_sym_quoteTerm] = ACTIONS(2768), + [anon_sym_unquote] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LPAREN_PIPE] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), }, - [3432] = { - [sym_lambda_bindings] = STATE(3127), - [sym_untyped_bindings] = STATE(3432), - [sym_typed_bindings] = STATE(3432), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3667), - [anon_sym_DOT_DOT] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_RBRACE] = ACTIONS(464), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3671), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), + [4112] = { + [sym_expr] = STATE(4031), + [sym__expr1] = STATE(3291), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(3292), + [sym_atomic_expr] = STATE(2243), + [sym__atomic_expr_curly] = STATE(2244), + [sym__atomic_expr_no_curly] = STATE(2244), + [sym_tele_arrow] = STATE(3293), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(3294), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2696), + [sym_set_n] = ACTIONS(2696), + [sym_name_at] = ACTIONS(3817), + [sym_qualified_name] = ACTIONS(2696), + [anon_sym__] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(3819), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2704), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1749), + [anon_sym_forall] = ACTIONS(1751), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(2696), + [anon_sym_Prop] = ACTIONS(2696), + [anon_sym_Set] = ACTIONS(2696), + [anon_sym_quote] = ACTIONS(2696), + [anon_sym_quoteTerm] = ACTIONS(2696), + [anon_sym_unquote] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_LPAREN_PIPE] = ACTIONS(2708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), }, - [3433] = { - [sym_expr] = STATE(3144), - [sym__expr1] = STATE(3994), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3995), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3996), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2460), - [aux_sym__application_repeat1] = STATE(3997), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4671), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [4113] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(5224), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [3434] = { - [sym_rewrite_equations] = STATE(4200), - [sym_with_expressions] = STATE(1929), + [4114] = { + [sym_lambda_bindings] = STATE(4040), + [sym_untyped_bindings] = STATE(4114), + [sym_typed_bindings] = STATE(4114), + [sym__layout_semicolon] = ACTIONS(763), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [anon_sym_SEMI] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(4622), + [anon_sym_DOT_DOT] = ACTIONS(4622), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4626), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(4628), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), + }, + [4115] = { + [sym_expr] = STATE(4056), + [sym__expr1] = STATE(4702), + [sym__application] = STATE(2267), + [sym__expr2] = STATE(2268), + [sym__atomic_exprs1] = STATE(4703), + [sym_atomic_expr] = STATE(4059), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [sym_tele_arrow] = STATE(4704), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3303), + [aux_sym__application_repeat1] = STATE(4705), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(5226), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4636), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4638), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3823), + [anon_sym_forall] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3827), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(4640), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), + }, + [4116] = { + [sym_rewrite_equations] = STATE(4064), + [sym_with_expressions] = STATE(4065), + [sym__layout_semicolon] = ACTIONS(1711), [sym_literal] = ACTIONS(152), [sym_set_n] = ACTIONS(152), [anon_sym_SEMI] = ACTIONS(152), @@ -117476,7 +135510,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(152), [anon_sym_DOT] = ACTIONS(152), [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(152), [anon_sym_LBRACE_LBRACE] = ACTIONS(152), [sym_comment] = ACTIONS(18), [anon_sym_EQ] = ACTIONS(152), @@ -117496,192 +135529,304 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(152), [anon_sym_COLON] = ACTIONS(152), [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(1861), - [anon_sym_with] = ACTIONS(4825), + [anon_sym_rewrite] = ACTIONS(2823), + [anon_sym_with] = ACTIONS(152), }, - [3435] = { - [sym_where_clause] = STATE(1933), - [sym_rhs] = STATE(3161), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(3683), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4827), - [anon_sym_module] = ACTIONS(3685), - [anon_sym_with] = ACTIONS(170), + [4117] = { + [sym__expr1] = STATE(4116), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3223), + [sym__declaration] = STATE(3224), + [sym_function_clause] = STATE(3225), + [aux_sym_source_file_repeat1] = STATE(4708), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [3436] = { - [sym__expr1] = STATE(3434), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [4118] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + }, + [4119] = { + [sym_lambda_bindings] = STATE(4077), + [sym_untyped_bindings] = STATE(4119), + [sym_typed_bindings] = STATE(4119), + [sym__layout_semicolon] = ACTIONS(763), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [anon_sym_SEMI] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(4658), + [anon_sym_DOT_DOT] = ACTIONS(4658), + [anon_sym_LBRACE] = ACTIONS(4660), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4662), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(4664), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + }, + [4120] = { + [sym_expr] = STATE(4086), + [sym__expr1] = STATE(4712), + [sym__application] = STATE(2283), + [sym__expr2] = STATE(2284), + [sym__atomic_exprs1] = STATE(4713), + [sym_atomic_expr] = STATE(2300), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_tele_arrow] = STATE(4714), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3309), + [aux_sym__application_repeat1] = STATE(4715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(5232), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(5234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2756), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3831), + [anon_sym_forall] = ACTIONS(3833), + [anon_sym_let] = ACTIONS(3835), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), + }, + [4121] = { + [sym__expr1] = STATE(1407), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3435), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(4202), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3243), + [sym__declaration] = STATE(3244), + [sym_function_clause] = STATE(3245), + [aux_sym_source_file_repeat1] = STATE(4717), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [3437] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [4122] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [3438] = { - [sym_lambda_bindings] = STATE(3168), - [sym_untyped_bindings] = STATE(3438), - [sym_typed_bindings] = STATE(3438), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3717), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_RBRACE] = ACTIONS(464), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3721), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3723), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [4123] = { + [sym_lambda_bindings] = STATE(4595), + [sym_untyped_bindings] = STATE(4123), + [sym_typed_bindings] = STATE(4123), + [sym__layout_semicolon] = ACTIONS(763), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [anon_sym_SEMI] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_DOT_DOT] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5140), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5142), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(5144), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), }, - [3439] = { - [sym_expr] = STATE(3185), - [sym__expr1] = STATE(3945), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(3946), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(3947), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2466), - [aux_sym__application_repeat1] = STATE(2474), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2966), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4124] = { + [sym_expr] = STATE(4604), + [sym__expr1] = STATE(4696), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(4697), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(4698), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3320), + [aux_sym__application_repeat1] = STATE(3321), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3837), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3839), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3841), + [anon_sym_forall] = ACTIONS(3843), + [anon_sym_let] = ACTIONS(3845), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), }, - [3440] = { - [sym_where_clause] = STATE(1985), - [sym_rhs] = STATE(3193), + [4125] = { + [sym_where_clause] = STATE(4607), + [sym_rhs] = STATE(4608), + [sym__layout_semicolon] = ACTIONS(1717), [sym_literal] = ACTIONS(170), [sym_set_n] = ACTIONS(170), [anon_sym_SEMI] = ACTIONS(170), @@ -117690,12 +135835,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(170), [anon_sym_DOT] = ACTIONS(170), [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE] = ACTIONS(170), [anon_sym_LBRACE_LBRACE] = ACTIONS(170), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(170), [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(3725), + [anon_sym_where] = ACTIONS(170), [anon_sym_forall] = ACTIONS(170), [anon_sym_let] = ACTIONS(170), [anon_sym_in] = ACTIONS(170), @@ -117708,410 +135852,445 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(170), [anon_sym_LPAREN_PIPE] = ACTIONS(170), [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(3536), - [anon_sym_module] = ACTIONS(3727), + [anon_sym_COLON] = ACTIONS(4684), + [anon_sym_module] = ACTIONS(170), }, - [3441] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [4126] = { + [sym__expr1] = STATE(1407), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3440), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(4204), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [3442] = { - [sym_expr] = STATE(4205), - [sym__expr1] = STATE(2471), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2472), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2473), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2466), - [aux_sym__application_repeat1] = STATE(2474), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2966), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [3443] = { - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(4125), + [sym__declaration] = STATE(3970), + [sym_function_clause] = STATE(3971), + [aux_sym_source_file_repeat1] = STATE(4719), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym__layout_semicolon] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [3444] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(771), - [sym__declaration] = STATE(4206), - [sym_function_clause] = STATE(773), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [4127] = { + [sym_expr] = STATE(4720), + [sym__expr1] = STATE(3317), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(3318), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(3319), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3320), + [aux_sym__application_repeat1] = STATE(3321), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3837), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3839), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3841), + [anon_sym_forall] = ACTIONS(3843), + [anon_sym_let] = ACTIONS(3845), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), }, - [3445] = { - [sym_semi] = STATE(3444), - [aux_sym__declarations1_repeat1] = STATE(4207), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), + [4128] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), }, - [3446] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(771), - [sym__declaration] = STATE(2475), - [sym_function_clause] = STATE(773), - [sym__declarations1] = STATE(4208), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), + [4129] = { + [sym_atomic_expr] = STATE(4611), + [sym__atomic_expr_curly] = STATE(3985), + [sym__atomic_expr_no_curly] = STATE(3985), + [sym_literal] = ACTIONS(4556), + [sym_set_n] = ACTIONS(4556), + [sym_name_at] = ACTIONS(4696), + [sym_qualified_name] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4560), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4562), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_Prop] = ACTIONS(4556), + [anon_sym_Set] = ACTIONS(4556), + [anon_sym_quote] = ACTIONS(4556), + [anon_sym_quoteTerm] = ACTIONS(4556), + [anon_sym_unquote] = ACTIONS(4556), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_LPAREN_PIPE] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4556), }, - [3447] = { - [sym_expr] = STATE(1500), - [sym__expr1] = STATE(2491), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2492), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(2493), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2494), - [aux_sym__application_repeat1] = STATE(2495), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [4130] = { + [sym__expr2] = STATE(3987), + [sym_atomic_expr] = STATE(3984), + [sym__atomic_expr_curly] = STATE(3985), + [sym__atomic_expr_no_curly] = STATE(3985), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(4556), + [sym_set_n] = ACTIONS(4556), + [sym_name_at] = ACTIONS(4696), + [sym_qualified_name] = ACTIONS(4556), + [anon_sym__] = ACTIONS(4556), + [anon_sym_DOT] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4560), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4562), + [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3841), + [anon_sym_forall] = ACTIONS(3843), + [anon_sym_let] = ACTIONS(3845), + [anon_sym_QMARK] = ACTIONS(4556), + [anon_sym_Prop] = ACTIONS(4556), + [anon_sym_Set] = ACTIONS(4556), + [anon_sym_quote] = ACTIONS(4556), + [anon_sym_quoteTerm] = ACTIONS(4556), + [anon_sym_unquote] = ACTIONS(4556), + [anon_sym_LPAREN] = ACTIONS(4564), + [anon_sym_LPAREN_PIPE] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4556), }, - [3448] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(790), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(988), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4831), - [anon_sym_BSLASH] = ACTIONS(996), - [anon_sym_forall] = ACTIONS(998), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), + [4131] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), }, - [3449] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(790), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(2162), - [aux_sym__application_repeat1] = STATE(2484), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(988), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_BSLASH] = ACTIONS(996), - [anon_sym_forall] = ACTIONS(998), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), - [sym_catchall_pragma] = ACTIONS(2992), + [4132] = { + [sym__layout_semicolon] = ACTIONS(4670), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), }, - [3450] = { - [sym_semi] = STATE(3449), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4210), - [anon_sym_SEMI] = ACTIONS(1014), + [4133] = { + [sym_vclose] = STATE(4721), + [sym__layout_close_brace] = ACTIONS(4698), [sym_comment] = ACTIONS(86), }, - [3451] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(622), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(4214), - [sym_lambda_where_clauses] = STATE(626), - [aux_sym__application_repeat1] = STATE(4215), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(4833), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(4833), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4835), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), - [sym_catchall_pragma] = ACTIONS(4837), + [4134] = { + [sym_vopen] = STATE(3322), + [sym_declarations] = STATE(3323), + [sym__declarations0] = STATE(4722), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [3452] = { - [anon_sym_SEMI] = ACTIONS(819), + [4135] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [4136] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(819), + [anon_sym_DASH_GT] = ACTIONS(5240), + [anon_sym_PIPE] = ACTIONS(162), }, - [3453] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(3453), - [sym_typed_bindings] = STATE(3453), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [4137] = { + [sym_expr] = STATE(4128), + [sym__expr1] = STATE(4135), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(4136), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(4137), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3127), + [aux_sym__application_repeat1] = STATE(3128), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3639), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3647), + [anon_sym_forall] = ACTIONS(3649), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + }, + [4138] = { + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + }, + [4139] = { + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + }, + [4140] = { + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + }, + [4141] = { + [anon_sym_RBRACE] = ACTIONS(5242), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_COLON] = ACTIONS(5244), }, - [3454] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(4217), + [4142] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5242), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5246), + }, + [4143] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5242), + }, + [4144] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5248), + }, + [4145] = { + [sym__layout_semicolon] = ACTIONS(1925), + [sym__layout_close_brace] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_DOT] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1925), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1925), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1925), + }, + [4146] = { + [sym_expr] = STATE(4728), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(4218), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(4219), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2494), - [aux_sym__application_repeat1] = STATE(2495), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), + [sym_name_at] = ACTIONS(34), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -118122,103 +136301,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3455] = { - [sym_where_clause] = STATE(647), - [sym_rhs] = STATE(4223), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4841), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4843), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4841), - [anon_sym_module] = ACTIONS(4845), + [4147] = { + [sym__layout_semicolon] = ACTIONS(2366), + [sym__layout_close_brace] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2366), }, - [3456] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3455), - [sym__declaration] = STATE(202), - [sym_function_clause] = STATE(203), - [aux_sym_source_file_repeat1] = STATE(4224), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [4148] = { + [sym_expr] = STATE(4729), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(4847), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3457] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(2491), + [4149] = { + [sym_vclose] = STATE(4731), + [sym__layout_close_brace] = ACTIONS(5250), + [sym_comment] = ACTIONS(86), + }, + [4150] = { + [sym_expr] = STATE(4732), + [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2492), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(2493), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2494), - [aux_sym__application_repeat1] = STATE(2495), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), + [sym_name_at] = ACTIONS(120), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -118229,1092 +136387,378 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3458] = { - [sym_atomic_expr] = STATE(658), - [sym__atomic_expr_curly] = STATE(227), - [sym__atomic_expr_no_curly] = STATE(227), - [sym_literal] = ACTIONS(292), - [sym_set_n] = ACTIONS(292), - [sym_name_at] = ACTIONS(4029), - [sym_qualified_name] = ACTIONS(292), - [anon_sym__] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_LBRACE] = ACTIONS(296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(298), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_Prop] = ACTIONS(292), - [anon_sym_Set] = ACTIONS(292), - [anon_sym_quote] = ACTIONS(292), - [anon_sym_quoteTerm] = ACTIONS(292), - [anon_sym_unquote] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LPAREN_PIPE] = ACTIONS(302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), - }, - [3459] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(226), - [sym__atomic_expr_curly] = STATE(227), - [sym__atomic_expr_no_curly] = STATE(227), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(292), - [sym_set_n] = ACTIONS(292), - [sym_name_at] = ACTIONS(4029), - [sym_qualified_name] = ACTIONS(292), - [anon_sym__] = ACTIONS(292), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_LBRACE] = ACTIONS(296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(298), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(292), - [anon_sym_Prop] = ACTIONS(292), - [anon_sym_Set] = ACTIONS(292), - [anon_sym_quote] = ACTIONS(292), - [anon_sym_quoteTerm] = ACTIONS(292), - [anon_sym_unquote] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_LPAREN_PIPE] = ACTIONS(302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(292), - }, - [3460] = { - [sym_expr] = STATE(1635), - [sym__expr1] = STATE(3463), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(3464), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(3465), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(3466), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(4033), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [3461] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(4033), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(4033), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [3462] = { - [sym_atomic_expr] = STATE(1660), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(4033), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(4033), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2091), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [3463] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4849), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_rewrite] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), - }, - [3464] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4851), - [anon_sym_PIPE] = ACTIONS(162), - }, - [3465] = { - [sym_expr] = STATE(1670), - [sym__expr1] = STATE(3463), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(3464), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(3465), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(3466), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(4033), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [3466] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(4033), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(4033), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [3467] = { - [sym__expr1] = STATE(930), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [3468] = { - [sym__expr1] = STATE(931), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [3469] = { - [sym_with_expressions] = STATE(932), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_rewrite] = ACTIONS(646), - [anon_sym_with] = ACTIONS(4039), - }, - [3470] = { - [sym_expr] = STATE(933), - [sym__expr1] = STATE(3463), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(3464), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(3465), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(3466), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(4033), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [3471] = { - [sym__expr1] = STATE(2499), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2500), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(3471), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4071), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4074), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(4077), - [anon_sym_let] = ACTIONS(4080), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_rewrite] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), - }, - [3472] = { - [sym_atomic_expr] = STATE(2177), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(4043), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [3473] = { - [sym_lambda_bindings] = STATE(4226), - [sym_untyped_bindings] = STATE(4227), - [sym_typed_bindings] = STATE(4227), - [anon_sym_DOT] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2698), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4159), - [anon_sym_LPAREN] = ACTIONS(2702), - }, - [3474] = { - [sym_forall_bindings] = STATE(4228), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [3475] = { - [sym__expr1] = STATE(4229), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4230), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(4231), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [3476] = { - [sym__application] = STATE(2194), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(3477), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(4043), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [3477] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(4043), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [3478] = { - [sym_atomic_expr] = STATE(2196), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(4051), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(4051), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), - }, - [3479] = { - [sym_lambda_bindings] = STATE(4232), - [sym_untyped_bindings] = STATE(4233), - [sym_typed_bindings] = STATE(4233), - [anon_sym_DOT] = ACTIONS(2708), - [anon_sym_DOT_DOT] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2714), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(2718), - }, - [3480] = { - [sym_forall_bindings] = STATE(4234), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [4151] = { + [anon_sym_RBRACE] = ACTIONS(4702), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [anon_sym_COLON] = ACTIONS(4704), }, - [3481] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4235), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(4236), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [3482] = { - [sym__application] = STATE(2212), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(3483), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(4051), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(4051), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), - }, - [3483] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(4051), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(4051), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), - }, - [3484] = { - [sym_atomic_expr] = STATE(2217), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4059), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4059), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2722), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [3485] = { - [sym_atomic_expr] = STATE(2217), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4059), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4059), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2728), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [3486] = { - [sym_lambda_bindings] = STATE(4238), - [sym_untyped_bindings] = STATE(4239), - [sym_typed_bindings] = STATE(4239), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_DOT_DOT] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2742), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4853), - [anon_sym_LPAREN] = ACTIONS(2746), + [4152] = { + [sym_expr] = STATE(4733), + [sym__expr1] = STATE(3355), + [sym__application] = STATE(1473), + [sym__expr2] = STATE(1474), + [sym__atomic_exprs1] = STATE(3356), + [sym_atomic_expr] = STATE(1476), + [sym__atomic_expr_curly] = STATE(1477), + [sym__atomic_expr_no_curly] = STATE(1477), + [sym_tele_arrow] = STATE(3357), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1479), + [aux_sym__application_repeat1] = STATE(1480), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1829), + [sym_set_n] = ACTIONS(1829), + [sym_name_at] = ACTIONS(1831), + [sym_qualified_name] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1837), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1839), + [anon_sym_forall] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_QMARK] = ACTIONS(1829), + [anon_sym_Prop] = ACTIONS(1829), + [anon_sym_Set] = ACTIONS(1829), + [anon_sym_quote] = ACTIONS(1829), + [anon_sym_quoteTerm] = ACTIONS(1829), + [anon_sym_unquote] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_LPAREN_PIPE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), }, - [3487] = { - [sym_forall_bindings] = STATE(4240), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [4153] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym__layout_close_brace] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(781), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [3488] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4241), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(4242), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_EQ] = ACTIONS(781), }, - [3489] = { - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), + [4154] = { + [sym__layout_semicolon] = ACTIONS(3785), + [sym__layout_close_brace] = ACTIONS(3785), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), }, - [3490] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4855), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [4155] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym__layout_close_brace] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(5252), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), }, - [3491] = { + [4156] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4857), + [anon_sym_DASH_GT] = ACTIONS(5254), [anon_sym_PIPE] = ACTIONS(162), }, - [3492] = { - [sym_expr] = STATE(4244), - [sym__expr1] = STATE(3490), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3491), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3492), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3493), - [aux_sym__application_repeat1] = STATE(3494), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4059), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4061), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [4157] = { + [sym_expr] = STATE(4735), + [sym__expr1] = STATE(4155), + [sym__application] = STATE(3455), + [sym__expr2] = STATE(3456), + [sym__atomic_exprs1] = STATE(4156), + [sym_atomic_expr] = STATE(3458), + [sym__atomic_expr_curly] = STATE(3459), + [sym__atomic_expr_no_curly] = STATE(3459), + [sym_tele_arrow] = STATE(4157), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3461), + [aux_sym__application_repeat1] = STATE(3462), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3997), + [sym_set_n] = ACTIONS(3997), + [sym_name_at] = ACTIONS(3999), + [sym_qualified_name] = ACTIONS(3997), + [anon_sym__] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(4001), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(4007), + [anon_sym_forall] = ACTIONS(4009), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_Prop] = ACTIONS(3997), + [anon_sym_Set] = ACTIONS(3997), + [anon_sym_quote] = ACTIONS(3997), + [anon_sym_quoteTerm] = ACTIONS(3997), + [anon_sym_unquote] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(4013), + [anon_sym_LPAREN_PIPE] = ACTIONS(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), }, - [3493] = { - [sym__application] = STATE(2244), - [sym__expr2] = STATE(1270), + [4158] = { + [sym_vclose] = STATE(4737), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2245), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(4246), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(4859), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - }, - [3494] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4059), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4059), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2722), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(4738), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(5256), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [3495] = { - [sym_semi] = STATE(4247), - [aux_sym__declarations1_repeat1] = STATE(4248), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), + [4159] = { + [sym__layout_semicolon] = ACTIONS(3793), + [sym__layout_close_brace] = ACTIONS(3793), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), }, - [3496] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), + [4160] = { + [sym__layout_semicolon] = ACTIONS(3795), + [sym__layout_close_brace] = ACTIONS(3795), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), }, - [3497] = { + [4161] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4861), + [anon_sym_where] = ACTIONS(5258), }, - [3498] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), + [4162] = { + [sym__layout_semicolon] = ACTIONS(3799), + [sym__layout_close_brace] = ACTIONS(3799), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), }, - [3499] = { - [sym_semi] = STATE(4250), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4251), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1510), + [4163] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + }, + [4164] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + }, + [4165] = { + [sym__layout_semicolon] = ACTIONS(3011), + [sym__layout_close_brace] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_DOT_DOT] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3011), [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), }, - [3500] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(757), + [4166] = { + [sym_expr] = STATE(4740), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(758), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(759), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(760), - [aux_sym__application_repeat1] = STATE(761), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(972), + [sym_name_at] = ACTIONS(34), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(974), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(807), - [anon_sym_forall] = ACTIONS(809), - [anon_sym_let] = ACTIONS(811), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -119325,1152 +136769,482 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3501] = { - [sym_expr] = STATE(3489), - [sym__expr1] = STATE(4252), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4253), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4254), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3114), - [aux_sym__application_repeat1] = STATE(3115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3614), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [3502] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2517), - [sym__declaration] = STATE(4255), - [sym_function_clause] = STATE(1512), - [sym__declarations1] = STATE(3496), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [3503] = { - [sym_anonymous_name] = STATE(4256), - [sym_name] = ACTIONS(4863), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), - }, - [3504] = { - [sym_where_clause] = STATE(3498), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(4091), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(4093), - }, - [3505] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2517), - [sym__declaration] = STATE(1511), - [sym_function_clause] = STATE(1512), - [aux_sym_source_file_repeat1] = STATE(3505), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(2972), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2975), - [anon_sym_forall] = ACTIONS(2978), - [anon_sym_let] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - }, - [3506] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - }, - [3507] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - }, - [3508] = { - [sym_expr] = STATE(739), - [sym__expr1] = STATE(2524), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(2525), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(2526), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2114), - [aux_sym__application_repeat1] = STATE(2115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2624), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), - }, - [3509] = { - [sym_expr] = STATE(1314), - [sym__expr1] = STATE(2524), + [4167] = { + [sym_expr] = STATE(4741), + [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(2525), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(2526), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2114), - [aux_sym__application_repeat1] = STATE(2115), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2624), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), - }, - [3510] = { - [sym_expr] = STATE(2539), - [sym__expr1] = STATE(4257), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(4258), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(4259), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3269), - [aux_sym__application_repeat1] = STATE(3961), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(4641), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - }, - [3511] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2530), - [sym__declaration] = STATE(808), - [sym_function_clause] = STATE(809), - [aux_sym_source_file_repeat1] = STATE(3511), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(1802), - [sym_set_n] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(3829), - [sym_qualified_name] = ACTIONS(1802), - [anon_sym__] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE_RBRACE] = ACTIONS(680), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3832), - [anon_sym_forall] = ACTIONS(3835), - [anon_sym_let] = ACTIONS(3838), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1802), - [anon_sym_Prop] = ACTIONS(1802), - [anon_sym_Set] = ACTIONS(1802), - [anon_sym_quote] = ACTIONS(1802), - [anon_sym_quoteTerm] = ACTIONS(1802), - [anon_sym_unquote] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LPAREN_PIPE] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON] = ACTIONS(680), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3512] = { - [sym_expr] = STATE(3281), - [sym__expr1] = STATE(2524), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(2525), - [sym_atomic_expr] = STATE(186), - [sym__atomic_expr_curly] = STATE(187), - [sym__atomic_expr_no_curly] = STATE(187), - [sym_tele_arrow] = STATE(2526), + [4168] = { + [sym_expr] = STATE(4742), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2114), - [aux_sym__application_repeat1] = STATE(2115), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(230), - [sym_set_n] = ACTIONS(230), - [sym_name_at] = ACTIONS(2622), - [sym_qualified_name] = ACTIONS(230), - [anon_sym__] = ACTIONS(230), - [anon_sym_DOT] = ACTIONS(2624), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_forall] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_QMARK] = ACTIONS(230), - [anon_sym_Prop] = ACTIONS(230), - [anon_sym_Set] = ACTIONS(230), - [anon_sym_quote] = ACTIONS(230), - [anon_sym_quoteTerm] = ACTIONS(230), - [anon_sym_unquote] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_LPAREN_PIPE] = ACTIONS(250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3513] = { - [sym_semi] = STATE(2536), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3513), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3624), + [4169] = { + [anon_sym_RBRACE] = ACTIONS(5260), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3624), - }, - [3514] = { - [sym_expr] = STATE(4260), - [sym__expr1] = STATE(2540), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(2541), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(2542), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1431), - [aux_sym__application_repeat1] = STATE(2150), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(2644), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2646), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1770), - [anon_sym_forall] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - }, - [3515] = { - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), }, - [3516] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2530), - [sym__declaration] = STATE(4261), - [sym_function_clause] = STATE(809), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [4170] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5260), + [sym_comment] = ACTIONS(86), }, - [3517] = { - [sym_semi] = STATE(3516), - [aux_sym__declarations1_repeat1] = STATE(4262), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), + [4171] = { + [sym__layout_semicolon] = ACTIONS(3441), + [sym__layout_close_brace] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [sym_comment] = ACTIONS(86), }, - [3518] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(2530), - [sym__declaration] = STATE(2543), - [sym_function_clause] = STATE(809), - [sym__declarations1] = STATE(4263), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2552), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(2552), + [4172] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5260), }, - [3519] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), + [4173] = { + [anon_sym_RBRACE] = ACTIONS(5262), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5264), }, - [3520] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), + [4174] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5262), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5266), }, - [3521] = { - [anon_sym_SEMI] = ACTIONS(819), + [4175] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4865), - [anon_sym_EQ] = ACTIONS(819), - [anon_sym_COLON] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(5262), }, - [3522] = { - [sym_lambda_bindings] = STATE(607), - [sym_untyped_bindings] = STATE(3522), - [sym_typed_bindings] = STATE(3522), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(254), + [4176] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_COLON] = ACTIONS(825), + [anon_sym_COLON] = ACTIONS(5268), }, - [3523] = { - [sym_expr] = STATE(626), - [sym__expr1] = STATE(4265), + [4177] = { + [sym__layout_semicolon] = ACTIONS(1925), + [sym__layout_close_brace] = ACTIONS(1925), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_rewrite] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), + }, + [4178] = { + [sym_expr] = STATE(4748), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(4266), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(4267), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2563), - [aux_sym__application_repeat1] = STATE(2564), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3075), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3524] = { - [sym_where_clause] = STATE(1151), - [sym_rhs] = STATE(3546), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4867), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4145), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4867), - [anon_sym_module] = ACTIONS(4147), + [4179] = { + [sym__layout_semicolon] = ACTIONS(2366), + [sym__layout_close_brace] = ACTIONS(2366), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_rewrite] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), }, - [3525] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3524), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(4269), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [4180] = { + [sym_expr] = STATE(4749), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(4869), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(460), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3526] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(2560), + [4181] = { + [sym_vclose] = STATE(4750), + [sym__layout_close_brace] = ACTIONS(4966), + [sym_comment] = ACTIONS(86), + }, + [4182] = { + [sym_expr] = STATE(4751), + [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2561), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2562), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2563), - [aux_sym__application_repeat1] = STATE(2564), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3075), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [3527] = { - [sym_atomic_expr] = STATE(3050), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(4125), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(4125), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3528] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(2083), - [sym__atomic_expr_curly] = STATE(2084), - [sym__atomic_expr_no_curly] = STATE(2084), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2588), - [sym_set_n] = ACTIONS(2588), - [sym_name_at] = ACTIONS(4125), - [sym_qualified_name] = ACTIONS(2588), - [anon_sym__] = ACTIONS(2588), - [anon_sym_DOT] = ACTIONS(4125), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(2588), - [anon_sym_Prop] = ACTIONS(2588), - [anon_sym_Set] = ACTIONS(2588), - [anon_sym_quote] = ACTIONS(2588), - [anon_sym_quoteTerm] = ACTIONS(2588), - [anon_sym_unquote] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [4183] = { + [anon_sym_RBRACE] = ACTIONS(4728), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4730), }, - [3529] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(2560), + [4184] = { + [sym_expr] = STATE(4192), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2561), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2562), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2563), - [aux_sym__application_repeat1] = STATE(2564), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3075), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(4750), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [3530] = { - [sym_expr] = STATE(2470), - [sym__expr1] = STATE(4272), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4273), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4274), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3482), - [aux_sym__application_repeat1] = STATE(4275), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4871), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [3531] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2568), - [sym__declaration] = STATE(772), - [sym_function_clause] = STATE(773), - [aux_sym_source_file_repeat1] = STATE(3531), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4071), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4074), - [anon_sym_forall] = ACTIONS(4077), - [anon_sym_let] = ACTIONS(4080), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3532] = { - [sym_expr] = STATE(2511), - [sym__expr1] = STATE(2560), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2561), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(2562), + [4185] = { + [sym_expr] = STATE(4193), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2563), - [aux_sym__application_repeat1] = STATE(2564), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3075), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4752), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [3533] = { - [sym_semi] = STATE(2572), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3533), - [anon_sym_SEMI] = ACTIONS(3626), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3624), - }, - [3534] = { - [sym_atomic_expr] = STATE(2058), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(4135), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3535] = { - [sym_expr] = STATE(756), - [sym__expr1] = STATE(4265), + [4186] = { + [sym_expr] = STATE(4194), + [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(4266), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(4267), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2563), - [aux_sym__application_repeat1] = STATE(2564), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3075), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [3536] = { - [sym__application] = STATE(789), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(1139), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [aux_sym__application_repeat1] = STATE(4277), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(4135), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4875), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), - }, - [3537] = { - [sym_semi] = STATE(4278), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4279), - [anon_sym_SEMI] = ACTIONS(1014), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_COLON] = ACTIONS(1510), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(4752), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3538] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(1139), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(4135), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4875), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), + [4187] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_rewrite] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [3539] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(3540), - [sym__application] = STATE(39), + [4188] = { + [sym_expr] = STATE(4192), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(3541), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(3542), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1599), - [aux_sym__application_repeat1] = STATE(1600), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2017), + [sym_name_at] = ACTIONS(208), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(4750), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2021), - [anon_sym_forall] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2025), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -120481,43 +137255,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3540] = { - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_COLON] = ACTIONS(280), - }, - [3541] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(162), + [4189] = { + [sym_expr] = STATE(4193), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4752), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [3542] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(3540), - [sym__application] = STATE(39), + [4190] = { + [sym_expr] = STATE(4194), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(3541), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(3542), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1599), - [aux_sym__application_repeat1] = STATE(1600), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2017), + [sym_name_at] = ACTIONS(268), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2021), - [anon_sym_forall] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2025), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -120525,4023 +137327,2777 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(4752), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3543] = { - [sym_expr] = STATE(2093), - [sym__expr1] = STATE(4281), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4282), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4283), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2613), - [aux_sym__application_repeat1] = STATE(2620), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3129), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3123), - [anon_sym_forall] = ACTIONS(3125), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [3544] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3524), - [sym__declaration] = STATE(4284), - [sym_function_clause] = STATE(579), - [sym__declarations1] = STATE(2101), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), - }, - [3545] = { - [sym_anonymous_name] = STATE(4285), - [sym_name] = ACTIONS(4879), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), - }, - [3546] = { - [sym_where_clause] = STATE(2103), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(4145), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(4147), - }, - [3547] = { - [sym__expr1] = STATE(853), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2578), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(3547), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(3135), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(3138), - [anon_sym_forall] = ACTIONS(3141), - [anon_sym_let] = ACTIONS(3144), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - }, - [3548] = { - [sym_expr] = STATE(2636), - [sym__expr1] = STATE(3463), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(3464), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(3465), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(3466), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(4033), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [3549] = { - [sym__expr2] = STATE(414), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(3091), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4881), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - }, - [3550] = { - [sym__application] = STATE(906), - [sym__expr2] = STATE(95), - [sym_atomic_expr] = STATE(907), - [sym__atomic_expr_curly] = STATE(908), - [sym__atomic_expr_no_curly] = STATE(908), - [sym_non_absurd_lambda_clause] = STATE(909), - [sym_absurd_lambda_clause] = STATE(909), - [sym_lambda_clause] = STATE(2638), - [aux_sym__application_repeat1] = STATE(2587), - [sym_literal] = ACTIONS(1129), - [sym_set_n] = ACTIONS(1129), - [sym_name_at] = ACTIONS(3091), - [sym_qualified_name] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1135), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3093), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1129), - [anon_sym_Set] = ACTIONS(1129), - [anon_sym_quote] = ACTIONS(1129), - [anon_sym_quoteTerm] = ACTIONS(1129), - [anon_sym_unquote] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [sym_catchall_pragma] = ACTIONS(3095), - }, - [3551] = { - [sym_semi] = STATE(3550), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4287), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_rewrite] = ACTIONS(2001), - [anon_sym_with] = ACTIONS(2001), - }, - [3552] = { - [sym_expr] = STATE(2643), - [sym__expr1] = STATE(2591), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2592), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2593), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(2594), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3099), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_forall] = ACTIONS(1064), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [3553] = { - [sym_semi] = STATE(4288), - [aux_sym__declarations1_repeat1] = STATE(4289), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_rewrite] = ACTIONS(1376), - [anon_sym_with] = ACTIONS(1376), - }, - [3554] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4883), - }, - [3555] = { - [sym__application] = STATE(3139), - [sym__expr2] = STATE(1235), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [sym_non_absurd_lambda_clause] = STATE(3142), - [sym_absurd_lambda_clause] = STATE(3142), - [sym_lambda_clause] = STATE(4294), - [sym_lambda_where_clauses] = STATE(3144), - [aux_sym__application_repeat1] = STATE(4295), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(4885), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4887), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - [sym_catchall_pragma] = ACTIONS(4889), - }, - [3556] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4891), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [3557] = { - [sym_lambda_bindings] = STATE(3127), - [sym_untyped_bindings] = STATE(3557), - [sym_typed_bindings] = STATE(3557), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3667), - [anon_sym_DOT_DOT] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3671), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), - }, - [3558] = { - [sym_expr] = STATE(3144), - [sym__expr1] = STATE(4299), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4300), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4301), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2607), - [aux_sym__application_repeat1] = STATE(4302), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4893), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4895), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3115), - [anon_sym_forall] = ACTIONS(3117), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [3559] = { - [sym_rewrite_equations] = STATE(4304), - [sym_with_expressions] = STATE(1929), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(2029), - [anon_sym_with] = ACTIONS(4897), - }, - [3560] = { - [sym_where_clause] = STATE(1933), - [sym_rhs] = STATE(4308), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [4191] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4899), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4901), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4899), - [anon_sym_module] = ACTIONS(4903), - [anon_sym_with] = ACTIONS(170), - }, - [3561] = { - [sym__expr1] = STATE(3559), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3560), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(4309), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [3562] = { - [sym__application] = STATE(3180), - [sym__expr2] = STATE(1251), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [sym_non_absurd_lambda_clause] = STATE(3183), - [sym_absurd_lambda_clause] = STATE(3183), - [sym_lambda_clause] = STATE(4313), - [sym_lambda_where_clauses] = STATE(3185), - [aux_sym__application_repeat1] = STATE(4314), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(4905), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4907), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - [sym_catchall_pragma] = ACTIONS(4909), - }, - [3563] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4911), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [3564] = { - [sym_lambda_bindings] = STATE(3168), - [sym_untyped_bindings] = STATE(3564), - [sym_typed_bindings] = STATE(3564), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3717), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3721), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3723), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - }, - [3565] = { - [sym_expr] = STATE(3185), - [sym__expr1] = STATE(4281), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4282), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4283), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2613), - [aux_sym__application_repeat1] = STATE(2620), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3129), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3123), - [anon_sym_forall] = ACTIONS(3125), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_rewrite] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [3566] = { - [sym_where_clause] = STATE(1985), - [sym_rhs] = STATE(4318), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4143), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4913), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4143), - [anon_sym_module] = ACTIONS(4915), + [4192] = { + [anon_sym_RBRACE] = ACTIONS(5270), + [sym_comment] = ACTIONS(86), }, - [3567] = { - [sym__expr1] = STATE(853), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3566), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(4319), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [4193] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5272), + [sym_comment] = ACTIONS(86), }, - [3568] = { - [sym_expr] = STATE(4205), - [sym__expr1] = STATE(2617), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2618), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2619), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2613), - [aux_sym__application_repeat1] = STATE(2620), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3129), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3123), - [anon_sym_forall] = ACTIONS(3125), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4194] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5272), }, - [3569] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2568), - [sym__declaration] = STATE(4206), - [sym_function_clause] = STATE(773), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [4195] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(5272), }, - [3570] = { - [sym_semi] = STATE(3569), - [aux_sym__declarations1_repeat1] = STATE(4320), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), + [4196] = { + [sym_expr] = STATE(4754), + [sym__expr1] = STATE(3404), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(3405), + [sym_atomic_expr] = STATE(3406), + [sym__atomic_expr_curly] = STATE(3407), + [sym__atomic_expr_no_curly] = STATE(3407), + [sym_tele_arrow] = STATE(3408), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(3409), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3947), + [sym_set_n] = ACTIONS(3947), + [sym_name_at] = ACTIONS(3949), + [sym_qualified_name] = ACTIONS(3947), + [anon_sym__] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3951), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3955), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1869), + [anon_sym_forall] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_QMARK] = ACTIONS(3947), + [anon_sym_Prop] = ACTIONS(3947), + [anon_sym_Set] = ACTIONS(3947), + [anon_sym_quote] = ACTIONS(3947), + [anon_sym_quoteTerm] = ACTIONS(3947), + [anon_sym_unquote] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3947), }, - [3571] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2568), - [sym__declaration] = STATE(2621), - [sym_function_clause] = STATE(773), - [sym__declarations1] = STATE(4208), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [4197] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym__layout_close_brace] = ACTIONS(781), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_rewrite] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), + }, + [4198] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [3572] = { - [sym_expr] = STATE(4205), - [sym__expr1] = STATE(2624), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2625), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2626), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1254), - [aux_sym__application_repeat1] = STATE(2099), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2602), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2604), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1564), - [anon_sym_forall] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4199] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [3573] = { - [anon_sym_RBRACE] = ACTIONS(4917), + [4200] = { + [anon_sym_RBRACE] = ACTIONS(5274), [sym_comment] = ACTIONS(86), }, - [3574] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4917), + [4201] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5276), [sym_comment] = ACTIONS(86), }, - [3575] = { + [4202] = { + [anon_sym_LBRACE] = ACTIONS(5278), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5280), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4917), + [anon_sym_LPAREN] = ACTIONS(5282), }, - [3576] = { - [ts_builtin_sym_end] = ACTIONS(4085), - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_RBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_RPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_COLON] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), - [anon_sym_rewrite] = ACTIONS(4085), - [anon_sym_with] = ACTIONS(4085), + [4203] = { + [sym__application] = STATE(4761), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(4762), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(5284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [3577] = { - [ts_builtin_sym_end] = ACTIONS(4121), - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_RBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_RPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), - [anon_sym_rewrite] = ACTIONS(4121), - [anon_sym_with] = ACTIONS(4121), + [4204] = { + [sym__application] = STATE(4763), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5284), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3578] = { - [sym_expr] = STATE(1635), - [sym__expr1] = STATE(2666), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2667), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2668), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(2669), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3193), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [4205] = { + [sym_vopen] = STATE(4764), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), }, - [3579] = { - [sym__expr1] = STATE(930), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [4206] = { + [sym_binding_name] = STATE(4765), + [sym__application] = STATE(4766), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(5284), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3580] = { - [sym__expr1] = STATE(931), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [4207] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [3581] = { - [sym_with_expressions] = STATE(932), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_rewrite] = ACTIONS(646), - [anon_sym_with] = ACTIONS(4179), + [4208] = { + [sym_lambda_bindings] = STATE(4760), + [sym_untyped_bindings] = STATE(4208), + [sym_typed_bindings] = STATE(4208), + [sym__layout_semicolon] = ACTIONS(763), + [sym__layout_close_brace] = ACTIONS(763), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [anon_sym_SEMI] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(5288), + [anon_sym_DOT_DOT] = ACTIONS(5288), + [anon_sym_LBRACE] = ACTIONS(5290), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5292), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(5294), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), }, - [3582] = { - [sym_expr] = STATE(933), - [sym__expr1] = STATE(2666), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2667), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2668), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(2669), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3193), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [4209] = { + [sym_expr] = STATE(4776), + [sym__expr1] = STATE(4777), + [sym__application] = STATE(3420), + [sym__expr2] = STATE(3421), + [sym__atomic_exprs1] = STATE(4778), + [sym_atomic_expr] = STATE(4779), + [sym__atomic_expr_curly] = STATE(4780), + [sym__atomic_expr_no_curly] = STATE(4780), + [sym_tele_arrow] = STATE(4781), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3424), + [aux_sym__application_repeat1] = STATE(4782), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(5296), + [sym_set_n] = ACTIONS(5296), + [sym_name_at] = ACTIONS(5298), + [sym_qualified_name] = ACTIONS(5296), + [anon_sym__] = ACTIONS(5296), + [anon_sym_DOT] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(5302), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5304), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3969), + [anon_sym_forall] = ACTIONS(3971), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(5296), + [anon_sym_Prop] = ACTIONS(5296), + [anon_sym_Set] = ACTIONS(5296), + [anon_sym_quote] = ACTIONS(5296), + [anon_sym_quoteTerm] = ACTIONS(5296), + [anon_sym_unquote] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_LPAREN_PIPE] = ACTIONS(5308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5296), }, - [3583] = { - [sym__expr1] = STATE(2654), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [4210] = { + [sym__expr1] = STATE(3747), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2655), - [sym__declaration] = STATE(99), - [sym_function_clause] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(3583), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4209), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4212), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(4215), - [anon_sym_let] = ACTIONS(4218), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_rewrite] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), - }, - [3584] = { - [sym_atomic_expr] = STATE(2177), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(4183), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(3748), + [sym__declaration] = STATE(3749), + [sym_function_clause] = STATE(3750), + [aux_sym_source_file_repeat1] = STATE(4455), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_with] = ACTIONS(440), }, - [3585] = { - [sym_lambda_bindings] = STATE(4322), - [sym_untyped_bindings] = STATE(4323), - [sym_typed_bindings] = STATE(4323), - [anon_sym_DOT] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2698), + [4211] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_RPAREN] = ACTIONS(5276), }, - [3586] = { - [sym_forall_bindings] = STATE(4324), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [4212] = { [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [anon_sym_PIPE_RPAREN] = ACTIONS(5276), }, - [3587] = { - [sym__expr1] = STATE(4325), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4326), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(4327), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [4213] = { + [sym__layout_semicolon] = ACTIONS(787), + [sym__layout_close_brace] = ACTIONS(787), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [anon_sym_SEMI] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_with] = ACTIONS(673), }, - [3588] = { - [sym__application] = STATE(2194), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(3589), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(4183), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [4214] = { + [sym__layout_semicolon] = ACTIONS(789), + [sym__layout_close_brace] = ACTIONS(789), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), + [anon_sym_with] = ACTIONS(693), }, - [3589] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(4183), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), + [4215] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [3590] = { - [sym_atomic_expr] = STATE(2196), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(4191), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(4191), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [4216] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [3591] = { - [sym_lambda_bindings] = STATE(4328), - [sym_untyped_bindings] = STATE(4329), - [sym_typed_bindings] = STATE(4329), - [anon_sym_DOT] = ACTIONS(2708), - [anon_sym_DOT_DOT] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2714), + [4217] = { + [anon_sym_RBRACE] = ACTIONS(5310), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2718), }, - [3592] = { - [sym_forall_bindings] = STATE(4330), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [4218] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5312), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), }, - [3593] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4331), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(4332), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [4219] = { + [anon_sym_LBRACE] = ACTIONS(5314), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5316), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(5318), + }, + [4220] = { + [sym__application] = STATE(4789), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(4790), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(5320), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), + }, + [4221] = { + [sym__application] = STATE(4791), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5320), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3594] = { - [sym__application] = STATE(2212), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(3595), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(4191), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(4191), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [4222] = { + [sym_vopen] = STATE(4792), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), }, - [3595] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(4191), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(4191), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), + [4223] = { + [sym_binding_name] = STATE(4793), + [sym__application] = STATE(4794), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), - }, - [3596] = { - [sym_atomic_expr] = STATE(2217), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4199), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2722), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(5320), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3597] = { - [sym_atomic_expr] = STATE(2217), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4199), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2728), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [4224] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [3598] = { - [sym_lambda_bindings] = STATE(4333), - [sym_untyped_bindings] = STATE(4334), - [sym_typed_bindings] = STATE(4334), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_DOT_DOT] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2742), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3209), - [anon_sym_LPAREN] = ACTIONS(2746), + [4225] = { + [sym_lambda_bindings] = STATE(4788), + [sym_untyped_bindings] = STATE(4225), + [sym_typed_bindings] = STATE(4225), + [sym__layout_semicolon] = ACTIONS(763), + [sym__layout_close_brace] = ACTIONS(763), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [anon_sym_SEMI] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(5324), + [anon_sym_DOT_DOT] = ACTIONS(5324), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5328), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(5330), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_COLON] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), }, - [3599] = { - [sym_forall_bindings] = STATE(4335), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [4226] = { + [sym_expr] = STATE(4804), + [sym__expr1] = STATE(4805), + [sym__application] = STATE(3436), + [sym__expr2] = STATE(3437), + [sym__atomic_exprs1] = STATE(4806), + [sym_atomic_expr] = STATE(4807), + [sym__atomic_expr_curly] = STATE(4808), + [sym__atomic_expr_no_curly] = STATE(4808), + [sym_tele_arrow] = STATE(4809), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3440), + [aux_sym__application_repeat1] = STATE(4810), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(5332), + [sym_set_n] = ACTIONS(5332), + [sym_name_at] = ACTIONS(5334), + [sym_qualified_name] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_DOT] = ACTIONS(5336), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(5338), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5340), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3987), + [anon_sym_forall] = ACTIONS(3989), + [anon_sym_let] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(5332), + [anon_sym_Prop] = ACTIONS(5332), + [anon_sym_Set] = ACTIONS(5332), + [anon_sym_quote] = ACTIONS(5332), + [anon_sym_quoteTerm] = ACTIONS(5332), + [anon_sym_unquote] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_LPAREN_PIPE] = ACTIONS(5344), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5332), }, - [3600] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [4227] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4336), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(4337), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(3768), + [sym__declaration] = STATE(3769), + [sym_function_clause] = STATE(3770), + [aux_sym_source_file_repeat1] = STATE(4489), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [3601] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4919), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [4228] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5312), }, - [3602] = { + [4229] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4921), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_PIPE_RPAREN] = ACTIONS(5312), }, - [3603] = { - [sym_expr] = STATE(2237), - [sym__expr1] = STATE(3601), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3602), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3603), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3604), - [aux_sym__application_repeat1] = STATE(3605), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4199), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [4230] = { + [sym__layout_semicolon] = ACTIONS(787), + [sym__layout_close_brace] = ACTIONS(787), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [anon_sym_SEMI] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), }, - [3604] = { - [sym__application] = STATE(2244), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2245), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(4340), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(4923), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), + [4231] = { + [sym__layout_semicolon] = ACTIONS(789), + [sym__layout_close_brace] = ACTIONS(789), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), }, - [3605] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4199), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4199), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2722), + [4232] = { + [sym_expr] = STATE(4240), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3606] = { - [sym_expr] = STATE(2643), - [sym__expr1] = STATE(2666), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2667), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2668), + [4233] = { + [sym_expr] = STATE(4241), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(2669), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3193), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3195), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4804), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3607] = { - [sym_expr] = STATE(3577), - [sym__expr1] = STATE(2666), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(2667), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(2668), + [4234] = { + [sym_expr] = STATE(4251), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(2669), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(3193), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(3195), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [3608] = { - [sym_semi] = STATE(2672), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3608), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_rewrite] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - }, - [3609] = { - [sym__expr1] = STATE(2654), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2655), - [sym__declaration] = STATE(2644), - [sym_function_clause] = STATE(100), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [3610] = { - [sym_semi] = STATE(3609), - [aux_sym__declarations1_repeat1] = STATE(4341), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_RPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_rewrite] = ACTIONS(2550), - [anon_sym_with] = ACTIONS(2550), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(4804), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3611] = { - [sym__expr1] = STATE(2654), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2655), - [sym__declaration] = STATE(2675), - [sym_function_clause] = STATE(100), - [sym__declarations1] = STATE(2646), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [4235] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(2552), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - [anon_sym_rewrite] = ACTIONS(2552), - [anon_sym_with] = ACTIONS(2552), - }, - [3612] = { - [sym_atomic_expr] = STATE(3987), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(4229), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - }, - [3613] = { - [sym_expr] = STATE(3993), - [sym__expr1] = STATE(4344), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4345), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4346), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3588), - [aux_sym__application_repeat1] = STATE(4347), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4925), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4927), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [3614] = { - [sym__application] = STATE(4001), - [sym__expr2] = STATE(1235), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [aux_sym__application_repeat1] = STATE(4349), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(4229), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4929), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - }, - [3615] = { - [sym_semi] = STATE(4350), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4351), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_RPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_with] = ACTIONS(1048), - }, - [3616] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(4229), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4929), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - }, - [3617] = { - [sym_expr] = STATE(3985), - [sym__expr1] = STATE(3620), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3621), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3622), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1722), - [aux_sym__application_repeat1] = STATE(3623), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4237), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4239), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2145), - [anon_sym_forall] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [3618] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4237), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4237), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [3619] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4237), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4237), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4547), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4549), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [3620] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4931), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), + [4236] = { + [sym_expr] = STATE(4240), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3621] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4933), - [anon_sym_PIPE] = ACTIONS(162), + [4237] = { + [sym_expr] = STATE(4241), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4804), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [3622] = { - [sym_expr] = STATE(3881), - [sym__expr1] = STATE(3620), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3621), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3622), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1722), - [aux_sym__application_repeat1] = STATE(3623), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4237), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4239), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2145), - [anon_sym_forall] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [4238] = { + [sym_expr] = STATE(4251), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(4804), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3623] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4237), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4237), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), + [4239] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2145), - [anon_sym_forall] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [3624] = { - [sym__expr1] = STATE(2906), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(1722), - [aux_sym__application_repeat1] = STATE(1723), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(2143), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2145), - [anon_sym_forall] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [4240] = { + [anon_sym_RBRACE] = ACTIONS(5346), + [sym_comment] = ACTIONS(86), }, - [3625] = { - [sym_with_expressions] = STATE(2907), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(4241), + [4241] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5348), + [sym_comment] = ACTIONS(86), }, - [3626] = { - [sym_expr] = STATE(2915), - [sym__expr1] = STATE(3620), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3621), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3622), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1722), - [aux_sym__application_repeat1] = STATE(3623), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4237), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4239), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2145), - [anon_sym_forall] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [4242] = { + [anon_sym_LBRACE] = ACTIONS(5350), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5352), + [sym_comment] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(5354), }, - [3627] = { - [sym__expr1] = STATE(4325), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4326), - [sym__declaration] = STATE(4353), - [sym_function_clause] = STATE(1038), - [sym__declarations1] = STATE(2923), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [4243] = { + [sym__application] = STATE(4817), + [sym__expr2] = STATE(306), + [sym_atomic_expr] = STATE(307), + [sym__atomic_expr_curly] = STATE(308), + [sym__atomic_expr_no_curly] = STATE(308), + [sym_non_absurd_lambda_clause] = STATE(309), + [sym_absurd_lambda_clause] = STATE(310), + [sym_lambda_clauses] = STATE(4818), + [aux_sym__application_repeat1] = STATE(312), + [sym_literal] = ACTIONS(384), + [sym_set_n] = ACTIONS(384), + [sym_name_at] = ACTIONS(386), + [sym_qualified_name] = ACTIONS(384), + [anon_sym__] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_LBRACE_LBRACE] = ACTIONS(392), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), - [anon_sym_with] = ACTIONS(670), + [anon_sym_DASH_GT] = ACTIONS(394), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_forall] = ACTIONS(398), + [anon_sym_let] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_Prop] = ACTIONS(384), + [anon_sym_Set] = ACTIONS(384), + [anon_sym_quote] = ACTIONS(384), + [anon_sym_quoteTerm] = ACTIONS(384), + [anon_sym_unquote] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LPAREN_PIPE] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [sym_catchall_pragma] = ACTIONS(406), }, - [3628] = { - [sym_anonymous_name] = STATE(4354), - [sym_name] = ACTIONS(4935), - [anon_sym__] = ACTIONS(676), + [4244] = { + [sym__application] = STATE(4819), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5356), [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3629] = { - [sym_where_clause] = STATE(2925), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(4245), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(4247), - [anon_sym_with] = ACTIONS(678), + [4245] = { + [sym_vopen] = STATE(4820), + [sym__layout_open_brace] = ACTIONS(426), + [sym_comment] = ACTIONS(86), }, - [3630] = { - [sym__expr1] = STATE(2681), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2682), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(3630), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(2171), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2174), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2180), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), + [4246] = { + [sym_binding_name] = STATE(4821), + [sym__application] = STATE(4822), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(5356), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3631] = { - [sym_atomic_expr] = STATE(4018), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(4249), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), + [4247] = { + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(5358), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [3632] = { - [sym_expr] = STATE(4022), - [sym__expr1] = STATE(4062), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4063), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4064), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3594), - [aux_sym__application_repeat1] = STATE(4065), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4725), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4727), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4248] = { + [sym_lambda_bindings] = STATE(4816), + [sym_untyped_bindings] = STATE(4248), + [sym_typed_bindings] = STATE(4248), + [sym__layout_semicolon] = ACTIONS(763), + [sym__layout_close_brace] = ACTIONS(763), + [sym_literal] = ACTIONS(444), + [sym_set_n] = ACTIONS(444), + [anon_sym_SEMI] = ACTIONS(444), + [sym_name_at] = ACTIONS(444), + [sym_qualified_name] = ACTIONS(444), + [anon_sym__] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(5360), + [anon_sym_DOT_DOT] = ACTIONS(5360), + [anon_sym_LBRACE] = ACTIONS(5362), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5364), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_BSLASH] = ACTIONS(444), + [anon_sym_where] = ACTIONS(444), + [anon_sym_forall] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_in] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_Prop] = ACTIONS(444), + [anon_sym_Set] = ACTIONS(444), + [anon_sym_quote] = ACTIONS(444), + [anon_sym_quoteTerm] = ACTIONS(444), + [anon_sym_unquote] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(5366), + [anon_sym_LPAREN_PIPE] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_module] = ACTIONS(444), }, - [3633] = { - [sym__application] = STATE(4026), - [sym__expr2] = STATE(1251), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [aux_sym__application_repeat1] = STATE(4356), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(4249), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4937), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), + [4249] = { + [sym_expr] = STATE(4825), + [sym__expr1] = STATE(4155), + [sym__application] = STATE(3455), + [sym__expr2] = STATE(3456), + [sym__atomic_exprs1] = STATE(4156), + [sym_atomic_expr] = STATE(3458), + [sym__atomic_expr_curly] = STATE(3459), + [sym__atomic_expr_no_curly] = STATE(3459), + [sym_tele_arrow] = STATE(4157), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3461), + [aux_sym__application_repeat1] = STATE(3462), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3997), + [sym_set_n] = ACTIONS(3997), + [sym_name_at] = ACTIONS(3999), + [sym_qualified_name] = ACTIONS(3997), + [anon_sym__] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(4001), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(4007), + [anon_sym_forall] = ACTIONS(4009), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_Prop] = ACTIONS(3997), + [anon_sym_Set] = ACTIONS(3997), + [anon_sym_quote] = ACTIONS(3997), + [anon_sym_quoteTerm] = ACTIONS(3997), + [anon_sym_unquote] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(4013), + [anon_sym_LPAREN_PIPE] = ACTIONS(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), }, - [3634] = { - [sym_semi] = STATE(4357), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4358), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_RPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), + [4250] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(3794), + [sym__declaration] = STATE(3795), + [sym_function_clause] = STATE(3796), + [aux_sym_source_file_repeat1] = STATE(4512), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(757), + [sym__layout_close_brace] = ACTIONS(757), + [sym_literal] = ACTIONS(440), + [sym_set_n] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [sym_name_at] = ACTIONS(440), + [sym_qualified_name] = ACTIONS(440), + [anon_sym__] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(440), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_BSLASH] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_forall] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_in] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_Prop] = ACTIONS(440), + [anon_sym_Set] = ACTIONS(440), + [anon_sym_quote] = ACTIONS(440), + [anon_sym_quoteTerm] = ACTIONS(440), + [anon_sym_unquote] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LPAREN_PIPE] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), }, - [3635] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(4249), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4937), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), + [4251] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5348), }, - [3636] = { - [sym_expr] = STATE(4016), - [sym__expr1] = STATE(2273), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2274), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2275), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1728), - [aux_sym__application_repeat1] = STATE(2276), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2776), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2153), - [anon_sym_forall] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4252] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(5348), }, - [3637] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4331), - [sym__declaration] = STATE(4359), - [sym_function_clause] = STATE(1059), - [sym__declarations1] = STATE(2987), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), + [4253] = { + [sym_expr] = STATE(4826), + [sym__expr1] = STATE(3454), + [sym__application] = STATE(3455), + [sym__expr2] = STATE(3456), + [sym__atomic_exprs1] = STATE(3457), + [sym_atomic_expr] = STATE(3458), + [sym__atomic_expr_curly] = STATE(3459), + [sym__atomic_expr_no_curly] = STATE(3459), + [sym_tele_arrow] = STATE(3460), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3461), + [aux_sym__application_repeat1] = STATE(3462), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3997), + [sym_set_n] = ACTIONS(3997), + [sym_name_at] = ACTIONS(3999), + [sym_qualified_name] = ACTIONS(3997), + [anon_sym__] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(4001), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(4007), + [anon_sym_forall] = ACTIONS(4009), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_Prop] = ACTIONS(3997), + [anon_sym_Set] = ACTIONS(3997), + [anon_sym_quote] = ACTIONS(3997), + [anon_sym_quoteTerm] = ACTIONS(3997), + [anon_sym_unquote] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(4013), + [anon_sym_LPAREN_PIPE] = ACTIONS(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), }, - [3638] = { - [sym_anonymous_name] = STATE(4360), - [sym_name] = ACTIONS(4939), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), + [4254] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym__layout_close_brace] = ACTIONS(781), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), }, - [3639] = { - [sym_where_clause] = STATE(2989), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(4257), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(4259), + [4255] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [anon_sym_SEMI] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), }, - [3640] = { - [sym__expr1] = STATE(423), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2688), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(3640), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(2171), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2174), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2180), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), + [4256] = { + [sym_atomic_expr] = STATE(4827), + [sym__atomic_expr_curly] = STATE(4263), + [sym__atomic_expr_no_curly] = STATE(4263), + [sym_literal] = ACTIONS(4822), + [sym_set_n] = ACTIONS(4822), + [sym_name_at] = ACTIONS(4824), + [sym_qualified_name] = ACTIONS(4822), + [anon_sym__] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4826), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4828), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(4822), + [anon_sym_Prop] = ACTIONS(4822), + [anon_sym_Set] = ACTIONS(4822), + [anon_sym_quote] = ACTIONS(4822), + [anon_sym_quoteTerm] = ACTIONS(4822), + [anon_sym_unquote] = ACTIONS(4822), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_LPAREN_PIPE] = ACTIONS(4832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4822), }, - [3641] = { - [sym_atomic_expr] = STATE(4042), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(4261), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(4261), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), + [4257] = { + [sym_expr] = STATE(4829), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(5368), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3642] = { - [sym_expr] = STATE(4046), - [sym__expr1] = STATE(3601), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3602), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3603), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3604), - [aux_sym__application_repeat1] = STATE(3605), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4199), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [4258] = { + [sym_expr] = STATE(4830), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5370), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3643] = { - [sym__application] = STATE(4050), - [sym__expr2] = STATE(1270), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [aux_sym__application_repeat1] = STATE(4362), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(4261), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(4261), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4941), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), + [4259] = { + [sym_expr] = STATE(4831), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(5370), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3644] = { - [sym_semi] = STATE(4363), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4364), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_RPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), + [4260] = { + [sym_expr] = STATE(4832), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [3645] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(4261), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(4261), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4941), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), + [4261] = { + [sym__layout_semicolon] = ACTIONS(787), + [sym__layout_close_brace] = ACTIONS(787), + [sym_literal] = ACTIONS(673), + [sym_set_n] = ACTIONS(673), + [anon_sym_SEMI] = ACTIONS(673), + [sym_name_at] = ACTIONS(673), + [sym_qualified_name] = ACTIONS(673), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(673), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(673), + [anon_sym_where] = ACTIONS(673), + [anon_sym_forall] = ACTIONS(673), + [anon_sym_let] = ACTIONS(673), + [anon_sym_in] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_Prop] = ACTIONS(673), + [anon_sym_Set] = ACTIONS(673), + [anon_sym_quote] = ACTIONS(673), + [anon_sym_quoteTerm] = ACTIONS(673), + [anon_sym_unquote] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_LPAREN_PIPE] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), }, - [3646] = { - [sym_expr] = STATE(4040), - [sym__expr1] = STATE(1735), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(1736), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(1737), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1738), - [aux_sym__application_repeat1] = STATE(1739), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(2159), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(2161), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2163), - [anon_sym_forall] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [4262] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_module] = ACTIONS(164), }, - [3647] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4336), - [sym__declaration] = STATE(4365), - [sym_function_clause] = STATE(1085), - [sym__declarations1] = STATE(3033), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [4263] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_module] = ACTIONS(670), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), }, - [3648] = { - [sym_anonymous_name] = STATE(4366), - [sym_name] = ACTIONS(4943), - [anon_sym__] = ACTIONS(676), + [4264] = { + [sym__expr2] = STATE(4265), + [sym_atomic_expr] = STATE(4262), + [sym__atomic_expr_curly] = STATE(4263), + [sym__atomic_expr_no_curly] = STATE(4263), + [aux_sym__application_repeat1] = STATE(147), + [sym_literal] = ACTIONS(4822), + [sym_set_n] = ACTIONS(4822), + [sym_name_at] = ACTIONS(4824), + [sym_qualified_name] = ACTIONS(4822), + [anon_sym__] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4826), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4828), [sym_comment] = ACTIONS(18), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(4007), + [anon_sym_forall] = ACTIONS(4009), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_QMARK] = ACTIONS(4822), + [anon_sym_Prop] = ACTIONS(4822), + [anon_sym_Set] = ACTIONS(4822), + [anon_sym_quote] = ACTIONS(4822), + [anon_sym_quoteTerm] = ACTIONS(4822), + [anon_sym_unquote] = ACTIONS(4822), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_LPAREN_PIPE] = ACTIONS(4832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4822), }, - [3649] = { - [sym_where_clause] = STATE(3035), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(4269), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(4271), + [4265] = { + [sym__layout_semicolon] = ACTIONS(789), + [sym__layout_close_brace] = ACTIONS(789), + [sym_literal] = ACTIONS(693), + [sym_set_n] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(693), + [sym_name_at] = ACTIONS(693), + [sym_qualified_name] = ACTIONS(693), + [anon_sym__] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACE_LBRACE] = ACTIONS(693), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(693), + [anon_sym_where] = ACTIONS(693), + [anon_sym_forall] = ACTIONS(693), + [anon_sym_let] = ACTIONS(693), + [anon_sym_in] = ACTIONS(693), + [anon_sym_QMARK] = ACTIONS(693), + [anon_sym_Prop] = ACTIONS(693), + [anon_sym_Set] = ACTIONS(693), + [anon_sym_quote] = ACTIONS(693), + [anon_sym_quoteTerm] = ACTIONS(693), + [anon_sym_unquote] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_LPAREN_PIPE] = ACTIONS(693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), }, - [3650] = { - [sym__expr1] = STATE(423), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2694), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(3650), - [aux_sym__expr1_repeat1] = STATE(426), - [aux_sym__application_repeat1] = STATE(427), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(2171), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2174), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2180), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_module] = ACTIONS(680), + [4266] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym__layout_close_brace] = ACTIONS(3439), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), }, - [3651] = { - [sym_semi] = STATE(2699), - [aux_sym__declarations1_repeat1] = STATE(3651), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), + [4267] = { + [sym__layout_semicolon] = ACTIONS(4670), + [sym__layout_close_brace] = ACTIONS(4670), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), }, - [3652] = { - [sym_expr] = STATE(2727), - [sym__expr1] = STATE(2736), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(2737), - [sym_atomic_expr] = STATE(1809), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_tele_arrow] = STATE(2738), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(2739), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(3251), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2249), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), + [4268] = { + [sym_vclose] = STATE(4833), + [sym__layout_close_brace] = ACTIONS(4834), + [sym_comment] = ACTIONS(86), }, - [3653] = { - [sym__expr1] = STATE(2763), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [4269] = { + [sym_vopen] = STATE(3463), + [sym_declarations] = STATE(3464), + [sym__declarations0] = STATE(4834), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [3654] = { - [sym__expr1] = STATE(2764), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [4270] = { + [sym_expr] = STATE(615), + [sym__expr1] = STATE(3470), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(3471), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(3472), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1528), + [aux_sym__application_repeat1] = STATE(1529), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(1889), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1893), + [anon_sym_forall] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3655] = { - [sym_with_expressions] = STATE(2765), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_PIPE_RPAREN] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_rewrite] = ACTIONS(646), - [anon_sym_with] = ACTIONS(4277), + [4271] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(5372), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), }, - [3656] = { - [sym_expr] = STATE(2766), - [sym__expr1] = STATE(2736), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(2737), - [sym_atomic_expr] = STATE(1809), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_tele_arrow] = STATE(2738), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(2739), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(3251), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2249), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), + [4272] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(5374), + [anon_sym_PIPE] = ACTIONS(162), }, - [3657] = { - [sym__expr1] = STATE(2711), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(2712), - [sym__declaration] = STATE(1000), - [sym_function_clause] = STATE(1001), - [aux_sym_source_file_repeat1] = STATE(3657), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(2323), - [sym_set_n] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4307), - [sym_qualified_name] = ACTIONS(2323), - [anon_sym__] = ACTIONS(2323), - [anon_sym_DOT] = ACTIONS(4307), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2332), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4310), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(4313), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(2323), - [anon_sym_Prop] = ACTIONS(2323), - [anon_sym_Set] = ACTIONS(2323), - [anon_sym_quote] = ACTIONS(2323), - [anon_sym_quoteTerm] = ACTIONS(2323), - [anon_sym_unquote] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_LPAREN_PIPE] = ACTIONS(2347), - [anon_sym_PIPE_RPAREN] = ACTIONS(680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2323), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_rewrite] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), + [4273] = { + [sym_expr] = STATE(2895), + [sym__expr1] = STATE(4271), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(4272), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(4273), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2488), + [aux_sym__application_repeat1] = STATE(2495), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2993), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2987), + [anon_sym_forall] = ACTIONS(2989), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [3658] = { - [sym_atomic_expr] = STATE(2771), - [sym__atomic_expr_curly] = STATE(1836), - [sym__atomic_expr_no_curly] = STATE(1836), - [sym_literal] = ACTIONS(2265), - [sym_set_n] = ACTIONS(2265), - [sym_name_at] = ACTIONS(4281), - [sym_qualified_name] = ACTIONS(2265), - [anon_sym__] = ACTIONS(2265), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2271), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2265), - [anon_sym_Prop] = ACTIONS(2265), - [anon_sym_Set] = ACTIONS(2265), - [anon_sym_quote] = ACTIONS(2265), - [anon_sym_quoteTerm] = ACTIONS(2265), - [anon_sym_unquote] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_LPAREN_PIPE] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2265), + [4274] = { + [sym_expr] = STATE(3837), + [sym__expr1] = STATE(4277), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(4278), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(4279), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2482), + [aux_sym__application_repeat1] = STATE(4280), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4842), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4844), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2979), + [anon_sym_forall] = ACTIONS(2981), + [anon_sym_let] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), }, - [3659] = { - [sym_lambda_bindings] = STATE(4367), - [sym_untyped_bindings] = STATE(4368), - [sym_typed_bindings] = STATE(4368), - [anon_sym_DOT] = ACTIONS(3285), - [anon_sym_DOT_DOT] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3291), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3295), + [4275] = { + [sym_atomic_expr] = STATE(3644), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4842), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4213), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(4215), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), }, - [3660] = { - [sym_forall_bindings] = STATE(4369), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [4276] = { + [sym_atomic_expr] = STATE(3644), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4842), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4219), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(4221), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [4277] = { + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(5376), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), }, - [3661] = { - [sym__expr1] = STATE(4370), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4371), - [sym__declaration] = STATE(2785), - [sym_function_clause] = STATE(2786), - [aux_sym_source_file_repeat1] = STATE(4372), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [4278] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(5378), + [anon_sym_PIPE] = ACTIONS(162), }, - [3662] = { - [sym__application] = STATE(2790), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1835), - [sym__atomic_expr_curly] = STATE(1836), - [sym__atomic_expr_no_curly] = STATE(1836), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(3663), - [sym_literal] = ACTIONS(2265), - [sym_set_n] = ACTIONS(2265), - [sym_name_at] = ACTIONS(4281), - [sym_qualified_name] = ACTIONS(2265), - [anon_sym__] = ACTIONS(2265), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2271), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(2265), - [anon_sym_Prop] = ACTIONS(2265), - [anon_sym_Set] = ACTIONS(2265), - [anon_sym_quote] = ACTIONS(2265), - [anon_sym_quoteTerm] = ACTIONS(2265), - [anon_sym_unquote] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_LPAREN_PIPE] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2265), + [4279] = { + [sym_expr] = STATE(3654), + [sym__expr1] = STATE(4277), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(4278), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(4279), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2482), + [aux_sym__application_repeat1] = STATE(4280), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4842), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4844), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2979), + [anon_sym_forall] = ACTIONS(2981), + [anon_sym_let] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), }, - [3663] = { - [sym__expr2] = STATE(2791), - [sym_atomic_expr] = STATE(1835), - [sym__atomic_expr_curly] = STATE(1836), - [sym__atomic_expr_no_curly] = STATE(1836), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2265), - [sym_set_n] = ACTIONS(2265), - [sym_name_at] = ACTIONS(4281), - [sym_qualified_name] = ACTIONS(2265), - [anon_sym__] = ACTIONS(2265), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2271), + [4280] = { + [sym__expr2] = STATE(1944), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4842), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4842), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4213), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(2265), - [anon_sym_Prop] = ACTIONS(2265), - [anon_sym_Set] = ACTIONS(2265), - [anon_sym_quote] = ACTIONS(2265), - [anon_sym_quoteTerm] = ACTIONS(2265), - [anon_sym_unquote] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_LPAREN_PIPE] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2265), - }, - [3664] = { - [sym_atomic_expr] = STATE(2792), - [sym__atomic_expr_curly] = STATE(1852), - [sym__atomic_expr_no_curly] = STATE(1852), - [sym_literal] = ACTIONS(2283), - [sym_set_n] = ACTIONS(2283), - [sym_name_at] = ACTIONS(4289), - [sym_qualified_name] = ACTIONS(2283), - [anon_sym__] = ACTIONS(2283), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2289), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2283), - [anon_sym_Prop] = ACTIONS(2283), - [anon_sym_Set] = ACTIONS(2283), - [anon_sym_quote] = ACTIONS(2283), - [anon_sym_quoteTerm] = ACTIONS(2283), - [anon_sym_unquote] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_LPAREN_PIPE] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2283), + [anon_sym_BSLASH] = ACTIONS(2979), + [anon_sym_forall] = ACTIONS(2981), + [anon_sym_let] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(4215), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), }, - [3665] = { - [sym_lambda_bindings] = STATE(4373), - [sym_untyped_bindings] = STATE(4374), - [sym_typed_bindings] = STATE(4374), - [anon_sym_DOT] = ACTIONS(3301), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3307), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3311), + [4281] = { + [sym__expr1] = STATE(2684), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1112), + [sym__atomic_expr_curly] = STATE(1113), + [sym__atomic_expr_no_curly] = STATE(1113), + [aux_sym__expr1_repeat1] = STATE(2482), + [aux_sym__application_repeat1] = STATE(2483), + [sym_literal] = ACTIONS(1370), + [sym_set_n] = ACTIONS(1370), + [sym_name_at] = ACTIONS(2977), + [sym_qualified_name] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1370), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2979), + [anon_sym_forall] = ACTIONS(2981), + [anon_sym_let] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_Prop] = ACTIONS(1370), + [anon_sym_Set] = ACTIONS(1370), + [anon_sym_quote] = ACTIONS(1370), + [anon_sym_quoteTerm] = ACTIONS(1370), + [anon_sym_unquote] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LPAREN_PIPE] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), }, - [3666] = { - [sym_forall_bindings] = STATE(4375), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), + [4282] = { + [sym_expr] = STATE(2693), + [sym__expr1] = STATE(4277), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(4278), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(4279), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2482), + [aux_sym__application_repeat1] = STATE(4280), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4842), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4844), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2979), + [anon_sym_forall] = ACTIONS(2981), + [anon_sym_let] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), }, - [3667] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), + [4283] = { + [sym__expr1] = STATE(3479), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4376), - [sym__declaration] = STATE(2805), - [sym_function_clause] = STATE(2806), - [aux_sym_source_file_repeat1] = STATE(4377), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(953), + [sym__declaration] = STATE(954), + [sym_function_clause] = STATE(955), + [aux_sym_source_file_repeat1] = STATE(4283), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(2997), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(3000), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(3003), + [anon_sym_let] = ACTIONS(3006), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), }, - [3668] = { - [sym__application] = STATE(2810), - [sym__expr2] = STATE(1850), + [4284] = { + [sym_expr] = STATE(3849), + [sym__expr1] = STATE(4271), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(4272), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(4273), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2488), + [aux_sym__application_repeat1] = STATE(2495), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2993), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2987), + [anon_sym_forall] = ACTIONS(2989), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), + }, + [4285] = { + [sym__expr1] = STATE(809), + [sym__application] = STATE(94), + [sym__expr2] = STATE(95), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1851), - [sym__atomic_expr_curly] = STATE(1852), - [sym__atomic_expr_no_curly] = STATE(1852), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(3669), - [sym_literal] = ACTIONS(2283), - [sym_set_n] = ACTIONS(2283), - [sym_name_at] = ACTIONS(4289), - [sym_qualified_name] = ACTIONS(2283), - [anon_sym__] = ACTIONS(2283), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2289), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(2283), - [anon_sym_Prop] = ACTIONS(2283), - [anon_sym_Set] = ACTIONS(2283), - [anon_sym_quote] = ACTIONS(2283), - [anon_sym_quoteTerm] = ACTIONS(2283), - [anon_sym_unquote] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_LPAREN_PIPE] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2283), + [sym_atomic_expr] = STATE(96), + [sym__atomic_expr_curly] = STATE(97), + [sym__atomic_expr_no_curly] = STATE(97), + [sym_lhs] = STATE(974), + [sym__declaration] = STATE(975), + [sym_function_clause] = STATE(976), + [aux_sym_source_file_repeat1] = STATE(4285), + [aux_sym__expr1_repeat1] = STATE(812), + [aux_sym__application_repeat1] = STATE(813), + [sym_literal] = ACTIONS(1103), + [sym_set_n] = ACTIONS(1103), + [sym_name_at] = ACTIONS(2997), + [sym_qualified_name] = ACTIONS(1103), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1112), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(3000), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(3003), + [anon_sym_let] = ACTIONS(3006), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_Prop] = ACTIONS(1103), + [anon_sym_Set] = ACTIONS(1103), + [anon_sym_quote] = ACTIONS(1103), + [anon_sym_quoteTerm] = ACTIONS(1103), + [anon_sym_unquote] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LPAREN_PIPE] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), }, - [3669] = { - [sym__expr2] = STATE(2811), - [sym_atomic_expr] = STATE(1851), - [sym__atomic_expr_curly] = STATE(1852), - [sym__atomic_expr_no_curly] = STATE(1852), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2283), - [sym_set_n] = ACTIONS(2283), - [sym_name_at] = ACTIONS(4289), - [sym_qualified_name] = ACTIONS(2283), - [anon_sym__] = ACTIONS(2283), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2289), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(2283), - [anon_sym_Prop] = ACTIONS(2283), - [anon_sym_Set] = ACTIONS(2283), - [anon_sym_quote] = ACTIONS(2283), - [anon_sym_quoteTerm] = ACTIONS(2283), - [anon_sym_unquote] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_LPAREN_PIPE] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2283), + [4286] = { + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), }, - [3670] = { - [sym_atomic_expr] = STATE(2815), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(4297), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3315), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), + [4287] = { + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), }, - [3671] = { - [sym_atomic_expr] = STATE(2815), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(4297), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3321), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), + [4288] = { + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), }, - [3672] = { - [sym_lambda_bindings] = STATE(4378), - [sym_untyped_bindings] = STATE(4379), - [sym_typed_bindings] = STATE(4379), - [anon_sym_DOT] = ACTIONS(3329), - [anon_sym_DOT_DOT] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3335), + [4289] = { + [ts_builtin_sym_end] = ACTIONS(4512), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_RPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + [anon_sym_rewrite] = ACTIONS(4512), + [anon_sym_with] = ACTIONS(4512), + }, + [4290] = { + [sym_expr] = STATE(4386), + [sym__expr1] = STATE(3499), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(3500), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(3501), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1601), + [aux_sym__application_repeat1] = STATE(3502), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4075), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1977), + [anon_sym_forall] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [4291] = { + [anon_sym_RBRACE] = ACTIONS(5380), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3339), }, - [3673] = { - [sym_forall_bindings] = STATE(4380), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [4292] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5380), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), }, - [3674] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4381), - [sym__declaration] = STATE(2831), - [sym_function_clause] = STATE(2832), - [aux_sym_source_file_repeat1] = STATE(4382), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [4293] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5380), }, - [3675] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4945), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_PIPE_RPAREN] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [4294] = { + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_PIPE_RPAREN] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + [anon_sym_rewrite] = ACTIONS(3863), + [anon_sym_with] = ACTIONS(3863), }, - [3676] = { + [4295] = { + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_PIPE_RPAREN] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_rewrite] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + }, + [4296] = { + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_PIPE_RPAREN] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_rewrite] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + }, + [4297] = { + [anon_sym_RBRACE] = ACTIONS(5382), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(5384), }, - [3677] = { - [sym_expr] = STATE(2837), - [sym__expr1] = STATE(3675), - [sym__application] = STATE(1868), - [sym__expr2] = STATE(1869), - [sym__atomic_exprs1] = STATE(3676), - [sym_atomic_expr] = STATE(1871), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_tele_arrow] = STATE(3677), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3678), - [aux_sym__application_repeat1] = STATE(3679), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(4297), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2309), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), + [4298] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5382), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5386), }, - [3678] = { - [sym__application] = STATE(2844), - [sym__expr2] = STATE(1869), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2845), - [sym__atomic_expr_curly] = STATE(2846), - [sym__atomic_expr_no_curly] = STATE(2846), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(4385), - [sym_literal] = ACTIONS(3345), - [sym_set_n] = ACTIONS(3345), - [sym_name_at] = ACTIONS(4949), - [sym_qualified_name] = ACTIONS(3345), - [anon_sym__] = ACTIONS(3345), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3351), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(3345), - [anon_sym_Prop] = ACTIONS(3345), - [anon_sym_Set] = ACTIONS(3345), - [anon_sym_quote] = ACTIONS(3345), - [anon_sym_quoteTerm] = ACTIONS(3345), - [anon_sym_unquote] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_LPAREN_PIPE] = ACTIONS(3355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3345), + [4299] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5382), }, - [3679] = { - [sym__expr2] = STATE(2848), - [sym_atomic_expr] = STATE(1871), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(4297), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3315), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), + [4300] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5388), }, - [3680] = { - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_PIPE_RPAREN] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), - [anon_sym_rewrite] = ACTIONS(2934), - [anon_sym_with] = ACTIONS(2934), + [4301] = { + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_PIPE_RPAREN] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), }, - [3681] = { - [sym_expr] = STATE(4386), + [4302] = { + [sym_expr] = STATE(4842), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -124577,8 +140133,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3682] = { - [sym_expr] = STATE(4387), + [4303] = { + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_PIPE_RPAREN] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), + }, + [4304] = { + [sym_expr] = STATE(4843), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -124614,8 +140200,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3683] = { - [sym_expr] = STATE(4388), + [4305] = { + [sym_vclose] = STATE(4845), + [sym__layout_close_brace] = ACTIONS(5390), + [sym_comment] = ACTIONS(86), + }, + [4306] = { + [sym_expr] = STATE(4846), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -124651,729 +140242,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3684] = { - [anon_sym_RBRACE] = ACTIONS(4951), - [sym_comment] = ACTIONS(86), - }, - [3685] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4951), - [sym_comment] = ACTIONS(86), - }, - [3686] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_PIPE_RPAREN] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_rewrite] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), - }, - [3687] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_PIPE_RPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_rewrite] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), - }, - [3688] = { - [sym_expr] = STATE(3696), - [sym__expr1] = STATE(2736), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(2737), - [sym_atomic_expr] = STATE(1809), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_tele_arrow] = STATE(2738), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(2739), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(3251), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2249), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), - }, - [3689] = { - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_RPAREN] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_rewrite] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), - }, - [3690] = { - [sym_expr] = STATE(4390), - [sym__expr1] = STATE(2736), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(2737), - [sym_atomic_expr] = STATE(1809), - [sym__atomic_expr_curly] = STATE(1810), - [sym__atomic_expr_no_curly] = STATE(1810), - [sym_tele_arrow] = STATE(2738), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(2739), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2241), - [sym_set_n] = ACTIONS(2241), - [sym_name_at] = ACTIONS(3251), - [sym_qualified_name] = ACTIONS(2241), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2249), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_Prop] = ACTIONS(2241), - [anon_sym_Set] = ACTIONS(2241), - [anon_sym_quote] = ACTIONS(2241), - [anon_sym_quoteTerm] = ACTIONS(2241), - [anon_sym_unquote] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_LPAREN_PIPE] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), - }, - [3691] = { - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_PIPE_RPAREN] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_rewrite] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - }, - [3692] = { - [sym_semi] = STATE(2745), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3692), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_PIPE_RPAREN] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_rewrite] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - }, - [3693] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4951), - }, - [3694] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_PIPE_RPAREN] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_rewrite] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), - }, - [3695] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_PIPE_RPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_rewrite] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), - }, - [3696] = { - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_PIPE_RPAREN] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), - [anon_sym_rewrite] = ACTIONS(3153), - [anon_sym_with] = ACTIONS(3153), - }, - [3697] = { - [sym__expr1] = STATE(2711), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(2712), - [sym__declaration] = STATE(4391), - [sym_function_clause] = STATE(1001), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - }, - [3698] = { - [sym_semi] = STATE(3697), - [aux_sym__declarations1_repeat1] = STATE(4392), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_PIPE_RPAREN] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_rewrite] = ACTIONS(2550), - [anon_sym_with] = ACTIONS(2550), - }, - [3699] = { - [sym__expr1] = STATE(2711), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(2712), - [sym__declaration] = STATE(2767), - [sym_function_clause] = STATE(1001), - [sym__declarations1] = STATE(4393), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_PIPE_RPAREN] = ACTIONS(2552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - [anon_sym_rewrite] = ACTIONS(2552), - [anon_sym_with] = ACTIONS(2552), - }, - [3700] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_PIPE_RPAREN] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), - }, - [3701] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_PIPE_RPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), - }, - [3702] = { - [sym__application] = STATE(4394), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), - }, - [3703] = { - [sym__application] = STATE(4395), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [3704] = { - [sym_binding_name] = STATE(4396), - [sym__application] = STATE(4397), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), - }, - [3705] = { - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_PIPE_RPAREN] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), - [anon_sym_with] = ACTIONS(968), - }, - [3706] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(4953), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4955), - }, - [3707] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(4957), - [sym_comment] = ACTIONS(86), - }, - [3708] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4953), + [4307] = { + [anon_sym_RBRACE] = ACTIONS(4856), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4959), - }, - [3709] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_PIPE_RPAREN] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), - }, - [3710] = { - [sym_atomic_expr] = STATE(4402), - [sym__atomic_expr_curly] = STATE(3719), - [sym__atomic_expr_no_curly] = STATE(3719), - [sym_literal] = ACTIONS(4355), - [sym_set_n] = ACTIONS(4355), - [sym_name_at] = ACTIONS(4357), - [sym_qualified_name] = ACTIONS(4355), - [anon_sym__] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4361), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_Prop] = ACTIONS(4355), - [anon_sym_Set] = ACTIONS(4355), - [anon_sym_quote] = ACTIONS(4355), - [anon_sym_quoteTerm] = ACTIONS(4355), - [anon_sym_unquote] = ACTIONS(4355), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_LPAREN_PIPE] = ACTIONS(4367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(4858), }, - [3711] = { - [sym_expr] = STATE(4404), + [4308] = { + [sym_expr] = STATE(4316), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -125394,7 +140269,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(4961), + [anon_sym_RBRACE] = ACTIONS(4878), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -125410,8 +140285,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3712] = { - [sym_expr] = STATE(4405), + [4309] = { + [sym_expr] = STATE(4317), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -125433,7 +140308,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4963), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4880), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -125448,45 +140323,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3713] = { - [sym_expr] = STATE(4408), - [sym__expr1] = STATE(4409), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(4410), - [sym_atomic_expr] = STATE(3737), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_tele_arrow] = STATE(4411), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3662), - [aux_sym__application_repeat1] = STATE(4412), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4965), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4389), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), - }, - [3714] = { - [sym_expr] = STATE(4413), + [4310] = { + [sym_expr] = STATE(4318), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -125519,454 +140357,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(4963), + [anon_sym_RPAREN] = ACTIONS(4880), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3715] = { - [sym_expr] = STATE(4414), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [3716] = { - [sym__application] = STATE(4416), - [sym__expr2] = STATE(1834), - [sym_atomic_expr] = STATE(3718), - [sym__atomic_expr_curly] = STATE(3719), - [sym__atomic_expr_no_curly] = STATE(3719), - [aux_sym__application_repeat1] = STATE(4417), - [sym_literal] = ACTIONS(4355), - [sym_set_n] = ACTIONS(4355), - [sym_name_at] = ACTIONS(4357), - [sym_qualified_name] = ACTIONS(4355), - [anon_sym__] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4361), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4969), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_Prop] = ACTIONS(4355), - [anon_sym_Set] = ACTIONS(4355), - [anon_sym_quote] = ACTIONS(4355), - [anon_sym_quoteTerm] = ACTIONS(4355), - [anon_sym_unquote] = ACTIONS(4355), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_LPAREN_PIPE] = ACTIONS(4367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), - }, - [3717] = { - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_PIPE_RPAREN] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_with] = ACTIONS(1044), - }, - [3718] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_PIPE_RPAREN] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), - }, - [3719] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_PIPE_RPAREN] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), - }, - [3720] = { - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_PIPE_RPAREN] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_with] = ACTIONS(1046), - }, - [3721] = { - [sym_semi] = STATE(4418), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4419), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_PIPE_RPAREN] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_with] = ACTIONS(1048), - }, - [3722] = { - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_PIPE_RPAREN] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_COLON] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_with] = ACTIONS(1052), - }, - [3723] = { - [sym__expr2] = STATE(2791), - [sym_atomic_expr] = STATE(3718), - [sym__atomic_expr_curly] = STATE(3719), - [sym__atomic_expr_no_curly] = STATE(3719), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(4355), - [sym_set_n] = ACTIONS(4355), - [sym_name_at] = ACTIONS(4357), - [sym_qualified_name] = ACTIONS(4355), - [anon_sym__] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4361), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4969), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_Prop] = ACTIONS(4355), - [anon_sym_Set] = ACTIONS(4355), - [anon_sym_quote] = ACTIONS(4355), - [anon_sym_quoteTerm] = ACTIONS(4355), - [anon_sym_unquote] = ACTIONS(4355), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_LPAREN_PIPE] = ACTIONS(4367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), - }, - [3724] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4953), - }, - [3725] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4971), - }, - [3726] = { - [sym_expr] = STATE(4400), - [sym__expr1] = STATE(3735), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(3736), - [sym_atomic_expr] = STATE(3737), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_tele_arrow] = STATE(3739), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1837), - [aux_sym__application_repeat1] = STATE(3740), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4383), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4389), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2273), - [anon_sym_forall] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), - }, - [3727] = { - [sym__application] = STATE(4421), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), - }, - [3728] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [4311] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_PIPE_RPAREN] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - [anon_sym_with] = ACTIONS(30), - }, - [3729] = { - [sym_atomic_expr] = STATE(4425), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4383), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4383), - [anon_sym_LBRACE] = ACTIONS(4973), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4975), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), - }, - [3730] = { - [sym_atomic_expr] = STATE(4425), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4383), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4383), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4981), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_PIPE_RPAREN] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [3731] = { - [sym_expr] = STATE(4430), + [4312] = { + [sym_expr] = STATE(4316), [sym__expr1] = STATE(38), - [sym__application] = STATE(170), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -125985,7 +140415,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(4985), + [anon_sym_RBRACE] = ACTIONS(4878), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -126001,10 +140431,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3732] = { - [sym_expr] = STATE(4431), + [4313] = { + [sym_expr] = STATE(4317), [sym__expr1] = STATE(60), - [sym__application] = STATE(185), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -126024,7 +140454,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4987), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4880), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -126039,10 +140469,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [3733] = { - [sym_expr] = STATE(4432), + [4314] = { + [sym_expr] = STATE(4318), [sym__expr1] = STATE(110), - [sym__application] = STATE(213), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -126073,757 +140503,398 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_RPAREN] = ACTIONS(4880), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3734] = { - [sym_expr] = STATE(4433), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [4315] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [3735] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_PIPE_RPAREN] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_PIPE_RPAREN] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [3736] = { + [4316] = { + [anon_sym_RBRACE] = ACTIONS(5392), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(162), }, - [3737] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_PIPE_RPAREN] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - [anon_sym_with] = ACTIONS(164), + [4317] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5394), + [sym_comment] = ACTIONS(86), }, - [3738] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_PIPE_RPAREN] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - [anon_sym_with] = ACTIONS(168), + [4318] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5394), }, - [3739] = { - [sym_expr] = STATE(4435), - [sym__expr1] = STATE(3735), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(3736), - [sym_atomic_expr] = STATE(3737), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_tele_arrow] = STATE(3739), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1837), - [aux_sym__application_repeat1] = STATE(3740), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4383), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4389), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2273), - [anon_sym_forall] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), + [4319] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(5394), }, - [3740] = { - [sym__expr2] = STATE(2791), - [sym_atomic_expr] = STATE(3737), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4383), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4383), - [anon_sym_LBRACE] = ACTIONS(4973), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4975), + [4320] = { + [sym_expr] = STATE(4849), + [sym__expr1] = STATE(3547), + [sym__application] = STATE(1668), + [sym__expr2] = STATE(1669), + [sym__atomic_exprs1] = STATE(3548), + [sym_atomic_expr] = STATE(3549), + [sym__atomic_expr_curly] = STATE(3550), + [sym__atomic_expr_no_curly] = STATE(3550), + [sym_tele_arrow] = STATE(3551), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1672), + [aux_sym__application_repeat1] = STATE(3552), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4121), + [sym_set_n] = ACTIONS(4121), + [sym_name_at] = ACTIONS(4123), + [sym_qualified_name] = ACTIONS(4121), + [anon_sym__] = ACTIONS(4121), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4129), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2273), - [anon_sym_forall] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), - }, - [3741] = { - [sym__expr1] = STATE(4436), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1835), - [sym__atomic_expr_curly] = STATE(1836), - [sym__atomic_expr_no_curly] = STATE(1836), - [aux_sym__expr1_repeat1] = STATE(1837), - [aux_sym__application_repeat1] = STATE(1838), - [sym_literal] = ACTIONS(2265), - [sym_set_n] = ACTIONS(2265), - [sym_name_at] = ACTIONS(2267), - [sym_qualified_name] = ACTIONS(2265), - [anon_sym__] = ACTIONS(2265), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2271), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2273), - [anon_sym_forall] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_QMARK] = ACTIONS(2265), - [anon_sym_Prop] = ACTIONS(2265), - [anon_sym_Set] = ACTIONS(2265), - [anon_sym_quote] = ACTIONS(2265), - [anon_sym_quoteTerm] = ACTIONS(2265), - [anon_sym_unquote] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_LPAREN_PIPE] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2265), - }, - [3742] = { - [sym_with_expressions] = STATE(4437), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_PIPE_RPAREN] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(4395), - }, - [3743] = { - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_PIPE_RPAREN] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(646), - }, - [3744] = { - [sym_expr] = STATE(4438), - [sym__expr1] = STATE(3735), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(3736), - [sym_atomic_expr] = STATE(3737), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_tele_arrow] = STATE(3739), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1837), - [aux_sym__application_repeat1] = STATE(3740), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4383), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4389), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2273), - [anon_sym_forall] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_forall] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_QMARK] = ACTIONS(4121), + [anon_sym_Prop] = ACTIONS(4121), + [anon_sym_Set] = ACTIONS(4121), + [anon_sym_quote] = ACTIONS(4121), + [anon_sym_quoteTerm] = ACTIONS(4121), + [anon_sym_unquote] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LPAREN_PIPE] = ACTIONS(4133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), }, - [3745] = { - [sym__expr1] = STATE(4370), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4371), - [sym__declaration] = STATE(4439), - [sym_function_clause] = STATE(2786), - [sym__declarations1] = STATE(4440), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_PIPE_RPAREN] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), - [anon_sym_with] = ACTIONS(670), + [4321] = { + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_PIPE_RPAREN] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), }, - [3746] = { - [sym_anonymous_name] = STATE(4441), - [sym_name] = ACTIONS(4993), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), + [4322] = { + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_PIPE_RPAREN] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_with] = ACTIONS(1212), }, - [3747] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_PIPE_RPAREN] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(678), - [anon_sym_with] = ACTIONS(678), + [4323] = { + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_PIPE_RPAREN] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_with] = ACTIONS(1214), }, - [3748] = { - [sym_where_clause] = STATE(4442), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(4399), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_PIPE_RPAREN] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(4401), - [anon_sym_with] = ACTIONS(678), + [4324] = { + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_PIPE_RPAREN] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + [anon_sym_with] = ACTIONS(1244), }, - [3749] = { - [sym__expr1] = STATE(2783), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), + [4325] = { + [sym_vclose] = STATE(4850), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(2784), - [sym__declaration] = STATE(2785), - [sym_function_clause] = STATE(2786), - [aux_sym_source_file_repeat1] = STATE(3749), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(2323), - [sym_set_n] = ACTIONS(2323), - [sym_name_at] = ACTIONS(2326), - [sym_qualified_name] = ACTIONS(2323), - [anon_sym__] = ACTIONS(2323), - [anon_sym_DOT] = ACTIONS(2326), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2332), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2335), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(2323), - [anon_sym_Prop] = ACTIONS(2323), - [anon_sym_Set] = ACTIONS(2323), - [anon_sym_quote] = ACTIONS(2323), - [anon_sym_quoteTerm] = ACTIONS(2323), - [anon_sym_unquote] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_LPAREN_PIPE] = ACTIONS(2347), - [anon_sym_PIPE_RPAREN] = ACTIONS(680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2323), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), - }, - [3750] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_PIPE_RPAREN] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [3751] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_PIPE_RPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(4851), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(5390), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [3752] = { - [sym__application] = STATE(4443), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [4326] = { + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_PIPE_RPAREN] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), + [anon_sym_with] = ACTIONS(1284), }, - [3753] = { - [sym__application] = STATE(4444), - [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [4327] = { + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_PIPE_RPAREN] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_with] = ACTIONS(1286), }, - [3754] = { - [sym_binding_name] = STATE(4445), - [sym__application] = STATE(4446), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [4328] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(5396), }, - [3755] = { - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_PIPE_RPAREN] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_COLON] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), + [4329] = { + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_PIPE_RPAREN] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), + [anon_sym_with] = ACTIONS(1292), }, - [3756] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(4995), + [4330] = { + [anon_sym_RBRACE] = ACTIONS(5398), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4997), + [anon_sym_COLON] = ACTIONS(5400), }, - [3757] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(4999), + [4331] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5398), [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5402), }, - [3758] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4995), + [4332] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5398), }, - [3759] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_PIPE_RPAREN] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), + [4333] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5404), }, - [3760] = { - [sym_atomic_expr] = STATE(4451), - [sym__atomic_expr_curly] = STATE(3769), - [sym__atomic_expr_no_curly] = STATE(3769), - [sym_literal] = ACTIONS(4415), - [sym_set_n] = ACTIONS(4415), - [sym_name_at] = ACTIONS(4417), - [sym_qualified_name] = ACTIONS(4415), - [anon_sym__] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4421), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(4415), - [anon_sym_Prop] = ACTIONS(4415), - [anon_sym_Set] = ACTIONS(4415), - [anon_sym_quote] = ACTIONS(4415), - [anon_sym_quoteTerm] = ACTIONS(4415), - [anon_sym_unquote] = ACTIONS(4415), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_LPAREN_PIPE] = ACTIONS(4427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4415), + [4334] = { + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_PIPE_RPAREN] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), }, - [3761] = { - [sym_expr] = STATE(4453), + [4335] = { + [sym_expr] = STATE(4857), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -126844,7 +140915,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(5003), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -126860,8 +140930,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3762] = { - [sym_expr] = STATE(4454), + [4336] = { + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_PIPE_RPAREN] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + }, + [4337] = { + [sym_expr] = STATE(4858), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -126883,7 +140982,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5005), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -126898,45 +140996,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3763] = { - [sym_expr] = STATE(4457), - [sym__expr1] = STATE(4458), - [sym__application] = STATE(1849), - [sym__expr2] = STATE(1850), - [sym__atomic_exprs1] = STATE(4459), - [sym_atomic_expr] = STATE(3787), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_tele_arrow] = STATE(4460), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3668), - [aux_sym__application_repeat1] = STATE(4461), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(5007), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4449), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), + [4338] = { + [sym_vclose] = STATE(4860), + [sym__layout_close_brace] = ACTIONS(5406), + [sym_comment] = ACTIONS(86), }, - [3764] = { - [sym_expr] = STATE(4462), + [4339] = { + [sym_expr] = STATE(4861), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -126969,447 +141035,163 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(5005), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3765] = { - [sym_expr] = STATE(4463), - [sym__expr1] = STATE(126), + [4340] = { + [anon_sym_RBRACE] = ACTIONS(4888), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4890), + }, + [4341] = { + [sym_expr] = STATE(4349), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), - }, - [3766] = { - [sym__application] = STATE(4465), - [sym__expr2] = STATE(1850), - [sym_atomic_expr] = STATE(3768), - [sym__atomic_expr_curly] = STATE(3769), - [sym__atomic_expr_no_curly] = STATE(3769), - [aux_sym__application_repeat1] = STATE(4466), - [sym_literal] = ACTIONS(4415), - [sym_set_n] = ACTIONS(4415), - [sym_name_at] = ACTIONS(4417), - [sym_qualified_name] = ACTIONS(4415), - [anon_sym__] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4421), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5011), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4415), - [anon_sym_Prop] = ACTIONS(4415), - [anon_sym_Set] = ACTIONS(4415), - [anon_sym_quote] = ACTIONS(4415), - [anon_sym_quoteTerm] = ACTIONS(4415), - [anon_sym_unquote] = ACTIONS(4415), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_LPAREN_PIPE] = ACTIONS(4427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4415), - }, - [3767] = { - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_PIPE_RPAREN] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - }, - [3768] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_PIPE_RPAREN] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), - }, - [3769] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_PIPE_RPAREN] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), - }, - [3770] = { - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(4910), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_PIPE_RPAREN] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - }, - [3771] = { - [sym_semi] = STATE(4467), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4468), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_PIPE_RPAREN] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - }, - [3772] = { - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_PIPE_RPAREN] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_COLON] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - }, - [3773] = { - [sym__expr2] = STATE(2811), - [sym_atomic_expr] = STATE(3768), - [sym__atomic_expr_curly] = STATE(3769), - [sym__atomic_expr_no_curly] = STATE(3769), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(4415), - [sym_set_n] = ACTIONS(4415), - [sym_name_at] = ACTIONS(4417), - [sym_qualified_name] = ACTIONS(4415), - [anon_sym__] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4421), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5011), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4415), - [anon_sym_Prop] = ACTIONS(4415), - [anon_sym_Set] = ACTIONS(4415), - [anon_sym_quote] = ACTIONS(4415), - [anon_sym_quoteTerm] = ACTIONS(4415), - [anon_sym_unquote] = ACTIONS(4415), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_LPAREN_PIPE] = ACTIONS(4427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4415), - }, - [3774] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(4995), - }, - [3775] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5013), - }, - [3776] = { - [sym_expr] = STATE(4449), - [sym__expr1] = STATE(3785), - [sym__application] = STATE(1849), - [sym__expr2] = STATE(1850), - [sym__atomic_exprs1] = STATE(3786), - [sym_atomic_expr] = STATE(3787), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_tele_arrow] = STATE(3789), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1853), - [aux_sym__application_repeat1] = STATE(3790), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(4443), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4449), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2291), - [anon_sym_forall] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3777] = { - [sym__application] = STATE(4470), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(4413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [4342] = { + [sym_expr] = STATE(4350), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4912), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3778] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [4343] = { + [sym_expr] = STATE(4351), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_PIPE] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_PIPE_RPAREN] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_COLON] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), - }, - [3779] = { - [sym_atomic_expr] = STATE(4474), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(4443), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(4912), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3780] = { - [sym_atomic_expr] = STATE(4474), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(4443), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(5021), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5023), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(5025), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), + [4344] = { + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_PIPE_RPAREN] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [3781] = { - [sym_expr] = STATE(4479), + [4345] = { + [sym_expr] = STATE(4349), [sym__expr1] = STATE(38), - [sym__application] = STATE(170), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -127428,7 +141210,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(5027), + [anon_sym_RBRACE] = ACTIONS(4910), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -127444,10 +141226,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3782] = { - [sym_expr] = STATE(4480), + [4346] = { + [sym_expr] = STATE(4350), [sym__expr1] = STATE(60), - [sym__application] = STATE(185), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -127467,7 +141249,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5029), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4912), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -127482,10 +141264,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [3783] = { - [sym_expr] = STATE(4481), + [4347] = { + [sym_expr] = STATE(4351), [sym__expr1] = STATE(110), - [sym__application] = STATE(213), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -127516,654 +141298,1205 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(5029), + [anon_sym_RPAREN] = ACTIONS(4912), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3784] = { - [sym_expr] = STATE(4482), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [4348] = { + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_PIPE_RPAREN] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [3785] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_PIPE_RPAREN] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [4349] = { + [anon_sym_RBRACE] = ACTIONS(5408), + [sym_comment] = ACTIONS(86), }, - [3786] = { + [4350] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5410), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(162), }, - [3787] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_PIPE_RPAREN] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON] = ACTIONS(164), - [anon_sym_module] = ACTIONS(164), + [4351] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5410), }, - [3788] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_PIPE] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_PIPE_RPAREN] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_COLON] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), + [4352] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(5410), }, - [3789] = { - [sym_expr] = STATE(4484), - [sym__expr1] = STATE(3785), - [sym__application] = STATE(1849), - [sym__expr2] = STATE(1850), - [sym__atomic_exprs1] = STATE(3786), - [sym_atomic_expr] = STATE(3787), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_tele_arrow] = STATE(3789), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1853), - [aux_sym__application_repeat1] = STATE(3790), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(4443), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4449), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2291), - [anon_sym_forall] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), + [4353] = { + [sym_expr] = STATE(4864), + [sym__expr1] = STATE(3584), + [sym__application] = STATE(1684), + [sym__expr2] = STATE(1685), + [sym__atomic_exprs1] = STATE(3585), + [sym_atomic_expr] = STATE(3586), + [sym__atomic_expr_curly] = STATE(3587), + [sym__atomic_expr_no_curly] = STATE(3587), + [sym_tele_arrow] = STATE(3588), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(1688), + [aux_sym__application_repeat1] = STATE(3589), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4157), + [sym_set_n] = ACTIONS(4157), + [sym_name_at] = ACTIONS(4159), + [sym_qualified_name] = ACTIONS(4157), + [anon_sym__] = ACTIONS(4157), + [anon_sym_DOT] = ACTIONS(4161), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4163), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4165), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2077), + [anon_sym_forall] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_QMARK] = ACTIONS(4157), + [anon_sym_Prop] = ACTIONS(4157), + [anon_sym_Set] = ACTIONS(4157), + [anon_sym_quote] = ACTIONS(4157), + [anon_sym_quoteTerm] = ACTIONS(4157), + [anon_sym_unquote] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LPAREN_PIPE] = ACTIONS(4169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4157), }, - [3790] = { - [sym__expr2] = STATE(2811), - [sym_atomic_expr] = STATE(3787), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(4443), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2291), - [anon_sym_forall] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), + [4354] = { + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_PIPE_RPAREN] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), }, - [3791] = { - [sym_expr] = STATE(4485), - [sym__expr1] = STATE(3785), - [sym__application] = STATE(1849), - [sym__expr2] = STATE(1850), - [sym__atomic_exprs1] = STATE(3786), - [sym_atomic_expr] = STATE(3787), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_tele_arrow] = STATE(3789), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1853), - [aux_sym__application_repeat1] = STATE(3790), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(4443), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4449), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2291), - [anon_sym_forall] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), + [4355] = { + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_PIPE_RPAREN] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), }, - [3792] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), + [4356] = { + [sym_vclose] = STATE(4865), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4376), - [sym__declaration] = STATE(4486), - [sym_function_clause] = STATE(2806), - [sym__declarations1] = STATE(4487), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_PIPE_RPAREN] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(4866), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(5406), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [3793] = { - [sym_anonymous_name] = STATE(4488), - [sym_name] = ACTIONS(5035), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), + [4357] = { + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_PIPE_RPAREN] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), }, - [3794] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_PIPE_RPAREN] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(678), + [4358] = { + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_PIPE_RPAREN] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), }, - [3795] = { - [sym_where_clause] = STATE(4489), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(4457), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_PIPE_RPAREN] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(4459), + [4359] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(5412), }, - [3796] = { - [sym__expr1] = STATE(454), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(2804), - [sym__declaration] = STATE(2805), - [sym_function_clause] = STATE(2806), - [aux_sym_source_file_repeat1] = STATE(3796), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(2323), - [sym_set_n] = ACTIONS(2323), - [sym_name_at] = ACTIONS(2326), - [sym_qualified_name] = ACTIONS(2323), - [anon_sym__] = ACTIONS(2323), - [anon_sym_DOT] = ACTIONS(2326), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2332), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2335), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(2323), - [anon_sym_Prop] = ACTIONS(2323), - [anon_sym_Set] = ACTIONS(2323), - [anon_sym_quote] = ACTIONS(2323), - [anon_sym_quoteTerm] = ACTIONS(2323), - [anon_sym_unquote] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_LPAREN_PIPE] = ACTIONS(2347), - [anon_sym_PIPE_RPAREN] = ACTIONS(680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2323), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), + [4360] = { + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_PIPE_RPAREN] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), }, - [3797] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_PIPE_RPAREN] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), + [4361] = { + [anon_sym_RBRACE] = ACTIONS(5414), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5416), }, - [3798] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_PIPE_RPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), + [4362] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5414), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5418), }, - [3799] = { - [sym__application] = STATE(4490), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), + [4363] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5414), + }, + [4364] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5420), + }, + [4365] = { + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_PIPE_RPAREN] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + }, + [4366] = { + [sym_expr] = STATE(4872), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3800] = { - [sym__application] = STATE(4491), + [4367] = { + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_PIPE_RPAREN] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + }, + [4368] = { + [sym_expr] = STATE(4873), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), [sym__expr2] = STATE(62), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(324), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name_at] = ACTIONS(410), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(416), - [anon_sym_forall] = ACTIONS(418), - [anon_sym_let] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3801] = { - [sym_binding_name] = STATE(4492), - [sym__application] = STATE(4493), + [4369] = { + [sym_vclose] = STATE(4875), + [sym__layout_close_brace] = ACTIONS(5422), + [sym_comment] = ACTIONS(86), + }, + [4370] = { + [sym_expr] = STATE(4876), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(322), - [sym__atomic_expr_curly] = STATE(323), - [sym__atomic_expr_no_curly] = STATE(323), - [aux_sym__application_repeat1] = STATE(351), - [sym_literal] = ACTIONS(408), - [sym_set_n] = ACTIONS(408), - [sym_name] = ACTIONS(448), - [sym_name_at] = ACTIONS(450), - [sym_qualified_name] = ACTIONS(408), - [anon_sym__] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_forall] = ACTIONS(456), - [anon_sym_let] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(408), - [anon_sym_Prop] = ACTIONS(408), - [anon_sym_Set] = ACTIONS(408), - [anon_sym_quote] = ACTIONS(408), - [anon_sym_quoteTerm] = ACTIONS(408), - [anon_sym_unquote] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LPAREN_PIPE] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(408), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [4371] = { + [anon_sym_RBRACE] = ACTIONS(4920), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(4922), + }, + [4372] = { + [sym_vclose] = STATE(4877), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(4878), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(5422), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), + }, + [4373] = { + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_PIPE_RPAREN] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), + }, + [4374] = { + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_PIPE_RPAREN] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + }, + [4375] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(5424), + }, + [4376] = { + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_PIPE_RPAREN] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), + }, + [4377] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_PIPE_RPAREN] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [4378] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_PIPE_RPAREN] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [4379] = { + [anon_sym_RBRACE] = ACTIONS(5426), + [sym_comment] = ACTIONS(86), + }, + [4380] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5426), + [sym_comment] = ACTIONS(86), + }, + [4381] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5426), + }, + [4382] = { + [ts_builtin_sym_end] = ACTIONS(3863), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + [anon_sym_with] = ACTIONS(3863), + }, + [4383] = { + [sym_expr] = STATE(3837), + [sym__expr1] = STATE(2694), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(2695), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(2698), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2682), + [aux_sym__application_repeat1] = STATE(2699), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(3193), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3185), + [anon_sym_forall] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [4384] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [4385] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [4386] = { + [ts_builtin_sym_end] = ACTIONS(3017), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_RPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + [anon_sym_with] = ACTIONS(3017), + }, + [4387] = { + [ts_builtin_sym_end] = ACTIONS(3373), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_RPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + }, + [4388] = { + [ts_builtin_sym_end] = ACTIONS(3375), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_RPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + }, + [4389] = { + [anon_sym_RBRACE] = ACTIONS(5428), + [sym_comment] = ACTIONS(86), + }, + [4390] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5428), + [sym_comment] = ACTIONS(86), + }, + [4391] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5428), + }, + [4392] = { + [ts_builtin_sym_end] = ACTIONS(3863), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), }, - [3802] = { - [sym_literal] = ACTIONS(968), - [sym_set_n] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [sym_name_at] = ACTIONS(968), - [sym_qualified_name] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_LBRACE_LBRACE] = ACTIONS(968), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_where] = ACTIONS(968), - [anon_sym_forall] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_Prop] = ACTIONS(968), - [anon_sym_Set] = ACTIONS(968), - [anon_sym_quote] = ACTIONS(968), - [anon_sym_quoteTerm] = ACTIONS(968), - [anon_sym_unquote] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_LPAREN_PIPE] = ACTIONS(968), - [anon_sym_PIPE_RPAREN] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), + [4393] = { + [sym_expr] = STATE(3849), + [sym__expr1] = STATE(2738), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(2739), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(2740), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2734), + [aux_sym__application_repeat1] = STATE(2741), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(3245), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3247), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3239), + [anon_sym_forall] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), }, - [3803] = { - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(5037), + [4394] = { + [ts_builtin_sym_end] = ACTIONS(3373), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_RPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + }, + [4395] = { + [ts_builtin_sym_end] = ACTIONS(3375), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_RPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + }, + [4396] = { + [anon_sym_RBRACE] = ACTIONS(5430), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5039), }, - [3804] = { - [sym_semi] = STATE(796), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(5041), + [4397] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5430), [sym_comment] = ACTIONS(86), }, - [3805] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5037), + [4398] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5043), + [anon_sym_RPAREN] = ACTIONS(5430), }, - [3806] = { - [sym_literal] = ACTIONS(30), - [sym_set_n] = ACTIONS(30), - [anon_sym_SEMI] = ACTIONS(30), - [sym_name_at] = ACTIONS(30), - [sym_qualified_name] = ACTIONS(30), - [anon_sym__] = ACTIONS(30), - [anon_sym_DOT] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_LBRACE_LBRACE] = ACTIONS(30), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(30), - [anon_sym_EQ] = ACTIONS(30), - [anon_sym_BSLASH] = ACTIONS(30), - [anon_sym_where] = ACTIONS(30), - [anon_sym_forall] = ACTIONS(30), - [anon_sym_let] = ACTIONS(30), - [anon_sym_in] = ACTIONS(30), - [anon_sym_QMARK] = ACTIONS(30), - [anon_sym_Prop] = ACTIONS(30), - [anon_sym_Set] = ACTIONS(30), - [anon_sym_quote] = ACTIONS(30), - [anon_sym_quoteTerm] = ACTIONS(30), - [anon_sym_unquote] = ACTIONS(30), - [anon_sym_LPAREN] = ACTIONS(30), - [anon_sym_LPAREN_PIPE] = ACTIONS(30), - [anon_sym_PIPE_RPAREN] = ACTIONS(30), - [anon_sym_DOT_DOT_DOT] = ACTIONS(30), - [anon_sym_module] = ACTIONS(30), + [4399] = { + [ts_builtin_sym_end] = ACTIONS(3863), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), }, - [3807] = { - [sym_atomic_expr] = STATE(4498), - [sym__atomic_expr_curly] = STATE(3816), - [sym__atomic_expr_no_curly] = STATE(3816), - [sym_literal] = ACTIONS(4473), - [sym_set_n] = ACTIONS(4473), - [sym_name_at] = ACTIONS(4475), - [sym_qualified_name] = ACTIONS(4473), - [anon_sym__] = ACTIONS(4473), - [anon_sym_DOT] = ACTIONS(4475), - [anon_sym_LBRACE] = ACTIONS(4477), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4479), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(4473), - [anon_sym_Prop] = ACTIONS(4473), - [anon_sym_Set] = ACTIONS(4473), - [anon_sym_quote] = ACTIONS(4473), - [anon_sym_quoteTerm] = ACTIONS(4473), - [anon_sym_unquote] = ACTIONS(4473), - [anon_sym_LPAREN] = ACTIONS(4483), - [anon_sym_LPAREN_PIPE] = ACTIONS(4485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4473), + [4400] = { + [sym_expr] = STATE(3860), + [sym__expr1] = STATE(2765), + [sym__application] = STATE(1145), + [sym__expr2] = STATE(1146), + [sym__atomic_exprs1] = STATE(2766), + [sym_atomic_expr] = STATE(1148), + [sym__atomic_expr_curly] = STATE(1149), + [sym__atomic_expr_no_curly] = STATE(1149), + [sym_tele_arrow] = STATE(2767), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2768), + [aux_sym__application_repeat1] = STATE(2769), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(1406), + [sym_set_n] = ACTIONS(1406), + [sym_name_at] = ACTIONS(3265), + [sym_qualified_name] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3269), + [anon_sym_forall] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_Prop] = ACTIONS(1406), + [anon_sym_Set] = ACTIONS(1406), + [anon_sym_quote] = ACTIONS(1406), + [anon_sym_quoteTerm] = ACTIONS(1406), + [anon_sym_unquote] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LPAREN_PIPE] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1406), }, - [3808] = { - [sym_expr] = STATE(4500), + [4401] = { + [ts_builtin_sym_end] = ACTIONS(3373), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_RPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + }, + [4402] = { + [ts_builtin_sym_end] = ACTIONS(3375), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_RPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + }, + [4403] = { + [sym__layout_semicolon] = ACTIONS(3011), + [sym__layout_close_brace] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_DOT_DOT] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3011), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_where] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3011), + [anon_sym_module] = ACTIONS(3011), + [anon_sym_rewrite] = ACTIONS(3011), + [anon_sym_with] = ACTIONS(3011), + }, + [4404] = { + [sym_expr] = STATE(4883), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -128184,7 +142517,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(5045), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -128200,8 +142532,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3809] = { - [sym_expr] = STATE(4501), + [4405] = { + [sym_expr] = STATE(4884), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -128223,7 +142555,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5047), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -128238,45 +142569,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3810] = { - [sym_expr] = STATE(4502), - [sym__expr1] = STATE(3675), - [sym__application] = STATE(1868), - [sym__expr2] = STATE(1869), - [sym__atomic_exprs1] = STATE(3676), - [sym_atomic_expr] = STATE(1871), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_tele_arrow] = STATE(3677), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3678), - [aux_sym__application_repeat1] = STATE(3679), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(4297), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2309), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), - }, - [3811] = { - [sym_expr] = STATE(4503), + [4406] = { + [sym_expr] = STATE(4885), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -128309,1720 +142603,1517 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(5047), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3812] = { - [sym_expr] = STATE(4504), - [sym__expr1] = STATE(126), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(127), - [sym_atomic_expr] = STATE(128), - [sym__atomic_expr_curly] = STATE(129), - [sym__atomic_expr_no_curly] = STATE(129), - [sym_tele_arrow] = STATE(130), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(131), - [aux_sym__application_repeat1] = STATE(132), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(130), - [sym_set_n] = ACTIONS(130), - [sym_name_at] = ACTIONS(132), - [sym_qualified_name] = ACTIONS(130), - [anon_sym__] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(136), - [anon_sym_LBRACE_LBRACE] = ACTIONS(138), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(140), - [anon_sym_forall] = ACTIONS(142), - [anon_sym_let] = ACTIONS(144), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_Prop] = ACTIONS(130), - [anon_sym_Set] = ACTIONS(130), - [anon_sym_quote] = ACTIONS(130), - [anon_sym_quoteTerm] = ACTIONS(130), - [anon_sym_unquote] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_LPAREN_PIPE] = ACTIONS(148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + [4407] = { + [anon_sym_RBRACE] = ACTIONS(5432), + [sym_comment] = ACTIONS(86), }, - [3813] = { - [sym__application] = STATE(4506), - [sym__expr2] = STATE(1869), - [sym_atomic_expr] = STATE(3815), - [sym__atomic_expr_curly] = STATE(3816), - [sym__atomic_expr_no_curly] = STATE(3816), - [aux_sym__application_repeat1] = STATE(4507), - [sym_literal] = ACTIONS(4473), - [sym_set_n] = ACTIONS(4473), - [sym_name_at] = ACTIONS(4475), - [sym_qualified_name] = ACTIONS(4473), - [anon_sym__] = ACTIONS(4473), - [anon_sym_DOT] = ACTIONS(4475), - [anon_sym_LBRACE] = ACTIONS(4477), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4479), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5049), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(4473), - [anon_sym_Prop] = ACTIONS(4473), - [anon_sym_Set] = ACTIONS(4473), - [anon_sym_quote] = ACTIONS(4473), - [anon_sym_quoteTerm] = ACTIONS(4473), - [anon_sym_unquote] = ACTIONS(4473), - [anon_sym_LPAREN] = ACTIONS(4483), - [anon_sym_LPAREN_PIPE] = ACTIONS(4485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4473), + [4408] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5432), + [sym_comment] = ACTIONS(86), }, - [3814] = { - [sym_literal] = ACTIONS(1044), - [sym_set_n] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [sym_name_at] = ACTIONS(1044), - [sym_qualified_name] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1044), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_where] = ACTIONS(1044), - [anon_sym_forall] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_Prop] = ACTIONS(1044), - [anon_sym_Set] = ACTIONS(1044), - [anon_sym_quote] = ACTIONS(1044), - [anon_sym_quoteTerm] = ACTIONS(1044), - [anon_sym_unquote] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_LPAREN_PIPE] = ACTIONS(1044), - [anon_sym_PIPE_RPAREN] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), + [4409] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym__layout_close_brace] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3439), + [anon_sym_where] = ACTIONS(3439), + [anon_sym_COLON] = ACTIONS(3439), + [anon_sym_module] = ACTIONS(3439), + [anon_sym_rewrite] = ACTIONS(3439), + [anon_sym_with] = ACTIONS(3439), }, - [3815] = { - [sym_literal] = ACTIONS(166), - [sym_set_n] = ACTIONS(166), - [anon_sym_SEMI] = ACTIONS(164), - [sym_name_at] = ACTIONS(166), - [sym_qualified_name] = ACTIONS(166), - [anon_sym__] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(166), - [anon_sym_LBRACE_LBRACE] = ACTIONS(166), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(164), - [anon_sym_BSLASH] = ACTIONS(166), - [anon_sym_where] = ACTIONS(164), - [anon_sym_forall] = ACTIONS(166), - [anon_sym_let] = ACTIONS(166), - [anon_sym_in] = ACTIONS(164), - [anon_sym_QMARK] = ACTIONS(166), - [anon_sym_Prop] = ACTIONS(166), - [anon_sym_Set] = ACTIONS(166), - [anon_sym_quote] = ACTIONS(166), - [anon_sym_quoteTerm] = ACTIONS(166), - [anon_sym_unquote] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LPAREN_PIPE] = ACTIONS(166), - [anon_sym_PIPE_RPAREN] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_module] = ACTIONS(164), + [4410] = { + [sym__layout_semicolon] = ACTIONS(3441), + [sym__layout_close_brace] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3441), + [anon_sym_where] = ACTIONS(3441), + [anon_sym_COLON] = ACTIONS(3441), + [anon_sym_module] = ACTIONS(3441), + [anon_sym_rewrite] = ACTIONS(3441), + [anon_sym_with] = ACTIONS(3441), }, - [3816] = { - [sym_literal] = ACTIONS(168), - [sym_set_n] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(168), - [sym_name_at] = ACTIONS(168), - [sym_qualified_name] = ACTIONS(168), - [anon_sym__] = ACTIONS(168), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(168), - [anon_sym_LBRACE_LBRACE] = ACTIONS(168), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_EQ] = ACTIONS(168), - [anon_sym_BSLASH] = ACTIONS(168), - [anon_sym_where] = ACTIONS(168), - [anon_sym_forall] = ACTIONS(168), - [anon_sym_let] = ACTIONS(168), - [anon_sym_in] = ACTIONS(168), - [anon_sym_QMARK] = ACTIONS(168), - [anon_sym_Prop] = ACTIONS(168), - [anon_sym_Set] = ACTIONS(168), - [anon_sym_quote] = ACTIONS(168), - [anon_sym_quoteTerm] = ACTIONS(168), - [anon_sym_unquote] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_LPAREN_PIPE] = ACTIONS(168), - [anon_sym_PIPE_RPAREN] = ACTIONS(168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(168), - [anon_sym_module] = ACTIONS(168), + [4411] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5432), }, - [3817] = { - [sym_literal] = ACTIONS(1046), - [sym_set_n] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [sym_name_at] = ACTIONS(1046), - [sym_qualified_name] = ACTIONS(1046), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_forall] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_Prop] = ACTIONS(1046), - [anon_sym_Set] = ACTIONS(1046), - [anon_sym_quote] = ACTIONS(1046), - [anon_sym_quoteTerm] = ACTIONS(1046), - [anon_sym_unquote] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_LPAREN_PIPE] = ACTIONS(1046), - [anon_sym_PIPE_RPAREN] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), + [4412] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_rewrite] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), }, - [3818] = { - [sym_semi] = STATE(4508), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4509), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_PIPE_RPAREN] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), + [4413] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_rewrite] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), }, - [3819] = { - [sym_literal] = ACTIONS(1052), - [sym_set_n] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [sym_name_at] = ACTIONS(1052), - [sym_qualified_name] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1052), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(1052), - [anon_sym_forall] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_in] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_Prop] = ACTIONS(1052), - [anon_sym_Set] = ACTIONS(1052), - [anon_sym_quote] = ACTIONS(1052), - [anon_sym_quoteTerm] = ACTIONS(1052), - [anon_sym_unquote] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_LPAREN_PIPE] = ACTIONS(1052), - [anon_sym_PIPE_RPAREN] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), + [4414] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym__layout_close_brace] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_where] = ACTIONS(1444), + [anon_sym_COLON] = ACTIONS(1444), + [anon_sym_module] = ACTIONS(1444), + [anon_sym_rewrite] = ACTIONS(1444), + [anon_sym_with] = ACTIONS(1444), }, - [3820] = { - [sym__expr2] = STATE(2848), - [sym_atomic_expr] = STATE(3815), - [sym__atomic_expr_curly] = STATE(3816), - [sym__atomic_expr_no_curly] = STATE(3816), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(4473), - [sym_set_n] = ACTIONS(4473), - [sym_name_at] = ACTIONS(4475), - [sym_qualified_name] = ACTIONS(4473), - [anon_sym__] = ACTIONS(4473), - [anon_sym_DOT] = ACTIONS(4475), - [anon_sym_LBRACE] = ACTIONS(4477), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4479), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5049), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(4473), - [anon_sym_Prop] = ACTIONS(4473), - [anon_sym_Set] = ACTIONS(4473), - [anon_sym_quote] = ACTIONS(4473), - [anon_sym_quoteTerm] = ACTIONS(4473), - [anon_sym_unquote] = ACTIONS(4473), - [anon_sym_LPAREN] = ACTIONS(4483), - [anon_sym_LPAREN_PIPE] = ACTIONS(4485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4473), + [4415] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym__layout_close_brace] = ACTIONS(3439), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_rewrite] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), }, - [3821] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5037), + [4416] = { + [sym__layout_semicolon] = ACTIONS(4670), + [sym__layout_close_brace] = ACTIONS(4670), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + [anon_sym_rewrite] = ACTIONS(2262), + [anon_sym_with] = ACTIONS(2262), }, - [3822] = { + [4417] = { + [sym_vclose] = STATE(4887), + [sym__layout_close_brace] = ACTIONS(4966), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5051), }, - [3823] = { - [sym_expr] = STATE(4496), - [sym__expr1] = STATE(1867), - [sym__application] = STATE(1868), - [sym__expr2] = STATE(1869), - [sym__atomic_exprs1] = STATE(1870), - [sym_atomic_expr] = STATE(1871), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_tele_arrow] = STATE(1873), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1874), - [aux_sym__application_repeat1] = STATE(1875), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(2303), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2309), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2311), - [anon_sym_forall] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), + [4418] = { + [sym_vopen] = STATE(3730), + [sym_declarations] = STATE(3731), + [sym__declarations0] = STATE(4888), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [3824] = { - [sym__application] = STATE(4511), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(367), - [sym__atomic_expr_curly] = STATE(368), - [sym__atomic_expr_no_curly] = STATE(368), - [aux_sym__application_repeat1] = STATE(369), - [sym_literal] = ACTIONS(480), - [sym_set_n] = ACTIONS(480), - [sym_name_at] = ACTIONS(482), - [sym_qualified_name] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(4471), - [anon_sym_LBRACE_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_forall] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_Prop] = ACTIONS(480), - [anon_sym_Set] = ACTIONS(480), - [anon_sym_quote] = ACTIONS(480), - [anon_sym_quoteTerm] = ACTIONS(480), - [anon_sym_unquote] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LPAREN_PIPE] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [4419] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), }, - [3825] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4381), - [sym__declaration] = STATE(4512), - [sym_function_clause] = STATE(2832), - [sym__declarations1] = STATE(4513), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_PIPE_RPAREN] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_module] = ACTIONS(670), + [4420] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), }, - [3826] = { - [sym_anonymous_name] = STATE(4514), - [sym_name] = ACTIONS(5053), - [anon_sym__] = ACTIONS(676), + [4421] = { + [sym__application] = STATE(4889), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [3827] = { - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_PIPE_RPAREN] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(678), - }, - [3828] = { - [sym_where_clause] = STATE(4515), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(4499), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_PIPE_RPAREN] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(4501), - }, - [3829] = { - [sym__expr1] = STATE(454), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(2830), - [sym__declaration] = STATE(2831), - [sym_function_clause] = STATE(2832), - [aux_sym_source_file_repeat1] = STATE(3829), - [aux_sym__expr1_repeat1] = STATE(463), - [aux_sym__application_repeat1] = STATE(464), - [sym_literal] = ACTIONS(2323), - [sym_set_n] = ACTIONS(2323), - [sym_name_at] = ACTIONS(2326), - [sym_qualified_name] = ACTIONS(2323), - [anon_sym__] = ACTIONS(2323), - [anon_sym_DOT] = ACTIONS(2326), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2332), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2335), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(2323), - [anon_sym_Prop] = ACTIONS(2323), - [anon_sym_Set] = ACTIONS(2323), - [anon_sym_quote] = ACTIONS(2323), - [anon_sym_quoteTerm] = ACTIONS(2323), - [anon_sym_unquote] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_LPAREN_PIPE] = ACTIONS(2347), - [anon_sym_PIPE_RPAREN] = ACTIONS(680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2323), - [anon_sym_module] = ACTIONS(680), - }, - [3830] = { - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_PIPE_RPAREN] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), - }, - [3831] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [4422] = { + [sym__application] = STATE(4890), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_PIPE_RPAREN] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3832] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [4423] = { + [sym_binding_name] = STATE(4891), + [sym__application] = STATE(4892), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_PIPE_RPAREN] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3833] = { - [anon_sym_RBRACE] = ACTIONS(5055), + [4424] = { + [sym__layout_semicolon] = ACTIONS(1356), + [sym__layout_close_brace] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_where] = ACTIONS(1356), + [anon_sym_COLON] = ACTIONS(1356), + [anon_sym_module] = ACTIONS(1356), + [anon_sym_with] = ACTIONS(1356), }, - [3834] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5057), + [4425] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(5434), [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5436), }, - [3835] = { + [4426] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(5438), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5057), }, - [3836] = { + [4427] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5434), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(5057), + [anon_sym_COLON] = ACTIONS(5440), }, - [3837] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_PIPE_RPAREN] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), + [4428] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(4897), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), }, - [3838] = { - [sym_semi] = STATE(2849), - [aux_sym__declarations1_repeat1] = STATE(3838), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_PIPE_RPAREN] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), + [4429] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5434), }, - [3839] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_PIPE_RPAREN] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), + [4430] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5442), }, - [3840] = { - [ts_builtin_sym_end] = ACTIONS(2934), - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), - [anon_sym_with] = ACTIONS(2934), + [4431] = { + [sym_expr] = STATE(4895), + [sym__expr1] = STATE(4441), + [sym__application] = STATE(2825), + [sym__expr2] = STATE(2826), + [sym__atomic_exprs1] = STATE(4442), + [sym_atomic_expr] = STATE(4443), + [sym__atomic_expr_curly] = STATE(4444), + [sym__atomic_expr_no_curly] = STATE(4444), + [sym_tele_arrow] = STATE(4445), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2829), + [aux_sym__application_repeat1] = STATE(4446), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4986), + [sym_set_n] = ACTIONS(4986), + [sym_name_at] = ACTIONS(4988), + [sym_qualified_name] = ACTIONS(4986), + [anon_sym__] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4994), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3321), + [anon_sym_forall] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_Prop] = ACTIONS(4986), + [anon_sym_Set] = ACTIONS(4986), + [anon_sym_quote] = ACTIONS(4986), + [anon_sym_quoteTerm] = ACTIONS(4986), + [anon_sym_unquote] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_LPAREN_PIPE] = ACTIONS(4998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), }, - [3841] = { - [sym_expr] = STATE(4518), + [4432] = { + [sym__application] = STATE(4899), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(4980), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), + }, + [4433] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [anon_sym_SEMI] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), + }, + [4434] = { + [sym_atomic_expr] = STATE(4903), + [sym__atomic_expr_curly] = STATE(4444), + [sym__atomic_expr_no_curly] = STATE(4444), + [sym_literal] = ACTIONS(4986), + [sym_set_n] = ACTIONS(4986), + [sym_name_at] = ACTIONS(4988), + [sym_qualified_name] = ACTIONS(4986), + [anon_sym__] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5446), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_Prop] = ACTIONS(4986), + [anon_sym_Set] = ACTIONS(4986), + [anon_sym_quote] = ACTIONS(4986), + [anon_sym_quoteTerm] = ACTIONS(4986), + [anon_sym_unquote] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(5448), + [anon_sym_LPAREN_PIPE] = ACTIONS(4998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), + }, + [4435] = { + [sym_atomic_expr] = STATE(4903), + [sym__atomic_expr_curly] = STATE(4444), + [sym__atomic_expr_no_curly] = STATE(4444), + [sym_literal] = ACTIONS(4986), + [sym_set_n] = ACTIONS(4986), + [sym_name_at] = ACTIONS(4988), + [sym_qualified_name] = ACTIONS(4986), + [anon_sym__] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(5450), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5452), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_Prop] = ACTIONS(4986), + [anon_sym_Set] = ACTIONS(4986), + [anon_sym_quote] = ACTIONS(4986), + [anon_sym_quoteTerm] = ACTIONS(4986), + [anon_sym_unquote] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(5454), + [anon_sym_LPAREN_PIPE] = ACTIONS(4998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), + }, + [4436] = { + [sym_expr] = STATE(4908), [sym__expr1] = STATE(38), - [sym__application] = STATE(39), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(5456), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3842] = { - [sym_expr] = STATE(4519), + [4437] = { + [sym_expr] = STATE(4909), [sym__expr1] = STATE(60), - [sym__application] = STATE(61), + [sym__application] = STATE(185), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5458), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [4438] = { + [sym_expr] = STATE(4910), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(5458), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3843] = { - [sym_expr] = STATE(4520), - [sym__expr1] = STATE(110), + [4439] = { + [sym_expr] = STATE(4911), + [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [3844] = { - [anon_sym_RBRACE] = ACTIONS(5059), + [4440] = { + [sym__layout_semicolon] = ACTIONS(1360), + [sym__layout_close_brace] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_where] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [anon_sym_module] = ACTIONS(1360), + [anon_sym_with] = ACTIONS(1360), }, - [3845] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5059), + [4441] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym__layout_close_brace] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(280), [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(5460), + [anon_sym_where] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_module] = ACTIONS(280), + [anon_sym_with] = ACTIONS(280), }, - [3846] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), + [4442] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(5460), + [anon_sym_PIPE] = ACTIONS(162), }, - [3847] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), + [4443] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [3848] = { - [sym_expr] = STATE(3862), - [sym__expr1] = STATE(2867), - [sym__application] = STATE(487), - [sym__expr2] = STATE(488), - [sym__atomic_exprs1] = STATE(2868), - [sym_atomic_expr] = STATE(1922), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [sym_tele_arrow] = STATE(2869), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2036), - [aux_sym__application_repeat1] = STATE(2870), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(3371), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2406), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), + [4444] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [3849] = { - [sym_expr] = STATE(2858), - [sym__expr1] = STATE(2867), - [sym__application] = STATE(487), - [sym__expr2] = STATE(488), - [sym__atomic_exprs1] = STATE(2868), - [sym_atomic_expr] = STATE(1922), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [sym_tele_arrow] = STATE(2869), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2036), - [aux_sym__application_repeat1] = STATE(2870), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(3371), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2406), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), + [4445] = { + [sym_expr] = STATE(4913), + [sym__expr1] = STATE(4441), + [sym__application] = STATE(2825), + [sym__expr2] = STATE(2826), + [sym__atomic_exprs1] = STATE(4442), + [sym_atomic_expr] = STATE(4443), + [sym__atomic_expr_curly] = STATE(4444), + [sym__atomic_expr_no_curly] = STATE(4444), + [sym_tele_arrow] = STATE(4445), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2829), + [aux_sym__application_repeat1] = STATE(4446), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4986), + [sym_set_n] = ACTIONS(4986), + [sym_name_at] = ACTIONS(4988), + [sym_qualified_name] = ACTIONS(4986), + [anon_sym__] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4994), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3321), + [anon_sym_forall] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_Prop] = ACTIONS(4986), + [anon_sym_Set] = ACTIONS(4986), + [anon_sym_quote] = ACTIONS(4986), + [anon_sym_quoteTerm] = ACTIONS(4986), + [anon_sym_unquote] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_LPAREN_PIPE] = ACTIONS(4998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), }, - [3850] = { - [sym__expr1] = STATE(1233), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(4526), - [aux_sym__application_repeat1] = STATE(4527), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(5061), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [4446] = { + [sym__expr2] = STATE(3755), + [sym_atomic_expr] = STATE(4443), + [sym__atomic_expr_curly] = STATE(4444), + [sym__atomic_expr_no_curly] = STATE(4444), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(4986), + [sym_set_n] = ACTIONS(4986), + [sym_name_at] = ACTIONS(4988), + [sym_qualified_name] = ACTIONS(4986), + [anon_sym__] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5446), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3321), + [anon_sym_forall] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_Prop] = ACTIONS(4986), + [anon_sym_Set] = ACTIONS(4986), + [anon_sym_quote] = ACTIONS(4986), + [anon_sym_quoteTerm] = ACTIONS(4986), + [anon_sym_unquote] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(5448), + [anon_sym_LPAREN_PIPE] = ACTIONS(4998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), }, - [3851] = { - [sym__expr1] = STATE(2906), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), + [4447] = { + [sym__expr1] = STATE(4914), + [sym__application] = STATE(3420), + [sym__expr2] = STATE(3421), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(4526), - [aux_sym__application_repeat1] = STATE(4527), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(5061), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [3852] = { - [sym_with_expressions] = STATE(2907), - [ts_builtin_sym_end] = ACTIONS(646), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(4527), - }, - [3853] = { - [sym_expr] = STATE(2915), - [sym__expr1] = STATE(4530), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4531), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4532), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4526), - [aux_sym__application_repeat1] = STATE(4533), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5069), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [sym_atomic_expr] = STATE(3422), + [sym__atomic_expr_curly] = STATE(3423), + [sym__atomic_expr_no_curly] = STATE(3423), + [aux_sym__expr1_repeat1] = STATE(3424), + [aux_sym__application_repeat1] = STATE(3425), + [sym_literal] = ACTIONS(3961), + [sym_set_n] = ACTIONS(3961), + [sym_name_at] = ACTIONS(3963), + [sym_qualified_name] = ACTIONS(3961), + [anon_sym__] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3967), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3969), + [anon_sym_forall] = ACTIONS(3971), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_Prop] = ACTIONS(3961), + [anon_sym_Set] = ACTIONS(3961), + [anon_sym_quote] = ACTIONS(3961), + [anon_sym_quoteTerm] = ACTIONS(3961), + [anon_sym_unquote] = ACTIONS(3961), + [anon_sym_LPAREN] = ACTIONS(3975), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3961), }, - [3854] = { - [sym__expr1] = STATE(2874), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2875), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(3854), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(680), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(3054), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(3057), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), + [4448] = { + [sym_with_expressions] = STATE(4915), + [sym__layout_semicolon] = ACTIONS(2746), + [sym__layout_close_brace] = ACTIONS(2746), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), }, - [3855] = { - [ts_builtin_sym_end] = ACTIONS(3066), - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), + [4449] = { + [sym__layout_semicolon] = ACTIONS(2746), + [sym__layout_close_brace] = ACTIONS(2746), + [sym_literal] = ACTIONS(612), + [sym_set_n] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [sym_name_at] = ACTIONS(612), + [sym_qualified_name] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(612), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_forall] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_Prop] = ACTIONS(612), + [anon_sym_Set] = ACTIONS(612), + [anon_sym_quote] = ACTIONS(612), + [anon_sym_quoteTerm] = ACTIONS(612), + [anon_sym_unquote] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LPAREN_PIPE] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), }, - [3856] = { - [sym_expr] = STATE(4534), - [sym__expr1] = STATE(2867), - [sym__application] = STATE(487), - [sym__expr2] = STATE(488), - [sym__atomic_exprs1] = STATE(2868), - [sym_atomic_expr] = STATE(1922), - [sym__atomic_expr_curly] = STATE(1923), - [sym__atomic_expr_no_curly] = STATE(1923), - [sym_tele_arrow] = STATE(2869), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2036), - [aux_sym__application_repeat1] = STATE(2870), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2398), - [sym_set_n] = ACTIONS(2398), - [sym_name_at] = ACTIONS(3371), - [sym_qualified_name] = ACTIONS(2398), - [anon_sym__] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2406), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2376), - [anon_sym_forall] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_Prop] = ACTIONS(2398), - [anon_sym_Set] = ACTIONS(2398), - [anon_sym_quote] = ACTIONS(2398), - [anon_sym_quoteTerm] = ACTIONS(2398), - [anon_sym_unquote] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LPAREN_PIPE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2398), + [4450] = { + [sym_expr] = STATE(4916), + [sym__expr1] = STATE(4777), + [sym__application] = STATE(3420), + [sym__expr2] = STATE(3421), + [sym__atomic_exprs1] = STATE(4778), + [sym_atomic_expr] = STATE(4779), + [sym__atomic_expr_curly] = STATE(4780), + [sym__atomic_expr_no_curly] = STATE(4780), + [sym_tele_arrow] = STATE(4781), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3424), + [aux_sym__application_repeat1] = STATE(4782), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(5296), + [sym_set_n] = ACTIONS(5296), + [sym_name_at] = ACTIONS(5298), + [sym_qualified_name] = ACTIONS(5296), + [anon_sym__] = ACTIONS(5296), + [anon_sym_DOT] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(5302), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5304), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3969), + [anon_sym_forall] = ACTIONS(3971), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(5296), + [anon_sym_Prop] = ACTIONS(5296), + [anon_sym_Set] = ACTIONS(5296), + [anon_sym_quote] = ACTIONS(5296), + [anon_sym_quoteTerm] = ACTIONS(5296), + [anon_sym_unquote] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_LPAREN_PIPE] = ACTIONS(5308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5296), }, - [3857] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), + [4451] = { + [sym_vopen] = STATE(4917), + [sym_declarations] = STATE(4918), + [sym__declarations0] = STATE(4919), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [3858] = { - [sym_semi] = STATE(2882), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3858), - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), + [4452] = { + [sym_anonymous_name] = STATE(4920), + [sym_name] = ACTIONS(5462), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), }, - [3859] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5059), + [4453] = { + [sym__layout_semicolon] = ACTIONS(2764), + [sym__layout_close_brace] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), }, - [3860] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), + [4454] = { + [sym_where_clause] = STATE(4921), + [sym__layout_semicolon] = ACTIONS(2764), + [sym__layout_close_brace] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), }, - [3861] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), + [4455] = { + [sym__expr1] = STATE(3747), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(3748), + [sym__declaration] = STATE(3749), + [sym_function_clause] = STATE(3750), + [aux_sym_source_file_repeat1] = STATE(4455), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(2766), + [sym__layout_close_brace] = ACTIONS(2766), + [sym_literal] = ACTIONS(4019), + [sym_set_n] = ACTIONS(4019), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(4022), + [sym_qualified_name] = ACTIONS(4019), + [anon_sym__] = ACTIONS(4019), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4025), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4028), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(4031), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(4034), + [anon_sym_let] = ACTIONS(4037), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_Prop] = ACTIONS(4019), + [anon_sym_Set] = ACTIONS(4019), + [anon_sym_quote] = ACTIONS(4019), + [anon_sym_quoteTerm] = ACTIONS(4019), + [anon_sym_unquote] = ACTIONS(4019), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LPAREN_PIPE] = ACTIONS(4043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4019), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), }, - [3862] = { - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), - [anon_sym_with] = ACTIONS(3153), + [4456] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), }, - [3863] = { - [sym__application] = STATE(3139), - [sym__expr2] = STATE(1235), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [sym_non_absurd_lambda_clause] = STATE(3142), - [sym_absurd_lambda_clause] = STATE(3142), - [sym_lambda_clause] = STATE(4538), - [sym_lambda_where_clauses] = STATE(3144), - [aux_sym__application_repeat1] = STATE(4539), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(5073), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5075), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - [sym_catchall_pragma] = ACTIONS(5077), + [4457] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), }, - [3864] = { - [ts_builtin_sym_end] = ACTIONS(460), + [4458] = { + [sym__application] = STATE(4922), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), }, - [3865] = { - [sym_lambda_bindings] = STATE(3127), - [sym_untyped_bindings] = STATE(3865), - [sym_typed_bindings] = STATE(3865), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3667), - [anon_sym_DOT_DOT] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3671), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), + [4459] = { + [sym__application] = STATE(4923), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3866] = { - [sym_expr] = STATE(3144), - [sym__expr1] = STATE(2916), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(2917), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(2920), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2904), - [aux_sym__application_repeat1] = STATE(2921), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3409), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3401), - [anon_sym_forall] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [4460] = { + [sym_binding_name] = STATE(4924), + [sym__application] = STATE(4925), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3867] = { - [sym__expr1] = STATE(1035), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1036), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(1935), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(460), + [4461] = { + [sym__layout_semicolon] = ACTIONS(1356), + [sym__layout_close_brace] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_where] = ACTIONS(1356), + [anon_sym_COLON] = ACTIONS(1356), + [anon_sym_module] = ACTIONS(1356), + }, + [4462] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(5464), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5466), + }, + [4463] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(5468), + [sym_comment] = ACTIONS(86), + }, + [4464] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5464), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5470), + }, + [4465] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(4930), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [4466] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5464), + }, + [4467] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5472), + }, + [4468] = { + [sym_expr] = STATE(4928), + [sym__expr1] = STATE(4478), + [sym__application] = STATE(2841), + [sym__expr2] = STATE(2842), + [sym__atomic_exprs1] = STATE(4479), + [sym_atomic_expr] = STATE(4480), + [sym__atomic_expr_curly] = STATE(4481), + [sym__atomic_expr_no_curly] = STATE(4481), + [sym_tele_arrow] = STATE(4482), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2845), + [aux_sym__application_repeat1] = STATE(4483), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(5018), + [sym_set_n] = ACTIONS(5018), + [sym_name_at] = ACTIONS(5020), + [sym_qualified_name] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5026), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3339), + [anon_sym_forall] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_QMARK] = ACTIONS(5018), + [anon_sym_Prop] = ACTIONS(5018), + [anon_sym_Set] = ACTIONS(5018), + [anon_sym_quote] = ACTIONS(5018), + [anon_sym_quoteTerm] = ACTIONS(5018), + [anon_sym_unquote] = ACTIONS(5018), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_LPAREN_PIPE] = ACTIONS(5030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), + }, + [4469] = { + [sym__application] = STATE(4932), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [3868] = { - [sym_expr] = STATE(3876), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(4551), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [3869] = { - [sym_expr] = STATE(3877), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4553), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), - }, - [3870] = { - [sym_expr] = STATE(3878), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(4553), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3871] = { - [ts_builtin_sym_end] = ACTIONS(186), - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [4470] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [anon_sym_SEMI] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), }, - [3872] = { - [sym_expr] = STATE(3876), + [4471] = { + [sym_atomic_expr] = STATE(4936), + [sym__atomic_expr_curly] = STATE(4481), + [sym__atomic_expr_no_curly] = STATE(4481), + [sym_literal] = ACTIONS(5018), + [sym_set_n] = ACTIONS(5018), + [sym_name_at] = ACTIONS(5020), + [sym_qualified_name] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5474), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5476), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(5018), + [anon_sym_Prop] = ACTIONS(5018), + [anon_sym_Set] = ACTIONS(5018), + [anon_sym_quote] = ACTIONS(5018), + [anon_sym_quoteTerm] = ACTIONS(5018), + [anon_sym_unquote] = ACTIONS(5018), + [anon_sym_LPAREN] = ACTIONS(5478), + [anon_sym_LPAREN_PIPE] = ACTIONS(5030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), + }, + [4472] = { + [sym_atomic_expr] = STATE(4936), + [sym__atomic_expr_curly] = STATE(4481), + [sym__atomic_expr_no_curly] = STATE(4481), + [sym_literal] = ACTIONS(5018), + [sym_set_n] = ACTIONS(5018), + [sym_name_at] = ACTIONS(5020), + [sym_qualified_name] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5480), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5482), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(5018), + [anon_sym_Prop] = ACTIONS(5018), + [anon_sym_Set] = ACTIONS(5018), + [anon_sym_quote] = ACTIONS(5018), + [anon_sym_quoteTerm] = ACTIONS(5018), + [anon_sym_unquote] = ACTIONS(5018), + [anon_sym_LPAREN] = ACTIONS(5484), + [anon_sym_LPAREN_PIPE] = ACTIONS(5030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), + }, + [4473] = { + [sym_expr] = STATE(4941), [sym__expr1] = STATE(38), - [sym__application] = STATE(557), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -130041,7 +144132,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(4551), + [anon_sym_RBRACE] = ACTIONS(5486), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -130057,10 +144148,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3873] = { - [sym_expr] = STATE(3877), + [4474] = { + [sym_expr] = STATE(4942), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(185), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -130080,7 +144171,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4553), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5488), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -130095,10 +144186,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [3874] = { - [sym_expr] = STATE(3878), + [4475] = { + [sym_expr] = STATE(4943), [sym__expr1] = STATE(110), - [sym__application] = STATE(559), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -130129,1249 +144220,959 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(5488), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [3875] = { - [ts_builtin_sym_end] = ACTIONS(228), - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [4476] = { + [sym_expr] = STATE(4944), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), - }, - [3876] = { - [anon_sym_RBRACE] = ACTIONS(5081), - [sym_comment] = ACTIONS(86), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [3877] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5083), + [4477] = { + [sym__layout_semicolon] = ACTIONS(1360), + [sym__layout_close_brace] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_where] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [anon_sym_module] = ACTIONS(1360), }, - [3878] = { + [4478] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym__layout_close_brace] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(280), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(5490), + [anon_sym_where] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_module] = ACTIONS(280), }, - [3879] = { + [4479] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(5083), - }, - [3880] = { - [sym_expr] = STATE(4543), - [sym__expr1] = STATE(2916), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(2917), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(2920), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2904), - [aux_sym__application_repeat1] = STATE(2921), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3409), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3401), - [anon_sym_forall] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [3881] = { - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_RPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_with] = ACTIONS(2061), - }, - [3882] = { - [sym__expr1] = STATE(2874), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2875), - [sym__declaration] = STATE(4544), - [sym_function_clause] = STATE(1038), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [3883] = { - [sym_semi] = STATE(3882), - [aux_sym__declarations1_repeat1] = STATE(4545), - [ts_builtin_sym_end] = ACTIONS(2550), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_with] = ACTIONS(2550), + [anon_sym_DASH_GT] = ACTIONS(5490), + [anon_sym_PIPE] = ACTIONS(162), }, - [3884] = { - [sym__expr1] = STATE(2874), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2875), - [sym__declaration] = STATE(2922), - [sym_function_clause] = STATE(1038), - [sym__declarations1] = STATE(4546), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(2552), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [4480] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - [anon_sym_with] = ACTIONS(2552), - }, - [3885] = { - [ts_builtin_sym_end] = ACTIONS(2934), - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), }, - [3886] = { - [sym_expr] = STATE(4547), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [4481] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), }, - [3887] = { - [sym_expr] = STATE(4548), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + [4482] = { + [sym_expr] = STATE(4946), + [sym__expr1] = STATE(4478), + [sym__application] = STATE(2841), + [sym__expr2] = STATE(2842), + [sym__atomic_exprs1] = STATE(4479), + [sym_atomic_expr] = STATE(4480), + [sym__atomic_expr_curly] = STATE(4481), + [sym__atomic_expr_no_curly] = STATE(4481), + [sym_tele_arrow] = STATE(4482), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2845), + [aux_sym__application_repeat1] = STATE(4483), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(5018), + [sym_set_n] = ACTIONS(5018), + [sym_name_at] = ACTIONS(5020), + [sym_qualified_name] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5026), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3339), + [anon_sym_forall] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_QMARK] = ACTIONS(5018), + [anon_sym_Prop] = ACTIONS(5018), + [anon_sym_Set] = ACTIONS(5018), + [anon_sym_quote] = ACTIONS(5018), + [anon_sym_quoteTerm] = ACTIONS(5018), + [anon_sym_unquote] = ACTIONS(5018), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_LPAREN_PIPE] = ACTIONS(5030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), }, - [3888] = { - [sym_expr] = STATE(4549), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [4483] = { + [sym__expr2] = STATE(3775), + [sym_atomic_expr] = STATE(4480), + [sym__atomic_expr_curly] = STATE(4481), + [sym__atomic_expr_no_curly] = STATE(4481), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(5018), + [sym_set_n] = ACTIONS(5018), + [sym_name_at] = ACTIONS(5020), + [sym_qualified_name] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5474), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5476), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3339), + [anon_sym_forall] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_QMARK] = ACTIONS(5018), + [anon_sym_Prop] = ACTIONS(5018), + [anon_sym_Set] = ACTIONS(5018), + [anon_sym_quote] = ACTIONS(5018), + [anon_sym_quoteTerm] = ACTIONS(5018), + [anon_sym_unquote] = ACTIONS(5018), + [anon_sym_LPAREN] = ACTIONS(5478), + [anon_sym_LPAREN_PIPE] = ACTIONS(5030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), }, - [3889] = { - [anon_sym_RBRACE] = ACTIONS(5085), - [sym_comment] = ACTIONS(86), + [4484] = { + [sym_expr] = STATE(4947), + [sym__expr1] = STATE(4805), + [sym__application] = STATE(3436), + [sym__expr2] = STATE(3437), + [sym__atomic_exprs1] = STATE(4806), + [sym_atomic_expr] = STATE(4807), + [sym__atomic_expr_curly] = STATE(4808), + [sym__atomic_expr_no_curly] = STATE(4808), + [sym_tele_arrow] = STATE(4809), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3440), + [aux_sym__application_repeat1] = STATE(4810), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(5332), + [sym_set_n] = ACTIONS(5332), + [sym_name_at] = ACTIONS(5334), + [sym_qualified_name] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_DOT] = ACTIONS(5336), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(5338), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5340), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3987), + [anon_sym_forall] = ACTIONS(3989), + [anon_sym_let] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(5332), + [anon_sym_Prop] = ACTIONS(5332), + [anon_sym_Set] = ACTIONS(5332), + [anon_sym_quote] = ACTIONS(5332), + [anon_sym_quoteTerm] = ACTIONS(5332), + [anon_sym_unquote] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_LPAREN_PIPE] = ACTIONS(5344), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5332), }, - [3890] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5085), + [4485] = { + [sym_vopen] = STATE(4948), + [sym_declarations] = STATE(4949), + [sym__declarations0] = STATE(4950), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), }, - [3891] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [3892] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - }, - [3893] = { - [sym_expr] = STATE(3906), - [sym__expr1] = STATE(2941), - [sym__application] = STATE(503), - [sym__expr2] = STATE(504), - [sym__atomic_exprs1] = STATE(2942), - [sym_atomic_expr] = STATE(1976), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [sym_tele_arrow] = STATE(2943), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2039), - [aux_sym__application_repeat1] = STATE(2944), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(3435), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2474), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), - }, - [3894] = { - [sym_expr] = STATE(2932), - [sym__expr1] = STATE(2941), - [sym__application] = STATE(503), - [sym__expr2] = STATE(504), - [sym__atomic_exprs1] = STATE(2942), - [sym_atomic_expr] = STATE(1976), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [sym_tele_arrow] = STATE(2943), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2039), - [aux_sym__application_repeat1] = STATE(2944), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(3435), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2474), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), - }, - [3895] = { - [sym__expr1] = STATE(1249), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(4555), - [aux_sym__application_repeat1] = STATE(4556), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(5087), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [4486] = { + [sym_anonymous_name] = STATE(4951), + [sym_name] = ACTIONS(5492), + [anon_sym__] = ACTIONS(640), + [sym_comment] = ACTIONS(18), }, - [3896] = { - [sym_with_expressions] = STATE(1256), - [ts_builtin_sym_end] = ACTIONS(646), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(4579), + [4487] = { + [sym__layout_semicolon] = ACTIONS(2764), + [sym__layout_close_brace] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), }, - [3897] = { - [sym_expr] = STATE(2093), - [sym__expr1] = STATE(4559), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4560), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4561), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4555), - [aux_sym__application_repeat1] = STATE(4562), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(5095), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4488] = { + [sym_where_clause] = STATE(4952), + [sym__layout_semicolon] = ACTIONS(2764), + [sym__layout_close_brace] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), }, - [3898] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [4489] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2949), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(3898), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(680), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(3054), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(3057), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - }, - [3899] = { - [ts_builtin_sym_end] = ACTIONS(3066), - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - }, - [3900] = { - [sym_expr] = STATE(4563), - [sym__expr1] = STATE(2941), - [sym__application] = STATE(503), - [sym__expr2] = STATE(504), - [sym__atomic_exprs1] = STATE(2942), - [sym_atomic_expr] = STATE(1976), - [sym__atomic_expr_curly] = STATE(1977), - [sym__atomic_expr_no_curly] = STATE(1977), - [sym_tele_arrow] = STATE(2943), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2039), - [aux_sym__application_repeat1] = STATE(2944), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2466), - [sym_set_n] = ACTIONS(2466), - [sym_name_at] = ACTIONS(3435), - [sym_qualified_name] = ACTIONS(2466), - [anon_sym__] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2474), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_forall] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_QMARK] = ACTIONS(2466), - [anon_sym_Prop] = ACTIONS(2466), - [anon_sym_Set] = ACTIONS(2466), - [anon_sym_quote] = ACTIONS(2466), - [anon_sym_quoteTerm] = ACTIONS(2466), - [anon_sym_unquote] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LPAREN_PIPE] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), - }, - [3901] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [3902] = { - [sym_semi] = STATE(2956), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3902), - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(3768), + [sym__declaration] = STATE(3769), + [sym_function_clause] = STATE(3770), + [aux_sym_source_file_repeat1] = STATE(4489), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(2766), + [sym__layout_close_brace] = ACTIONS(2766), + [sym_literal] = ACTIONS(4019), + [sym_set_n] = ACTIONS(4019), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(4022), + [sym_qualified_name] = ACTIONS(4019), + [anon_sym__] = ACTIONS(4019), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4025), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4028), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(4031), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(4034), + [anon_sym_let] = ACTIONS(4037), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_Prop] = ACTIONS(4019), + [anon_sym_Set] = ACTIONS(4019), + [anon_sym_quote] = ACTIONS(4019), + [anon_sym_quoteTerm] = ACTIONS(4019), + [anon_sym_unquote] = ACTIONS(4019), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LPAREN_PIPE] = ACTIONS(4043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4019), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), }, - [3903] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5085), - }, - [3904] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [3905] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - }, - [3906] = { - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), + [4490] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), }, - [3907] = { - [sym__application] = STATE(3180), - [sym__expr2] = STATE(1251), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [sym_non_absurd_lambda_clause] = STATE(3183), - [sym_absurd_lambda_clause] = STATE(3183), - [sym_lambda_clause] = STATE(4567), - [sym_lambda_where_clauses] = STATE(3185), - [aux_sym__application_repeat1] = STATE(4568), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(5099), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5101), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - [sym_catchall_pragma] = ACTIONS(5103), + [4491] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), }, - [3908] = { - [ts_builtin_sym_end] = ACTIONS(460), + [4492] = { + [sym__application] = STATE(4953), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5105), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), }, - [3909] = { - [sym_lambda_bindings] = STATE(3168), - [sym_untyped_bindings] = STATE(3909), - [sym_typed_bindings] = STATE(3909), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3717), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3721), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3723), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [4493] = { + [sym__application] = STATE(4954), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3910] = { - [sym_expr] = STATE(3185), - [sym__expr1] = STATE(2982), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2983), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2984), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2978), - [aux_sym__application_repeat1] = STATE(2985), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3471), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3465), - [anon_sym_forall] = ACTIONS(3467), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4494] = { + [sym_binding_name] = STATE(4955), + [sym__application] = STATE(4956), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [3911] = { - [sym__expr1] = STATE(1056), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1057), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(1987), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(460), + [4495] = { + [sym__layout_semicolon] = ACTIONS(1356), + [sym__layout_close_brace] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_where] = ACTIONS(1356), + [anon_sym_module] = ACTIONS(1356), + }, + [4496] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(5494), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5496), + }, + [4497] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(5498), + [sym_comment] = ACTIONS(86), + }, + [4498] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5494), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5500), + }, + [4499] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(4961), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [4500] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5494), + }, + [4501] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5502), + }, + [4502] = { + [sym_expr] = STATE(4959), + [sym__expr1] = STATE(4505), + [sym__application] = STATE(2860), + [sym__expr2] = STATE(2861), + [sym__atomic_exprs1] = STATE(4506), + [sym_atomic_expr] = STATE(2863), + [sym__atomic_expr_curly] = STATE(2864), + [sym__atomic_expr_no_curly] = STATE(2864), + [sym_tele_arrow] = STATE(4507), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2866), + [aux_sym__application_repeat1] = STATE(2867), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3349), + [sym_set_n] = ACTIONS(3349), + [sym_name_at] = ACTIONS(3351), + [sym_qualified_name] = ACTIONS(3349), + [anon_sym__] = ACTIONS(3349), + [anon_sym_DOT] = ACTIONS(3353), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3357), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3359), + [anon_sym_forall] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_QMARK] = ACTIONS(3349), + [anon_sym_Prop] = ACTIONS(3349), + [anon_sym_Set] = ACTIONS(3349), + [anon_sym_quote] = ACTIONS(3349), + [anon_sym_quoteTerm] = ACTIONS(3349), + [anon_sym_unquote] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_LPAREN_PIPE] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), + }, + [4503] = { + [sym__application] = STATE(4963), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(5044), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), }, - [3912] = { - [sym_expr] = STATE(3952), - [sym__expr1] = STATE(2982), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2983), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2984), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2978), - [aux_sym__application_repeat1] = STATE(2985), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3471), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3465), - [anon_sym_forall] = ACTIONS(3467), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4504] = { + [sym__layout_semicolon] = ACTIONS(1360), + [sym__layout_close_brace] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_where] = ACTIONS(1360), + [anon_sym_module] = ACTIONS(1360), }, - [3913] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2949), - [sym__declaration] = STATE(4570), - [sym_function_clause] = STATE(1059), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [4505] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym__layout_close_brace] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(280), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(5504), + [anon_sym_where] = ACTIONS(280), + [anon_sym_module] = ACTIONS(280), + }, + [4506] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(5504), + [anon_sym_PIPE] = ACTIONS(162), + }, + [4507] = { + [sym_expr] = STATE(4965), + [sym__expr1] = STATE(4505), + [sym__application] = STATE(2860), + [sym__expr2] = STATE(2861), + [sym__atomic_exprs1] = STATE(4506), + [sym_atomic_expr] = STATE(2863), + [sym__atomic_expr_curly] = STATE(2864), + [sym__atomic_expr_no_curly] = STATE(2864), + [sym_tele_arrow] = STATE(4507), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2866), + [aux_sym__application_repeat1] = STATE(2867), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3349), + [sym_set_n] = ACTIONS(3349), + [sym_name_at] = ACTIONS(3351), + [sym_qualified_name] = ACTIONS(3349), + [anon_sym__] = ACTIONS(3349), + [anon_sym_DOT] = ACTIONS(3353), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3357), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3359), + [anon_sym_forall] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_QMARK] = ACTIONS(3349), + [anon_sym_Prop] = ACTIONS(3349), + [anon_sym_Set] = ACTIONS(3349), + [anon_sym_quote] = ACTIONS(3349), + [anon_sym_quoteTerm] = ACTIONS(3349), + [anon_sym_unquote] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_LPAREN_PIPE] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), + }, + [4508] = { + [sym_vopen] = STATE(4966), + [sym_declarations] = STATE(4967), + [sym__declarations0] = STATE(4968), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [4509] = { + [sym_anonymous_name] = STATE(4969), + [sym_name] = ACTIONS(5506), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [3914] = { - [sym_semi] = STATE(3913), - [aux_sym__declarations1_repeat1] = STATE(4571), - [ts_builtin_sym_end] = ACTIONS(2550), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), + [4510] = { + [sym__layout_semicolon] = ACTIONS(2764), + [sym__layout_close_brace] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), }, - [3915] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [4511] = { + [sym_where_clause] = STATE(4970), + [sym__layout_semicolon] = ACTIONS(2764), + [sym__layout_close_brace] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + }, + [4512] = { + [sym__expr1] = STATE(1498), + [sym__application] = STATE(1499), + [sym__expr2] = STATE(1500), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2949), - [sym__declaration] = STATE(2986), - [sym_function_clause] = STATE(1059), - [sym__declarations1] = STATE(4572), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(2552), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym_atomic_expr] = STATE(1501), + [sym__atomic_expr_curly] = STATE(1502), + [sym__atomic_expr_no_curly] = STATE(1502), + [sym_lhs] = STATE(3794), + [sym__declaration] = STATE(3795), + [sym_function_clause] = STATE(3796), + [aux_sym_source_file_repeat1] = STATE(4512), + [aux_sym__expr1_repeat1] = STATE(1507), + [aux_sym__application_repeat1] = STATE(1508), + [sym__layout_semicolon] = ACTIONS(2766), + [sym__layout_close_brace] = ACTIONS(2766), + [sym_literal] = ACTIONS(4019), + [sym_set_n] = ACTIONS(4019), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(4022), + [sym_qualified_name] = ACTIONS(4019), + [anon_sym__] = ACTIONS(4019), + [anon_sym_DOT] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4025), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4028), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(4031), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(4034), + [anon_sym_let] = ACTIONS(4037), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_Prop] = ACTIONS(4019), + [anon_sym_Set] = ACTIONS(4019), + [anon_sym_quote] = ACTIONS(4019), + [anon_sym_quoteTerm] = ACTIONS(4019), + [anon_sym_unquote] = ACTIONS(4019), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LPAREN_PIPE] = ACTIONS(4043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4019), + [anon_sym_module] = ACTIONS(644), + }, + [4513] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym__layout_close_brace] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(1444), + [anon_sym_module] = ACTIONS(1444), + }, + [4514] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [3916] = { - [ts_builtin_sym_end] = ACTIONS(2934), - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), + [4515] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [3917] = { - [sym_expr] = STATE(4573), + [4516] = { + [anon_sym_RBRACE] = ACTIONS(5508), + [sym_comment] = ACTIONS(86), + }, + [4517] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5510), + [sym_comment] = ACTIONS(86), + }, + [4518] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5510), + }, + [4519] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(5510), + }, + [4520] = { + [sym__layout_semicolon] = ACTIONS(5216), + [sym__layout_close_brace] = ACTIONS(5216), + [anon_sym_SEMI] = ACTIONS(5216), + [sym_comment] = ACTIONS(86), + }, + [4521] = { + [sym__layout_semicolon] = ACTIONS(5218), + [sym__layout_close_brace] = ACTIONS(5218), + [anon_sym_SEMI] = ACTIONS(5218), + [sym_comment] = ACTIONS(86), + }, + [4522] = { + [ts_builtin_sym_end] = ACTIONS(2588), + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), + }, + [4523] = { + [sym_expr] = STATE(4973), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -131407,8 +145208,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3918] = { - [sym_expr] = STATE(4574), + [4524] = { + [sym_expr] = STATE(4974), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -131444,8 +145245,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3919] = { - [sym_expr] = STATE(4575), + [4525] = { + [sym_expr] = STATE(4975), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -131481,1807 +145282,271 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3920] = { - [anon_sym_RBRACE] = ACTIONS(5107), - [sym_comment] = ACTIONS(86), - }, - [3921] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5107), - [sym_comment] = ACTIONS(86), - }, - [3922] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [3923] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - }, - [3924] = { - [sym_expr] = STATE(3933), - [sym__expr1] = STATE(3003), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(3004), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(3005), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2046), - [aux_sym__application_repeat1] = STATE(2047), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(2546), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), - }, - [3925] = { - [sym_expr] = STATE(2996), - [sym__expr1] = STATE(3003), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(3004), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(3005), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2046), - [aux_sym__application_repeat1] = STATE(2047), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(2546), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), - }, - [3926] = { - [sym_expr] = STATE(1267), - [sym__expr1] = STATE(4582), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4583), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4584), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4585), - [aux_sym__application_repeat1] = STATE(4586), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(5109), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(5111), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [3927] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3009), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(3927), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(680), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(3054), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(3057), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_module] = ACTIONS(680), - }, - [3928] = { - [ts_builtin_sym_end] = ACTIONS(3066), - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - }, - [3929] = { - [sym_expr] = STATE(4587), - [sym__expr1] = STATE(3003), - [sym__application] = STATE(522), - [sym__expr2] = STATE(523), - [sym__atomic_exprs1] = STATE(3004), - [sym_atomic_expr] = STATE(525), - [sym__atomic_expr_curly] = STATE(526), - [sym__atomic_expr_no_curly] = STATE(526), - [sym_tele_arrow] = STATE(3005), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2046), - [aux_sym__application_repeat1] = STATE(2047), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(650), - [sym_set_n] = ACTIONS(650), - [sym_name_at] = ACTIONS(2546), - [sym_qualified_name] = ACTIONS(650), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_LBRACE_LBRACE] = ACTIONS(658), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_forall] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_Prop] = ACTIONS(650), - [anon_sym_Set] = ACTIONS(650), - [anon_sym_quote] = ACTIONS(650), - [anon_sym_quoteTerm] = ACTIONS(650), - [anon_sym_unquote] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LPAREN_PIPE] = ACTIONS(668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(650), - }, - [3930] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [3931] = { - [sym_semi] = STATE(3016), - [aux_sym_lambda_where_clauses_repeat1] = STATE(3931), - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [3932] = { + [4526] = { + [anon_sym_RBRACE] = ACTIONS(5512), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5107), - }, - [3933] = { - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), - }, - [3934] = { - [sym__application] = STATE(3212), - [sym__expr2] = STATE(1270), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [sym_non_absurd_lambda_clause] = STATE(3215), - [sym_absurd_lambda_clause] = STATE(3215), - [sym_lambda_clause] = STATE(4591), - [sym_lambda_where_clauses] = STATE(3217), - [aux_sym__application_repeat1] = STATE(4592), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(5119), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5121), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), - [sym_catchall_pragma] = ACTIONS(5123), - }, - [3935] = { - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5125), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [3936] = { - [sym_lambda_bindings] = STATE(3200), - [sym_untyped_bindings] = STATE(3936), - [sym_typed_bindings] = STATE(3936), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3759), - [anon_sym_DOT_DOT] = ACTIONS(3759), - [anon_sym_LBRACE] = ACTIONS(3761), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3763), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3765), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - }, - [3937] = { - [sym_expr] = STATE(3217), - [sym__expr1] = STATE(3027), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3028), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3029), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3030), - [aux_sym__application_repeat1] = STATE(3031), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3497), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3499), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3501), - [anon_sym_forall] = ACTIONS(3503), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [3938] = { - [sym__expr1] = STATE(1056), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1083), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(2027), - [aux_sym__expr1_repeat1] = STATE(102), - [aux_sym__application_repeat1] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [3939] = { - [sym_expr] = STATE(3227), - [sym__expr1] = STATE(3027), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3028), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3029), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3030), - [aux_sym__application_repeat1] = STATE(3031), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3497), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3499), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3501), - [anon_sym_forall] = ACTIONS(3503), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [3940] = { - [sym_atomic_expr] = STATE(3228), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(4625), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - }, - [3941] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(2245), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(4625), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3501), - [anon_sym_forall] = ACTIONS(3503), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - }, - [3942] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3009), - [sym__declaration] = STATE(4594), - [sym_function_clause] = STATE(1085), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [3943] = { - [sym_semi] = STATE(3942), - [aux_sym__declarations1_repeat1] = STATE(4595), - [ts_builtin_sym_end] = ACTIONS(2550), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - }, - [3944] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3009), - [sym__declaration] = STATE(3032), - [sym_function_clause] = STATE(1085), - [sym__declarations1] = STATE(4596), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(2552), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_module] = ACTIONS(2552), }, - [3945] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [3946] = { + [4527] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5512), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(162), - }, - [3947] = { - [sym_expr] = STATE(3069), - [sym__expr1] = STATE(3945), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(3946), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(3947), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2466), - [aux_sym__application_repeat1] = STATE(2474), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2966), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [3948] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - }, - [3949] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - }, - [3950] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [3951] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - }, - [3952] = { - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_RPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), - }, - [3953] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - }, - [3954] = { - [sym_semi] = STATE(3070), - [aux_sym__declarations1_repeat1] = STATE(3954), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - }, - [3955] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_RPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_COLON] = ACTIONS(3524), - }, - [3956] = { - [sym_atomic_expr] = STATE(3092), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(4641), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(3592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3594), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(3596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - }, - [3957] = { - [sym_atomic_expr] = STATE(3092), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(4641), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3600), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), }, - [3958] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [4528] = { + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_RPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + [anon_sym_with] = ACTIONS(2965), }, - [3959] = { + [4529] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5133), - [anon_sym_PIPE] = ACTIONS(162), - }, - [3960] = { - [sym_expr] = STATE(3102), - [sym__expr1] = STATE(3958), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(3959), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(3960), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3269), - [aux_sym__application_repeat1] = STATE(3961), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(4641), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - }, - [3961] = { - [sym__expr2] = STATE(2399), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(4641), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(3592), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3594), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(3596), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - }, - [3962] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - }, - [3963] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(5512), }, - [3964] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [3965] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - }, - [3966] = { - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), - }, - [3967] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - }, - [3968] = { - [sym_semi] = STATE(3103), - [aux_sym__declarations1_repeat1] = STATE(3968), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - }, - [3969] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_COLON] = ACTIONS(3524), - }, - [3970] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [3971] = { - [sym_lambda_bindings] = STATE(3200), - [sym_untyped_bindings] = STATE(3971), - [sym_typed_bindings] = STATE(3971), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3759), - [anon_sym_DOT_DOT] = ACTIONS(3759), - [anon_sym_LBRACE] = ACTIONS(3761), - [anon_sym_RBRACE] = ACTIONS(464), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3763), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3765), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - }, - [3972] = { - [sym_expr] = STATE(3217), - [sym__expr1] = STATE(3111), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3112), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3113), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3114), - [aux_sym__application_repeat1] = STATE(3115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3614), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [4530] = { + [ts_builtin_sym_end] = ACTIONS(2588), + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), }, - [3973] = { - [sym_where_clause] = STATE(2025), - [sym_rhs] = STATE(3225), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [4531] = { + [sym_expr] = STATE(4977), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2668), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(3767), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(2668), - [anon_sym_module] = ACTIONS(3769), - }, - [3974] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3973), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(4600), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [3975] = { - [sym_expr] = STATE(3227), - [sym__expr1] = STATE(3111), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3112), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3113), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3114), - [aux_sym__application_repeat1] = STATE(3115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3614), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [3976] = { - [sym_atomic_expr] = STATE(3228), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(4657), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3977] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(2245), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(4657), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), + [4532] = { + [sym_expr] = STATE(4978), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3978] = { - [sym_semi] = STATE(3119), - [aux_sym__declarations1_repeat1] = STATE(3978), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_rewrite] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), + [4533] = { + [sym_expr] = STATE(4979), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3979] = { - [anon_sym_RBRACE] = ACTIONS(5137), + [4534] = { + [anon_sym_RBRACE] = ACTIONS(5514), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5139), }, - [3980] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5137), + [4535] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5514), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5141), }, - [3981] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5137), + [4536] = { + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_RPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), }, - [3982] = { + [4537] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5143), + [anon_sym_RPAREN] = ACTIONS(5514), }, - [3983] = { - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_with] = ACTIONS(1891), + [4538] = { + [ts_builtin_sym_end] = ACTIONS(2588), + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), }, - [3984] = { - [sym_expr] = STATE(4605), + [4539] = { + [sym_expr] = STATE(4981), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -133317,41 +145582,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3985] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_RPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_COLON] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_with] = ACTIONS(1905), - }, - [3986] = { - [sym_expr] = STATE(4606), + [4540] = { + [sym_expr] = STATE(4982), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -133387,440 +145619,226 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [3987] = { - [ts_builtin_sym_end] = ACTIONS(186), - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), - }, - [3988] = { - [ts_builtin_sym_end] = ACTIONS(228), - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [4541] = { + [sym_expr] = STATE(4983), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), - }, - [3989] = { - [anon_sym_RBRACE] = ACTIONS(5145), - [sym_comment] = ACTIONS(86), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [3990] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5147), + [4542] = { + [anon_sym_RBRACE] = ACTIONS(5516), [sym_comment] = ACTIONS(86), }, - [3991] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4671), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [3992] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4671), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4547), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4549), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [3993] = { - [ts_builtin_sym_end] = ACTIONS(1983), - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_in] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_with] = ACTIONS(1983), - }, - [3994] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5149), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), - }, - [3995] = { + [4543] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5516), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(162), - }, - [3996] = { - [sym_expr] = STATE(3881), - [sym__expr1] = STATE(3994), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3995), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3996), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2460), - [aux_sym__application_repeat1] = STATE(3997), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4671), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [3997] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4671), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), }, - [3998] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5147), + [4544] = { + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_RPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), }, - [3999] = { + [4545] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(5147), - }, - [4000] = { - [sym_expr] = STATE(4610), - [sym__expr1] = STATE(3994), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3995), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3996), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2460), - [aux_sym__application_repeat1] = STATE(3997), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4671), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [anon_sym_RPAREN] = ACTIONS(5516), }, - [4001] = { - [ts_builtin_sym_end] = ACTIONS(1997), - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_RPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_with] = ACTIONS(1997), + [4546] = { + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + [anon_sym_rewrite] = ACTIONS(4512), + [anon_sym_with] = ACTIONS(4512), }, - [4002] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(3651), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5153), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), + [4547] = { + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), }, - [4003] = { - [sym__application] = STATE(3139), - [sym__expr2] = STATE(1235), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [sym_non_absurd_lambda_clause] = STATE(3142), - [sym_absurd_lambda_clause] = STATE(3142), - [sym_lambda_clause] = STATE(4612), - [aux_sym__application_repeat1] = STATE(3145), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(3651), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3657), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - [sym_catchall_pragma] = ACTIONS(3663), + [4548] = { + [sym_expr] = STATE(4985), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4004] = { - [sym_semi] = STATE(4003), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4613), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_with] = ACTIONS(2001), + [4549] = { + [sym_expr] = STATE(4986), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4005] = { - [sym_expr] = STATE(4614), + [4550] = { + [sym_expr] = STATE(4987), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -133856,139 +145874,247 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4006] = { - [anon_sym_RBRACE] = ACTIONS(4659), + [4551] = { + [anon_sym_RBRACE] = ACTIONS(5518), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4661), }, - [4007] = { - [sym_expr] = STATE(4543), - [sym__expr1] = STATE(3152), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3153), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3154), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1238), - [aux_sym__application_repeat1] = STATE(3155), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3675), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1546), - [anon_sym_forall] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [4552] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5518), + [sym_comment] = ACTIONS(86), }, - [4008] = { - [sym_semi] = STATE(4615), - [aux_sym__declarations1_repeat1] = STATE(4616), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_with] = ACTIONS(1376), + [4553] = { + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), }, - [4009] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5155), + [4554] = { + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + [anon_sym_with] = ACTIONS(2965), }, - [4010] = { - [anon_sym_RBRACE] = ACTIONS(5157), + [4555] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5159), + [anon_sym_RPAREN] = ACTIONS(5518), }, - [4011] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5157), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5161), + [4556] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE_RBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), }, - [4012] = { + [4557] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE_RBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [4558] = { + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + [anon_sym_with] = ACTIONS(3017), + }, + [4559] = { + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + [anon_sym_with] = ACTIONS(2262), + }, + [4560] = { + [sym_vclose] = STATE(4989), + [sym__layout_close_brace] = ACTIONS(5090), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5157), }, - [4013] = { + [4561] = { + [sym_vopen] = STATE(3902), + [sym_declarations] = STATE(3903), + [sym__declarations0] = STATE(4990), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5163), }, - [4014] = { - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), + [4562] = { + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), }, - [4015] = { - [sym_expr] = STATE(4622), + [4563] = { + [sym_expr] = STATE(4991), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -134024,40 +146150,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4016] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_RPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_COLON] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - }, - [4017] = { - [sym_expr] = STATE(4623), + [4564] = { + [sym_expr] = STATE(4992), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -134093,286 +146187,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4018] = { - [ts_builtin_sym_end] = ACTIONS(186), - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - }, - [4019] = { - [ts_builtin_sym_end] = ACTIONS(228), - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - }, - [4020] = { - [anon_sym_RBRACE] = ACTIONS(5165), - [sym_comment] = ACTIONS(86), - }, - [4021] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5167), - [sym_comment] = ACTIONS(86), - }, - [4022] = { - [ts_builtin_sym_end] = ACTIONS(1983), - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_in] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - }, - [4023] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5167), - }, - [4024] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(5167), - }, - [4025] = { - [sym_expr] = STATE(4626), - [sym__expr1] = STATE(3945), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(3946), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(3947), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2466), - [aux_sym__application_repeat1] = STATE(2474), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2966), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4026] = { - [ts_builtin_sym_end] = ACTIONS(1997), - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_RPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - }, - [4027] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(3701), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3701), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5169), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - }, - [4028] = { - [sym__application] = STATE(3180), - [sym__expr2] = STATE(1251), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [sym_non_absurd_lambda_clause] = STATE(3183), - [sym_absurd_lambda_clause] = STATE(3183), - [sym_lambda_clause] = STATE(4628), - [aux_sym__application_repeat1] = STATE(3186), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(3701), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(3701), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3707), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - [sym_catchall_pragma] = ACTIONS(3713), - }, - [4029] = { - [sym_semi] = STATE(4028), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4629), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - }, - [4030] = { - [sym_expr] = STATE(4630), + [4565] = { + [sym_expr] = STATE(4993), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -134408,100 +146224,149 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4031] = { - [anon_sym_RBRACE] = ACTIONS(4685), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4687), - }, - [4032] = { - [sym_semi] = STATE(4631), - [aux_sym__declarations1_repeat1] = STATE(4632), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - }, - [4033] = { + [4566] = { + [anon_sym_RBRACE] = ACTIONS(5520), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5171), }, - [4034] = { - [anon_sym_RBRACE] = ACTIONS(5173), + [4567] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5520), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5175), }, - [4035] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5173), + [4568] = { + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + }, + [4569] = { + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + }, + [4570] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5177), + [anon_sym_RPAREN] = ACTIONS(5520), }, - [4036] = { + [4571] = { + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + }, + [4572] = { + [sym_vclose] = STATE(4995), + [sym__layout_close_brace] = ACTIONS(5106), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5173), }, - [4037] = { + [4573] = { + [sym_vopen] = STATE(3918), + [sym_declarations] = STATE(3919), + [sym__declarations0] = STATE(4996), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5179), }, - [4038] = { - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), + [4574] = { + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), }, - [4039] = { - [sym_expr] = STATE(4638), + [4575] = { + [sym_expr] = STATE(4997), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -134537,39 +146402,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4040] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_RPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - }, - [4041] = { - [sym_expr] = STATE(4639), + [4576] = { + [sym_expr] = STATE(4998), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -134605,281 +146439,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4042] = { - [ts_builtin_sym_end] = ACTIONS(186), - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - }, - [4043] = { - [ts_builtin_sym_end] = ACTIONS(228), - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - }, - [4044] = { - [anon_sym_RBRACE] = ACTIONS(5181), - [sym_comment] = ACTIONS(86), - }, - [4045] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5183), - [sym_comment] = ACTIONS(86), - }, - [4046] = { - [ts_builtin_sym_end] = ACTIONS(1983), - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_in] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - }, - [4047] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5183), - }, - [4048] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(5183), - }, - [4049] = { - [sym_expr] = STATE(4642), - [sym__expr1] = STATE(3111), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3112), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3113), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3114), - [aux_sym__application_repeat1] = STATE(3115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3614), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4050] = { - [ts_builtin_sym_end] = ACTIONS(1997), - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_RPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - }, - [4051] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(3743), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5185), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), - }, - [4052] = { - [sym__application] = STATE(3212), - [sym__expr2] = STATE(1270), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [sym_non_absurd_lambda_clause] = STATE(3215), - [sym_absurd_lambda_clause] = STATE(3215), - [sym_lambda_clause] = STATE(4644), - [aux_sym__application_repeat1] = STATE(3218), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(3743), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3749), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), - [sym_catchall_pragma] = ACTIONS(3755), - }, - [4053] = { - [sym_semi] = STATE(4052), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4645), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - }, - [4054] = { - [sym_expr] = STATE(4646), + [4577] = { + [sym_expr] = STATE(4999), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -134915,1188 +146476,792 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4055] = { - [anon_sym_RBRACE] = ACTIONS(4703), + [4578] = { + [anon_sym_RBRACE] = ACTIONS(5522), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4705), - }, - [4056] = { - [sym_semi] = STATE(4647), - [aux_sym__declarations1_repeat1] = STATE(4648), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), }, - [4057] = { + [4579] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5522), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5187), }, - [4058] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), + [4580] = { + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), }, - [4059] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), + [4581] = { + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), }, - [4060] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4725), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4582] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5522), }, - [4061] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4725), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(3552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3554), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3556), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4583] = { + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), }, - [4062] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5189), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [4584] = { + [sym_vclose] = STATE(5001), + [sym__layout_close_brace] = ACTIONS(5118), + [sym_comment] = ACTIONS(86), }, - [4063] = { + [4585] = { + [sym_vopen] = STATE(3934), + [sym_declarations] = STATE(3935), + [sym__declarations0] = STATE(5002), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5191), - [anon_sym_PIPE] = ACTIONS(162), }, - [4064] = { - [sym_expr] = STATE(3069), - [sym__expr1] = STATE(4062), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4063), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4064), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3594), - [aux_sym__application_repeat1] = STATE(4065), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4725), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4727), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4586] = { + [anon_sym_RBRACE] = ACTIONS(5524), + [sym_comment] = ACTIONS(86), }, - [4065] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4725), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4587] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5524), + [sym_comment] = ACTIONS(86), }, - [4066] = { - [sym_semi] = STATE(3246), - [aux_sym__declarations1_repeat1] = STATE(4066), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), + [4588] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5524), }, - [4067] = { - [anon_sym_SEMI] = ACTIONS(4629), - [anon_sym_DOT] = ACTIONS(4631), - [anon_sym_DOT_DOT] = ACTIONS(4629), - [anon_sym_LBRACE] = ACTIONS(4631), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4629), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4629), - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(4629), - [anon_sym_EQ] = ACTIONS(4629), - [anon_sym_LPAREN] = ACTIONS(4629), - [anon_sym_COLON] = ACTIONS(4629), + [4589] = { + [sym__layout_semicolon] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(3407), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_RBRACE] = ACTIONS(3409), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3409), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3409), + [anon_sym_EQ] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), }, - [4068] = { + [4590] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [4591] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [4592] = { + [sym__application] = STATE(5004), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5193), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [4069] = { - [sym_lambda_bindings] = STATE(3307), - [sym_untyped_bindings] = STATE(4069), - [sym_typed_bindings] = STATE(4069), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_DOT_DOT] = ACTIONS(3895), - [anon_sym_LBRACE] = ACTIONS(3897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3899), - [anon_sym_RBRACE_RBRACE] = ACTIONS(464), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3901), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), - }, - [4070] = { - [sym_expr] = STATE(3324), - [sym__expr1] = STATE(4110), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(4111), - [sym_atomic_expr] = STATE(3339), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_tele_arrow] = STATE(4112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3263), - [aux_sym__application_repeat1] = STATE(4113), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(4751), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(4753), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3911), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), }, - [4071] = { - [sym_rewrite_equations] = STATE(4653), - [sym_with_expressions] = STATE(3345), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [anon_sym_RBRACE_RBRACE] = ACTIONS(152), + [4593] = { + [sym__application] = STATE(5005), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(5195), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [4072] = { - [sym_where_clause] = STATE(3349), - [sym_rhs] = STATE(3350), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE_RBRACE] = ACTIONS(170), + [4594] = { + [sym_binding_name] = STATE(5006), + [sym__application] = STATE(5007), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5197), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(3921), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_module] = ACTIONS(3923), - [anon_sym_with] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [4073] = { - [sym__expr1] = STATE(4071), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4072), - [sym__declaration] = STATE(2373), - [sym_function_clause] = STATE(2374), - [aux_sym_source_file_repeat1] = STATE(4655), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [4595] = { + [sym__layout_semicolon] = ACTIONS(1356), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), }, - [4074] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [4596] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(5526), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5528), }, - [4075] = { - [sym_lambda_bindings] = STATE(3357), - [sym_untyped_bindings] = STATE(4075), - [sym_typed_bindings] = STATE(4075), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_DOT_DOT] = ACTIONS(3955), - [anon_sym_LBRACE] = ACTIONS(3957), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3959), - [anon_sym_RBRACE_RBRACE] = ACTIONS(464), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3961), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [4597] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(5530), + [sym_comment] = ACTIONS(86), }, - [4076] = { - [sym_expr] = STATE(3374), - [sym__expr1] = STATE(3958), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(3959), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(3960), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3269), - [aux_sym__application_repeat1] = STATE(3961), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(4641), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [4598] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5526), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5532), }, - [4077] = { - [sym_where_clause] = STATE(3382), - [sym_rhs] = STATE(3383), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE_RBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3582), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(3963), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3965), + [4599] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(5012), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), }, - [4078] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4077), - [sym__declaration] = STATE(2393), - [sym_function_clause] = STATE(2394), - [aux_sym_source_file_repeat1] = STATE(4657), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [4600] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5526), }, - [4079] = { + [4601] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5534), + }, + [4602] = { + [sym_expr] = STATE(5010), + [sym__expr1] = STATE(3120), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(3123), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(3126), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3127), + [aux_sym__application_repeat1] = STATE(3128), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3639), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3647), + [anon_sym_forall] = ACTIONS(3649), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + }, + [4603] = { + [sym__application] = STATE(5014), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5201), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(5134), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), }, - [4080] = { - [sym_lambda_bindings] = STATE(3390), - [sym_untyped_bindings] = STATE(4080), - [sym_typed_bindings] = STATE(4080), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3997), - [anon_sym_DOT_DOT] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3999), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4001), - [anon_sym_RBRACE_RBRACE] = ACTIONS(464), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(4003), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [4604] = { + [sym__layout_semicolon] = ACTIONS(1360), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), }, - [4081] = { - [sym_expr] = STATE(3407), - [sym__expr1] = STATE(3276), - [sym__application] = STATE(1446), - [sym__expr2] = STATE(1447), - [sym__atomic_exprs1] = STATE(3277), - [sym_atomic_expr] = STATE(1449), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_tele_arrow] = STATE(3278), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3279), - [aux_sym__application_repeat1] = STATE(3280), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(3819), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1788), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), + [4605] = { + [sym_vopen] = STATE(5015), + [sym_declarations] = STATE(5016), + [sym__declarations0] = STATE(5017), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [4082] = { - [sym_where_clause] = STATE(3415), - [sym_rhs] = STATE(3416), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [anon_sym_RBRACE_RBRACE] = ACTIONS(170), + [4606] = { + [sym_anonymous_name] = STATE(5018), + [sym_name] = ACTIONS(5536), + [anon_sym__] = ACTIONS(640), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(2808), - [anon_sym_module] = ACTIONS(4007), }, - [4083] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), + [4607] = { + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + }, + [4608] = { + [sym_where_clause] = STATE(5019), + [sym__layout_semicolon] = ACTIONS(2764), + [sym_literal] = ACTIONS(642), + [sym_set_n] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [sym_name_at] = ACTIONS(642), + [sym_qualified_name] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_LBRACE_LBRACE] = ACTIONS(642), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_BSLASH] = ACTIONS(642), + [anon_sym_where] = ACTIONS(642), + [anon_sym_forall] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(642), + [anon_sym_Prop] = ACTIONS(642), + [anon_sym_Set] = ACTIONS(642), + [anon_sym_quote] = ACTIONS(642), + [anon_sym_quoteTerm] = ACTIONS(642), + [anon_sym_unquote] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LPAREN_PIPE] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(642), + [anon_sym_module] = ACTIONS(642), + }, + [4609] = { + [sym__expr1] = STATE(733), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4082), - [sym__declaration] = STATE(2419), - [sym_function_clause] = STATE(2420), - [aux_sym_source_file_repeat1] = STATE(4659), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE_RBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3969), + [sym__declaration] = STATE(3970), + [sym_function_clause] = STATE(3971), + [aux_sym_source_file_repeat1] = STATE(4609), + [aux_sym__expr1_repeat1] = STATE(742), + [aux_sym__application_repeat1] = STATE(743), + [sym__layout_semicolon] = ACTIONS(2766), + [sym_literal] = ACTIONS(2768), + [sym_set_n] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(2771), + [sym_qualified_name] = ACTIONS(2768), + [anon_sym__] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2777), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(2780), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(2783), + [anon_sym_let] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_Prop] = ACTIONS(2768), + [anon_sym_Set] = ACTIONS(2768), + [anon_sym_quote] = ACTIONS(2768), + [anon_sym_quoteTerm] = ACTIONS(2768), + [anon_sym_unquote] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LPAREN_PIPE] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(644), }, - [4084] = { - [sym_expr] = STATE(3418), - [sym__expr1] = STATE(3276), - [sym__application] = STATE(1446), - [sym__expr2] = STATE(1447), - [sym__atomic_exprs1] = STATE(3277), - [sym_atomic_expr] = STATE(1449), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_tele_arrow] = STATE(3278), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3279), - [aux_sym__application_repeat1] = STATE(3280), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(3819), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1788), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), + [4610] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), }, - [4085] = { - [sym_atomic_expr] = STATE(3419), - [sym__atomic_expr_curly] = STATE(2434), - [sym__atomic_expr_no_curly] = STATE(2434), - [sym_literal] = ACTIONS(2920), - [sym_set_n] = ACTIONS(2920), - [sym_name_at] = ACTIONS(4735), - [sym_qualified_name] = ACTIONS(2920), - [anon_sym__] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(4735), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2926), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2920), - [anon_sym_Prop] = ACTIONS(2920), - [anon_sym_Set] = ACTIONS(2920), - [anon_sym_quote] = ACTIONS(2920), - [anon_sym_quoteTerm] = ACTIONS(2920), - [anon_sym_unquote] = ACTIONS(2920), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_LPAREN_PIPE] = ACTIONS(2930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2920), + [4611] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [4086] = { - [sym__expr2] = STATE(2436), - [sym_atomic_expr] = STATE(2433), - [sym__atomic_expr_curly] = STATE(2434), - [sym__atomic_expr_no_curly] = STATE(2434), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2920), - [sym_set_n] = ACTIONS(2920), - [sym_name_at] = ACTIONS(4735), - [sym_qualified_name] = ACTIONS(2920), - [anon_sym__] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(4735), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2926), + [4612] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(2920), - [anon_sym_Prop] = ACTIONS(2920), - [anon_sym_Set] = ACTIONS(2920), - [anon_sym_quote] = ACTIONS(2920), - [anon_sym_quoteTerm] = ACTIONS(2920), - [anon_sym_unquote] = ACTIONS(2920), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_LPAREN_PIPE] = ACTIONS(2930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [4087] = { - [anon_sym_RBRACE] = ACTIONS(5203), + [4613] = { + [anon_sym_RBRACE] = ACTIONS(5538), [sym_comment] = ACTIONS(86), }, - [4088] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5203), + [4614] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5540), [sym_comment] = ACTIONS(86), }, - [4089] = { + [4615] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5203), - }, - [4090] = { - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_COLON] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), - [anon_sym_rewrite] = ACTIONS(4085), - [anon_sym_with] = ACTIONS(4085), - }, - [4091] = { - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), - [anon_sym_rewrite] = ACTIONS(4121), - [anon_sym_with] = ACTIONS(4121), - }, - [4092] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_rewrite] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), - }, - [4093] = { - [sym_semi] = STATE(3299), - [aux_sym__declarations1_repeat1] = STATE(4093), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_rewrite] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), + [anon_sym_RPAREN] = ACTIONS(5540), }, - [4094] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_where] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_rewrite] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - }, - [4095] = { - [anon_sym_RBRACE] = ACTIONS(5205), + [4616] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5207), + [anon_sym_PIPE_RPAREN] = ACTIONS(5540), }, - [4096] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5205), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5209), + [4617] = { + [sym__layout_semicolon] = ACTIONS(5216), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), }, - [4097] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5205), + [4618] = { + [sym__layout_semicolon] = ACTIONS(5218), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), }, - [4098] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5211), + [4619] = { + [sym__layout_semicolon] = ACTIONS(4392), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4392), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(4392), }, - [4099] = { - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_with] = ACTIONS(1891), + [4620] = { + [sym__layout_semicolon] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_DOT_DOT] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3011), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3011), }, - [4100] = { - [sym_expr] = STATE(4665), + [4621] = { + [sym_expr] = STATE(5022), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -136132,39 +147297,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4101] = { - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_COLON] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_with] = ACTIONS(1905), - }, - [4102] = { - [sym_expr] = STATE(4666), + [4622] = { + [sym_expr] = STATE(5023), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -136200,432 +147334,495 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4103] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), + [4623] = { + [sym_expr] = STATE(5024), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4104] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), + [4624] = { + [anon_sym_RBRACE] = ACTIONS(5542), + [sym_comment] = ACTIONS(86), }, - [4105] = { - [anon_sym_RBRACE] = ACTIONS(5213), + [4625] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5542), [sym_comment] = ACTIONS(86), }, - [4106] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5215), + [4626] = { + [sym__layout_semicolon] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_RBRACE] = ACTIONS(3439), [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3439), + [anon_sym_COLON] = ACTIONS(3439), }, - [4107] = { - [sym_atomic_expr] = STATE(4126), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(4751), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4759), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4761), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(4763), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), + [4627] = { + [sym__layout_semicolon] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_RBRACE] = ACTIONS(3441), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3441), + [anon_sym_COLON] = ACTIONS(3441), }, - [4108] = { - [sym_atomic_expr] = STATE(4126), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(4751), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4765), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4767), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(4769), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), + [4628] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5542), }, - [4109] = { - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_in] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_with] = ACTIONS(1983), + [4629] = { + [sym__layout_semicolon] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_COLON] = ACTIONS(1444), }, - [4110] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5217), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), + [4630] = { + [sym_expr] = STATE(5026), + [sym__expr1] = STATE(4010), + [sym__application] = STATE(2283), + [sym__expr2] = STATE(2284), + [sym__atomic_exprs1] = STATE(4011), + [sym_atomic_expr] = STATE(2300), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_tele_arrow] = STATE(4012), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2287), + [aux_sym__application_repeat1] = STATE(2303), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(2750), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2756), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_forall] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), }, - [4111] = { + [4631] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + }, + [4632] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + }, + [4633] = { + [sym__layout_semicolon] = ACTIONS(4670), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + }, + [4634] = { + [sym_vclose] = STATE(5027), + [sym__layout_close_brace] = ACTIONS(5166), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5219), - [anon_sym_PIPE] = ACTIONS(162), }, - [4112] = { - [sym_expr] = STATE(4136), - [sym__expr1] = STATE(4110), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(4111), - [sym_atomic_expr] = STATE(3339), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_tele_arrow] = STATE(4112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3263), - [aux_sym__application_repeat1] = STATE(4113), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(4751), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(4753), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3911), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), + [4635] = { + [sym_vopen] = STATE(4013), + [sym_declarations] = STATE(4014), + [sym__declarations0] = STATE(5028), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [4113] = { - [sym__expr2] = STATE(2379), - [sym_atomic_expr] = STATE(3339), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(4751), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4759), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4761), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(4763), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), + [4636] = { + [anon_sym_RBRACE] = ACTIONS(5544), + [sym_comment] = ACTIONS(86), }, - [4114] = { + [4637] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5544), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5215), }, - [4115] = { + [4638] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(5215), + [anon_sym_RPAREN] = ACTIONS(5544), }, - [4116] = { - [sym_expr] = STATE(4670), - [sym__expr1] = STATE(4110), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(4111), - [sym_atomic_expr] = STATE(3339), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_tele_arrow] = STATE(4112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3263), - [aux_sym__application_repeat1] = STATE(4113), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(4751), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(4753), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3911), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), + [4639] = { + [sym__layout_semicolon] = ACTIONS(3409), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [anon_sym_SEMI] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_RBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + [anon_sym_rewrite] = ACTIONS(3863), + [anon_sym_with] = ACTIONS(3863), }, - [4117] = { - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_with] = ACTIONS(1997), + [4640] = { + [sym__layout_semicolon] = ACTIONS(5216), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_rewrite] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), }, - [4118] = { - [sym__expr2] = STATE(2379), - [sym_atomic_expr] = STATE(3320), - [sym__atomic_expr_curly] = STATE(3321), - [sym__atomic_expr_no_curly] = STATE(3321), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3877), - [sym_set_n] = ACTIONS(3877), - [sym_name_at] = ACTIONS(3879), - [sym_qualified_name] = ACTIONS(3877), - [anon_sym__] = ACTIONS(3877), - [anon_sym_DOT] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3883), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5221), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3877), - [anon_sym_Prop] = ACTIONS(3877), - [anon_sym_Set] = ACTIONS(3877), - [anon_sym_quote] = ACTIONS(3877), - [anon_sym_quoteTerm] = ACTIONS(3877), - [anon_sym_unquote] = ACTIONS(3877), - [anon_sym_LPAREN] = ACTIONS(3887), - [anon_sym_LPAREN_PIPE] = ACTIONS(3889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3877), + [4641] = { + [sym__layout_semicolon] = ACTIONS(5218), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_rewrite] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), }, - [4119] = { - [sym__application] = STATE(3319), - [sym__expr2] = STATE(1412), - [sym_atomic_expr] = STATE(3320), - [sym__atomic_expr_curly] = STATE(3321), - [sym__atomic_expr_no_curly] = STATE(3321), - [sym_non_absurd_lambda_clause] = STATE(3322), - [sym_absurd_lambda_clause] = STATE(3322), - [sym_lambda_clause] = STATE(4672), - [aux_sym__application_repeat1] = STATE(3325), - [sym_literal] = ACTIONS(3877), - [sym_set_n] = ACTIONS(3877), - [sym_name_at] = ACTIONS(3879), - [sym_qualified_name] = ACTIONS(3877), - [anon_sym__] = ACTIONS(3877), - [anon_sym_DOT] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3881), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3883), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3885), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3877), - [anon_sym_Prop] = ACTIONS(3877), - [anon_sym_Set] = ACTIONS(3877), - [anon_sym_quote] = ACTIONS(3877), - [anon_sym_quoteTerm] = ACTIONS(3877), - [anon_sym_unquote] = ACTIONS(3877), - [anon_sym_LPAREN] = ACTIONS(3887), - [anon_sym_LPAREN_PIPE] = ACTIONS(3889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3877), - [sym_catchall_pragma] = ACTIONS(3891), + [4642] = { + [anon_sym_RBRACE] = ACTIONS(5546), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5548), }, - [4120] = { - [sym_semi] = STATE(4119), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4673), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_with] = ACTIONS(2001), + [4643] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5546), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5550), }, - [4121] = { - [sym_expr] = STATE(4674), + [4644] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5546), + }, + [4645] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5552), + }, + [4646] = { + [sym__layout_semicolon] = ACTIONS(1925), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), + }, + [4647] = { + [sym_expr] = STATE(5034), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + }, + [4648] = { + [sym__layout_semicolon] = ACTIONS(2366), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), + }, + [4649] = { + [sym_expr] = STATE(5035), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [4650] = { + [sym_vclose] = STATE(5037), + [sym__layout_close_brace] = ACTIONS(5554), + [sym_comment] = ACTIONS(86), + }, + [4651] = { + [sym_expr] = STATE(5038), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -136661,13 +147858,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4122] = { - [anon_sym_RBRACE] = ACTIONS(4739), + [4652] = { + [anon_sym_RBRACE] = ACTIONS(5172), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4741), + [anon_sym_COLON] = ACTIONS(5174), }, - [4123] = { - [sym_expr] = STATE(4131), + [4653] = { + [sym_expr] = STATE(4661), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -136688,7 +147885,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(4771), + [anon_sym_RBRACE] = ACTIONS(5194), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -136704,8 +147901,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4124] = { - [sym_expr] = STATE(4132), + [4654] = { + [sym_expr] = STATE(4662), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -136727,7 +147924,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4773), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5196), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -136742,8 +147939,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4125] = { - [sym_expr] = STATE(4133), + [4655] = { + [sym_expr] = STATE(4663), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -136776,11 +147973,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(4773), + [anon_sym_RPAREN] = ACTIONS(5196), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4126] = { + [4656] = { + [sym__layout_semicolon] = ACTIONS(1611), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), [anon_sym_SEMI] = ACTIONS(186), @@ -136789,8 +147987,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(186), [anon_sym_DOT] = ACTIONS(186), [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_RBRACE] = ACTIONS(186), [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(186), [anon_sym_EQ] = ACTIONS(186), @@ -136813,10 +148011,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(186), [anon_sym_with] = ACTIONS(186), }, - [4127] = { - [sym_expr] = STATE(4131), + [4657] = { + [sym_expr] = STATE(4661), [sym__expr1] = STATE(38), - [sym__application] = STATE(557), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -136835,7 +148033,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(4771), + [anon_sym_RBRACE] = ACTIONS(5194), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -136851,10 +148049,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [4128] = { - [sym_expr] = STATE(4132), + [4658] = { + [sym_expr] = STATE(4662), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -136874,7 +148072,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4773), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5196), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -136889,539 +148087,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [4129] = { - [sym_expr] = STATE(4133), + [4659] = { + [sym_expr] = STATE(4663), [sym__expr1] = STATE(110), - [sym__application] = STATE(559), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(214), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(268), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(272), - [anon_sym_forall] = ACTIONS(274), - [anon_sym_let] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(4773), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [4130] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), - }, - [4131] = { - [anon_sym_RBRACE] = ACTIONS(5223), - [sym_comment] = ACTIONS(86), - }, - [4132] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5225), - [sym_comment] = ACTIONS(86), - }, - [4133] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5225), - }, - [4134] = { - [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(5225), - }, - [4135] = { - [sym_expr] = STATE(4677), - [sym__expr1] = STATE(3337), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(3338), - [sym_atomic_expr] = STATE(3339), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_tele_arrow] = STATE(3341), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1415), - [aux_sym__application_repeat1] = STATE(3342), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(3905), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3911), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1752), - [anon_sym_forall] = ACTIONS(1754), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), - }, - [4136] = { - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_with] = ACTIONS(2061), - }, - [4137] = { - [sym_literal] = ACTIONS(1320), - [sym_set_n] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_name_at] = ACTIONS(1320), - [sym_qualified_name] = ACTIONS(1320), - [anon_sym__] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1320), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_BSLASH] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_forall] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_Prop] = ACTIONS(1320), - [anon_sym_Set] = ACTIONS(1320), - [anon_sym_quote] = ACTIONS(1320), - [anon_sym_quoteTerm] = ACTIONS(1320), - [anon_sym_unquote] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_LPAREN_PIPE] = ACTIONS(1320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1320), - [anon_sym_COLON] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_with] = ACTIONS(1320), - }, - [4138] = { - [sym_literal] = ACTIONS(1322), - [sym_set_n] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [sym_name_at] = ACTIONS(1322), - [sym_qualified_name] = ACTIONS(1322), - [anon_sym__] = ACTIONS(1322), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1322), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_BSLASH] = ACTIONS(1322), - [anon_sym_where] = ACTIONS(1322), - [anon_sym_forall] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_in] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_Prop] = ACTIONS(1322), - [anon_sym_Set] = ACTIONS(1322), - [anon_sym_quote] = ACTIONS(1322), - [anon_sym_quoteTerm] = ACTIONS(1322), - [anon_sym_unquote] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_LPAREN_PIPE] = ACTIONS(1322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_module] = ACTIONS(1322), - [anon_sym_with] = ACTIONS(1322), - }, - [4139] = { - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_COLON] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_with] = ACTIONS(1352), - }, - [4140] = { - [sym_semi] = STATE(4678), - [aux_sym__declarations1_repeat1] = STATE(4679), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_with] = ACTIONS(1376), - }, - [4141] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_where] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1380), - [anon_sym_module] = ACTIONS(1380), - [anon_sym_with] = ACTIONS(1380), - }, - [4142] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5227), - }, - [4143] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_where] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_with] = ACTIONS(1386), - }, - [4144] = { - [anon_sym_RBRACE] = ACTIONS(5229), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5231), - }, - [4145] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5229), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5233), - }, - [4146] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5229), - }, - [4147] = { - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5235), - }, - [4148] = { - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - }, - [4149] = { - [sym_expr] = STATE(4685), - [sym__expr1] = STATE(38), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(41), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(44), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(46), - [aux_sym__application_repeat1] = STATE(47), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(34), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(36), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(46), - [anon_sym_forall] = ACTIONS(48), - [anon_sym_let] = ACTIONS(50), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [4150] = { - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_COLON] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - }, - [4151] = { - [sym_expr] = STATE(4686), - [sym__expr1] = STATE(60), - [sym__application] = STATE(61), - [sym__expr2] = STATE(62), - [sym__atomic_exprs1] = STATE(63), - [sym_atomic_expr] = STATE(64), - [sym__atomic_expr_curly] = STATE(65), - [sym__atomic_expr_no_curly] = STATE(65), - [sym_tele_arrow] = STATE(66), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(67), - [aux_sym__application_repeat1] = STATE(68), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(56), - [sym_set_n] = ACTIONS(56), - [sym_name_at] = ACTIONS(58), - [sym_qualified_name] = ACTIONS(56), - [anon_sym__] = ACTIONS(56), - [anon_sym_DOT] = ACTIONS(60), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(62), - [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(68), - [anon_sym_forall] = ACTIONS(70), - [anon_sym_let] = ACTIONS(72), - [anon_sym_QMARK] = ACTIONS(56), - [anon_sym_Prop] = ACTIONS(56), - [anon_sym_Set] = ACTIONS(56), - [anon_sym_quote] = ACTIONS(56), - [anon_sym_quoteTerm] = ACTIONS(56), - [anon_sym_unquote] = ACTIONS(56), - [anon_sym_LPAREN] = ACTIONS(74), - [anon_sym_LPAREN_PIPE] = ACTIONS(76), - [anon_sym_DOT_DOT_DOT] = ACTIONS(56), - }, - [4152] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(5196), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [4153] = { + [4660] = { + [sym__layout_semicolon] = ACTIONS(1613), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), [anon_sym_SEMI] = ACTIONS(228), @@ -137430,11 +148135,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(228), [anon_sym_DOT] = ACTIONS(228), [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(228), [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), [anon_sym_DASH_GT] = ACTIONS(228), [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), [anon_sym_BSLASH] = ACTIONS(228), [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), @@ -137451,404 +148157,380 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(228), [anon_sym_COLON] = ACTIONS(228), [anon_sym_module] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [4154] = { - [anon_sym_RBRACE] = ACTIONS(5237), + [4661] = { + [anon_sym_RBRACE] = ACTIONS(5556), [sym_comment] = ACTIONS(86), }, - [4155] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5239), + [4662] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5558), [sym_comment] = ACTIONS(86), }, - [4156] = { - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_in] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - }, - [4157] = { + [4663] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5239), + [anon_sym_RPAREN] = ACTIONS(5558), }, - [4158] = { + [4664] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(5239), + [anon_sym_PIPE_RPAREN] = ACTIONS(5558), }, - [4159] = { - [sym_expr] = STATE(4689), - [sym__expr1] = STATE(3958), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(3959), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(3960), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3269), - [aux_sym__application_repeat1] = STATE(3961), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(4641), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - }, - [4160] = { - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), + [4665] = { + [sym_expr] = STATE(5041), + [sym__expr1] = STATE(4057), + [sym__application] = STATE(2267), + [sym__expr2] = STATE(2268), + [sym__atomic_exprs1] = STATE(4058), + [sym_atomic_expr] = STATE(4059), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [sym_tele_arrow] = STATE(4061), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2271), + [aux_sym__application_repeat1] = STATE(4062), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(4632), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(4634), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4636), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4638), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2718), + [anon_sym_forall] = ACTIONS(2720), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(4640), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), }, - [4161] = { - [sym__expr2] = STATE(2399), - [sym_atomic_expr] = STATE(3370), - [sym__atomic_expr_curly] = STATE(3371), - [sym__atomic_expr_no_curly] = STATE(3371), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3937), - [sym_set_n] = ACTIONS(3937), - [sym_name_at] = ACTIONS(3939), - [sym_qualified_name] = ACTIONS(3937), - [anon_sym__] = ACTIONS(3937), - [anon_sym_DOT] = ACTIONS(3939), - [anon_sym_LBRACE] = ACTIONS(3941), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3943), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5241), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(3937), - [anon_sym_Prop] = ACTIONS(3937), - [anon_sym_Set] = ACTIONS(3937), - [anon_sym_quote] = ACTIONS(3937), - [anon_sym_quoteTerm] = ACTIONS(3937), - [anon_sym_unquote] = ACTIONS(3937), - [anon_sym_LPAREN] = ACTIONS(3947), - [anon_sym_LPAREN_PIPE] = ACTIONS(3949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3937), + [4666] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), }, - [4162] = { - [sym__application] = STATE(3369), - [sym__expr2] = STATE(1428), - [sym_atomic_expr] = STATE(3370), - [sym__atomic_expr_curly] = STATE(3371), - [sym__atomic_expr_no_curly] = STATE(3371), - [sym_non_absurd_lambda_clause] = STATE(3372), - [sym_absurd_lambda_clause] = STATE(3372), - [sym_lambda_clause] = STATE(4691), - [aux_sym__application_repeat1] = STATE(3375), - [sym_literal] = ACTIONS(3937), - [sym_set_n] = ACTIONS(3937), - [sym_name_at] = ACTIONS(3939), - [sym_qualified_name] = ACTIONS(3937), - [anon_sym__] = ACTIONS(3937), - [anon_sym_DOT] = ACTIONS(3939), - [anon_sym_LBRACE] = ACTIONS(3941), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3943), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3945), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(3937), - [anon_sym_Prop] = ACTIONS(3937), - [anon_sym_Set] = ACTIONS(3937), - [anon_sym_quote] = ACTIONS(3937), - [anon_sym_quoteTerm] = ACTIONS(3937), - [anon_sym_unquote] = ACTIONS(3937), - [anon_sym_LPAREN] = ACTIONS(3947), - [anon_sym_LPAREN_PIPE] = ACTIONS(3949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3937), - [sym_catchall_pragma] = ACTIONS(3951), + [4667] = { + [sym__layout_semicolon] = ACTIONS(3765), + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_with] = ACTIONS(1212), }, - [4163] = { - [sym_semi] = STATE(4162), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4692), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), + [4668] = { + [sym__layout_semicolon] = ACTIONS(3767), + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_with] = ACTIONS(1214), }, - [4164] = { - [sym_expr] = STATE(4693), - [sym__expr1] = STATE(110), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), + [4669] = { + [sym__layout_semicolon] = ACTIONS(3785), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + [anon_sym_with] = ACTIONS(1244), }, - [4165] = { - [anon_sym_RBRACE] = ACTIONS(4781), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4783), + [4670] = { + [sym_vclose] = STATE(5042), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(5043), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(5554), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [4166] = { - [sym_semi] = STATE(4694), - [aux_sym__declarations1_repeat1] = STATE(4695), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), + [4671] = { + [sym__layout_semicolon] = ACTIONS(3793), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), + [anon_sym_with] = ACTIONS(1284), }, - [4167] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_where] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1380), - [anon_sym_module] = ACTIONS(1380), + [4672] = { + [sym__layout_semicolon] = ACTIONS(3795), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_with] = ACTIONS(1286), }, - [4168] = { + [4673] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5243), + [anon_sym_where] = ACTIONS(5560), }, - [4169] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_where] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), + [4674] = { + [sym__layout_semicolon] = ACTIONS(3799), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), + [anon_sym_with] = ACTIONS(1292), }, - [4170] = { - [anon_sym_RBRACE] = ACTIONS(5245), + [4675] = { + [anon_sym_RBRACE] = ACTIONS(5562), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5247), + [anon_sym_COLON] = ACTIONS(5564), }, - [4171] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5245), + [4676] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5562), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5249), + [anon_sym_COLON] = ACTIONS(5566), }, - [4172] = { + [4677] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5245), + [anon_sym_RPAREN] = ACTIONS(5562), }, - [4173] = { + [4678] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5251), + [anon_sym_COLON] = ACTIONS(5568), }, - [4174] = { - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), + [4679] = { + [sym__layout_semicolon] = ACTIONS(1925), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), }, - [4175] = { - [sym_expr] = STATE(4701), + [4680] = { + [sym_expr] = STATE(5049), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -137884,37 +148566,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4176] = { - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), + [4681] = { + [sym__layout_semicolon] = ACTIONS(2366), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), }, - [4177] = { - [sym_expr] = STATE(4702), + [4682] = { + [sym_expr] = STATE(5050), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -137950,273 +148634,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4178] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [anon_sym_RBRACE_RBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - }, - [4179] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE_RBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - }, - [4180] = { - [anon_sym_RBRACE] = ACTIONS(5253), - [sym_comment] = ACTIONS(86), - }, - [4181] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5255), - [sym_comment] = ACTIONS(86), - }, - [4182] = { - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_in] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - }, - [4183] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5255), - }, - [4184] = { + [4683] = { + [sym_vclose] = STATE(5052), + [sym__layout_close_brace] = ACTIONS(5570), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(5255), - }, - [4185] = { - [sym_expr] = STATE(4705), - [sym__expr1] = STATE(3276), - [sym__application] = STATE(1446), - [sym__expr2] = STATE(1447), - [sym__atomic_exprs1] = STATE(3277), - [sym_atomic_expr] = STATE(1449), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_tele_arrow] = STATE(3278), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3279), - [aux_sym__application_repeat1] = STATE(3280), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(3819), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1788), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), - }, - [4186] = { - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - }, - [4187] = { - [sym__expr2] = STATE(2436), - [sym_atomic_expr] = STATE(3403), - [sym__atomic_expr_curly] = STATE(3404), - [sym__atomic_expr_no_curly] = STATE(3404), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3979), - [sym_set_n] = ACTIONS(3979), - [sym_name_at] = ACTIONS(3981), - [sym_qualified_name] = ACTIONS(3979), - [anon_sym__] = ACTIONS(3979), - [anon_sym_DOT] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3985), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5257), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(3979), - [anon_sym_Prop] = ACTIONS(3979), - [anon_sym_Set] = ACTIONS(3979), - [anon_sym_quote] = ACTIONS(3979), - [anon_sym_quoteTerm] = ACTIONS(3979), - [anon_sym_unquote] = ACTIONS(3979), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), - }, - [4188] = { - [sym__application] = STATE(3402), - [sym__expr2] = STATE(1447), - [sym_atomic_expr] = STATE(3403), - [sym__atomic_expr_curly] = STATE(3404), - [sym__atomic_expr_no_curly] = STATE(3404), - [sym_non_absurd_lambda_clause] = STATE(3405), - [sym_absurd_lambda_clause] = STATE(3405), - [sym_lambda_clause] = STATE(4707), - [aux_sym__application_repeat1] = STATE(3408), - [sym_literal] = ACTIONS(3979), - [sym_set_n] = ACTIONS(3979), - [sym_name_at] = ACTIONS(3981), - [sym_qualified_name] = ACTIONS(3979), - [anon_sym__] = ACTIONS(3979), - [anon_sym_DOT] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3985), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(3987), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(3979), - [anon_sym_Prop] = ACTIONS(3979), - [anon_sym_Set] = ACTIONS(3979), - [anon_sym_quote] = ACTIONS(3979), - [anon_sym_quoteTerm] = ACTIONS(3979), - [anon_sym_unquote] = ACTIONS(3979), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3979), - [sym_catchall_pragma] = ACTIONS(3993), }, - [4189] = { - [sym_semi] = STATE(4188), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4708), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - }, - [4190] = { - [sym_expr] = STATE(4709), + [4684] = { + [sym_expr] = STATE(5053), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -138252,565 +148676,1081 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4191] = { - [anon_sym_RBRACE] = ACTIONS(4799), + [4685] = { + [anon_sym_RBRACE] = ACTIONS(5204), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4801), + [anon_sym_COLON] = ACTIONS(5206), }, - [4192] = { - [sym_semi] = STATE(4710), - [aux_sym__declarations1_repeat1] = STATE(4711), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), + [4686] = { + [sym_vclose] = STATE(5054), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(5055), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(5570), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [4193] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_where] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_module] = ACTIONS(1380), + [4687] = { + [sym__layout_semicolon] = ACTIONS(3793), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), }, - [4194] = { + [4688] = { + [sym__layout_semicolon] = ACTIONS(3795), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + }, + [4689] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5259), + [anon_sym_where] = ACTIONS(5572), }, - [4195] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_where] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), + [4690] = { + [sym__layout_semicolon] = ACTIONS(3799), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), }, - [4196] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), + [4691] = { + [anon_sym_RBRACE] = ACTIONS(5574), + [sym_comment] = ACTIONS(86), }, - [4197] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), + [4692] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5574), + [sym_comment] = ACTIONS(86), }, - [4198] = { - [sym_expr] = STATE(3985), - [sym__expr1] = STATE(3994), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3995), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3996), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2460), - [aux_sym__application_repeat1] = STATE(3997), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4671), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [4693] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5574), }, - [4199] = { - [sym__expr1] = STATE(2906), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), + [4694] = { + [sym__layout_semicolon] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(3407), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_RBRACE] = ACTIONS(3409), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3409), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + }, + [4695] = { + [sym_expr] = STATE(3950), + [sym__expr1] = STATE(4107), + [sym__application] = STATE(708), + [sym__expr2] = STATE(709), + [sym__atomic_exprs1] = STATE(4108), + [sym_atomic_expr] = STATE(711), + [sym__atomic_expr_curly] = STATE(712), + [sym__atomic_expr_no_curly] = STATE(712), + [sym_tele_arrow] = STATE(4109), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2332), + [aux_sym__application_repeat1] = STATE(2333), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(886), + [sym_set_n] = ACTIONS(886), + [sym_name_at] = ACTIONS(2813), + [sym_qualified_name] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + [anon_sym_DOT] = ACTIONS(2815), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_LBRACE_LBRACE] = ACTIONS(894), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2817), + [anon_sym_forall] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(886), + [anon_sym_Prop] = ACTIONS(886), + [anon_sym_Set] = ACTIONS(886), + [anon_sym_quote] = ACTIONS(886), + [anon_sym_quoteTerm] = ACTIONS(886), + [anon_sym_unquote] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LPAREN_PIPE] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(886), + }, + [4696] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(5576), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [4697] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(5578), + [anon_sym_PIPE] = ACTIONS(162), + }, + [4698] = { + [sym_expr] = STATE(3976), + [sym__expr1] = STATE(4696), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(4697), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(4698), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3320), + [aux_sym__application_repeat1] = STATE(3321), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3837), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3839), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3841), + [anon_sym_forall] = ACTIONS(3843), + [anon_sym_let] = ACTIONS(3845), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + }, + [4699] = { + [sym_expr] = STATE(4648), + [sym__expr1] = STATE(4702), + [sym__application] = STATE(2267), + [sym__expr2] = STATE(2268), + [sym__atomic_exprs1] = STATE(4703), + [sym_atomic_expr] = STATE(4059), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [sym_tele_arrow] = STATE(4704), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3303), + [aux_sym__application_repeat1] = STATE(4705), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(5226), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4636), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4638), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3823), + [anon_sym_forall] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3827), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(4640), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), + }, + [4700] = { + [sym_atomic_expr] = STATE(4656), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(5226), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5182), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5184), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(5186), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), + }, + [4701] = { + [sym_atomic_expr] = STATE(4656), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(5226), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5188), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5190), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(5192), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), + }, + [4702] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(5580), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), + }, + [4703] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(5582), + [anon_sym_PIPE] = ACTIONS(162), + }, + [4704] = { + [sym_expr] = STATE(4666), + [sym__expr1] = STATE(4702), + [sym__application] = STATE(2267), + [sym__expr2] = STATE(2268), + [sym__atomic_exprs1] = STATE(4703), + [sym_atomic_expr] = STATE(4059), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [sym_tele_arrow] = STATE(4704), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3303), + [aux_sym__application_repeat1] = STATE(4705), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(5226), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4636), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4638), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3823), + [anon_sym_forall] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3827), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(4640), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), + }, + [4705] = { + [sym__expr2] = STATE(3230), + [sym_atomic_expr] = STATE(4059), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(5226), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(5226), + [anon_sym_LBRACE] = ACTIONS(5182), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5184), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3823), + [anon_sym_forall] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3827), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(5186), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), + }, + [4706] = { + [sym__expr1] = STATE(4667), + [sym__application] = STATE(2267), + [sym__expr2] = STATE(2268), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(2460), - [aux_sym__application_repeat1] = STATE(2461), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(2950), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [sym_atomic_expr] = STATE(2269), + [sym__atomic_expr_curly] = STATE(2270), + [sym__atomic_expr_no_curly] = STATE(2270), + [aux_sym__expr1_repeat1] = STATE(3303), + [aux_sym__application_repeat1] = STATE(3304), + [sym_literal] = ACTIONS(2710), + [sym_set_n] = ACTIONS(2710), + [sym_name_at] = ACTIONS(3821), + [sym_qualified_name] = ACTIONS(2710), + [anon_sym__] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3823), + [anon_sym_forall] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3827), + [anon_sym_QMARK] = ACTIONS(2710), + [anon_sym_Prop] = ACTIONS(2710), + [anon_sym_Set] = ACTIONS(2710), + [anon_sym_quote] = ACTIONS(2710), + [anon_sym_quoteTerm] = ACTIONS(2710), + [anon_sym_unquote] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_LPAREN_PIPE] = ACTIONS(2726), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), }, - [4200] = { - [sym_with_expressions] = STATE(2907), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(4825), + [4707] = { + [sym_expr] = STATE(4669), + [sym__expr1] = STATE(4702), + [sym__application] = STATE(2267), + [sym__expr2] = STATE(2268), + [sym__atomic_exprs1] = STATE(4703), + [sym_atomic_expr] = STATE(4059), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [sym_tele_arrow] = STATE(4704), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3303), + [aux_sym__application_repeat1] = STATE(4705), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(5226), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4636), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4638), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3823), + [anon_sym_forall] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3827), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(4640), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), }, - [4201] = { - [sym_expr] = STATE(2915), - [sym__expr1] = STATE(3994), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3995), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3996), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2460), - [aux_sym__application_repeat1] = STATE(3997), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4671), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [4708] = { + [sym__expr1] = STATE(4116), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3223), + [sym__declaration] = STATE(3224), + [sym_function_clause] = STATE(3225), + [aux_sym_source_file_repeat1] = STATE(4708), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym__layout_semicolon] = ACTIONS(2766), + [sym_literal] = ACTIONS(2768), + [sym_set_n] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(3849), + [sym_qualified_name] = ACTIONS(2768), + [anon_sym__] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2777), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(3852), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(3855), + [anon_sym_let] = ACTIONS(3858), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_Prop] = ACTIONS(2768), + [anon_sym_Set] = ACTIONS(2768), + [anon_sym_quote] = ACTIONS(2768), + [anon_sym_quoteTerm] = ACTIONS(2768), + [anon_sym_unquote] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LPAREN_PIPE] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_with] = ACTIONS(644), }, - [4202] = { - [sym__expr1] = STATE(3434), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [4709] = { + [sym_expr] = STATE(4681), + [sym__expr1] = STATE(4712), + [sym__application] = STATE(2283), + [sym__expr2] = STATE(2284), + [sym__atomic_exprs1] = STATE(4713), + [sym_atomic_expr] = STATE(2300), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_tele_arrow] = STATE(4714), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3309), + [aux_sym__application_repeat1] = STATE(4715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(5232), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(5234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2756), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3831), + [anon_sym_forall] = ACTIONS(3833), + [anon_sym_let] = ACTIONS(3835), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), + }, + [4710] = { + [sym_atomic_expr] = STATE(3254), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(5232), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(5232), + [anon_sym_LBRACE] = ACTIONS(3769), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3771), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(3773), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), + }, + [4711] = { + [sym_atomic_expr] = STATE(3254), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(5232), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(5232), + [anon_sym_LBRACE] = ACTIONS(3775), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3777), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(3779), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), + }, + [4712] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(5584), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [4713] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(5586), + [anon_sym_PIPE] = ACTIONS(162), + }, + [4714] = { + [sym_expr] = STATE(4631), + [sym__expr1] = STATE(4712), + [sym__application] = STATE(2283), + [sym__expr2] = STATE(2284), + [sym__atomic_exprs1] = STATE(4713), + [sym_atomic_expr] = STATE(2300), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_tele_arrow] = STATE(4714), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3309), + [aux_sym__application_repeat1] = STATE(4715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(5232), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(5234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2756), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3831), + [anon_sym_forall] = ACTIONS(3833), + [anon_sym_let] = ACTIONS(3835), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), + }, + [4715] = { + [sym__expr2] = STATE(3250), + [sym_atomic_expr] = STATE(2300), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(5232), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(5232), + [anon_sym_LBRACE] = ACTIONS(3769), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3771), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3831), + [anon_sym_forall] = ACTIONS(3833), + [anon_sym_let] = ACTIONS(3835), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(3773), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), + }, + [4716] = { + [sym_expr] = STATE(4009), + [sym__expr1] = STATE(4712), + [sym__application] = STATE(2283), + [sym__expr2] = STATE(2284), + [sym__atomic_exprs1] = STATE(4713), + [sym_atomic_expr] = STATE(2300), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_tele_arrow] = STATE(4714), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3309), + [aux_sym__application_repeat1] = STATE(4715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(5232), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(5234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2756), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3831), + [anon_sym_forall] = ACTIONS(3833), + [anon_sym_let] = ACTIONS(3835), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), + }, + [4717] = { + [sym__expr1] = STATE(1407), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3435), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(4202), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(2972), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2975), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(2978), - [anon_sym_let] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(3243), + [sym__declaration] = STATE(3244), + [sym_function_clause] = STATE(3245), + [aux_sym_source_file_repeat1] = STATE(4717), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym__layout_semicolon] = ACTIONS(2766), + [sym_literal] = ACTIONS(2768), + [sym_set_n] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(3849), + [sym_qualified_name] = ACTIONS(2768), + [anon_sym__] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2777), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(3852), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(3855), + [anon_sym_let] = ACTIONS(3858), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_Prop] = ACTIONS(2768), + [anon_sym_Set] = ACTIONS(2768), + [anon_sym_quote] = ACTIONS(2768), + [anon_sym_quoteTerm] = ACTIONS(2768), + [anon_sym_unquote] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LPAREN_PIPE] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), + [anon_sym_COLON] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), }, - [4203] = { - [sym_expr] = STATE(4016), - [sym__expr1] = STATE(3945), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(3946), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(3947), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2466), - [aux_sym__application_repeat1] = STATE(2474), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2966), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4718] = { + [sym_expr] = STATE(5010), + [sym__expr1] = STATE(4696), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(4697), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(4698), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3320), + [aux_sym__application_repeat1] = STATE(3321), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3837), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3839), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3841), + [anon_sym_forall] = ACTIONS(3843), + [anon_sym_let] = ACTIONS(3845), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), }, - [4204] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), + [4719] = { + [sym__expr1] = STATE(1407), + [sym__application] = STATE(734), + [sym__expr2] = STATE(735), [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3440), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(4204), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(2972), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2975), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(2978), - [anon_sym_let] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), + [sym_atomic_expr] = STATE(736), + [sym__atomic_expr_curly] = STATE(737), + [sym__atomic_expr_no_curly] = STATE(737), + [sym_lhs] = STATE(4125), + [sym__declaration] = STATE(3970), + [sym_function_clause] = STATE(3971), + [aux_sym_source_file_repeat1] = STATE(4719), + [aux_sym__expr1_repeat1] = STATE(1412), + [aux_sym__application_repeat1] = STATE(1413), + [sym__layout_semicolon] = ACTIONS(2766), + [sym_literal] = ACTIONS(2768), + [sym_set_n] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(644), + [sym_name_at] = ACTIONS(3849), + [sym_qualified_name] = ACTIONS(2768), + [anon_sym__] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2777), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(644), + [anon_sym_BSLASH] = ACTIONS(3852), + [anon_sym_where] = ACTIONS(644), + [anon_sym_forall] = ACTIONS(3855), + [anon_sym_let] = ACTIONS(3858), + [anon_sym_in] = ACTIONS(644), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_Prop] = ACTIONS(2768), + [anon_sym_Set] = ACTIONS(2768), + [anon_sym_quote] = ACTIONS(2768), + [anon_sym_quoteTerm] = ACTIONS(2768), + [anon_sym_unquote] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LPAREN_PIPE] = ACTIONS(2792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(644), }, - [4205] = { - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), + [4720] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), }, - [4206] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), + [4721] = { + [sym__layout_semicolon] = ACTIONS(5216), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), }, - [4207] = { - [sym_semi] = STATE(3444), - [aux_sym__declarations1_repeat1] = STATE(4207), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), + [4722] = { + [sym__layout_semicolon] = ACTIONS(5218), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), }, - [4208] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_COLON] = ACTIONS(3524), + [4723] = { + [sym_expr] = STATE(4720), + [sym__expr1] = STATE(4135), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(4136), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(4137), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3127), + [aux_sym__application_repeat1] = STATE(3128), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3639), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3647), + [anon_sym_forall] = ACTIONS(3649), + [anon_sym_let] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), }, - [4209] = { - [sym_expr] = STATE(2511), - [sym__expr1] = STATE(2491), + [4724] = { + [sym__layout_semicolon] = ACTIONS(3011), + [sym__layout_close_brace] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_DOT_DOT] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3011), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + }, + [4725] = { + [sym_expr] = STATE(5061), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(2492), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(2493), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2494), - [aux_sym__application_repeat1] = STATE(2495), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), + [sym_name_at] = ACTIONS(34), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -138821,62 +149761,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4210] = { - [sym_semi] = STATE(3449), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4210), - [anon_sym_SEMI] = ACTIONS(3626), - [sym_comment] = ACTIONS(86), - }, - [4211] = { - [sym_atomic_expr] = STATE(1185), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(4833), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(4833), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), + [4726] = { + [sym_expr] = STATE(5062), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4212] = { - [sym_expr] = STATE(756), - [sym__expr1] = STATE(4217), + [4727] = { + [sym_expr] = STATE(5063), + [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(4218), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(4219), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2494), - [aux_sym__application_repeat1] = STATE(2495), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), + [sym_name_at] = ACTIONS(120), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -138887,99 +149835,260 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4213] = { - [sym__application] = STATE(789), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(622), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [aux_sym__application_repeat1] = STATE(4714), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(4833), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(4833), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5261), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), + [4728] = { + [anon_sym_RBRACE] = ACTIONS(5588), + [sym_comment] = ACTIONS(86), }, - [4214] = { - [sym_semi] = STATE(4715), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4716), - [anon_sym_SEMI] = ACTIONS(1014), + [4729] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5588), [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(1510), }, - [4215] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(622), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(4833), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(4833), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5261), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), + [4730] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym__layout_close_brace] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3439), }, - [4216] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(4217), + [4731] = { + [sym__layout_semicolon] = ACTIONS(3441), + [sym__layout_close_brace] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3441), + }, + [4732] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5588), + }, + [4733] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym__layout_close_brace] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1444), + }, + [4734] = { + [sym_expr] = STATE(5065), + [sym__expr1] = STATE(4155), + [sym__application] = STATE(3455), + [sym__expr2] = STATE(3456), + [sym__atomic_exprs1] = STATE(4156), + [sym_atomic_expr] = STATE(3458), + [sym__atomic_expr_curly] = STATE(3459), + [sym__atomic_expr_no_curly] = STATE(3459), + [sym_tele_arrow] = STATE(4157), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3461), + [aux_sym__application_repeat1] = STATE(3462), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3997), + [sym_set_n] = ACTIONS(3997), + [sym_name_at] = ACTIONS(3999), + [sym_qualified_name] = ACTIONS(3997), + [anon_sym__] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(4001), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(4007), + [anon_sym_forall] = ACTIONS(4009), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_Prop] = ACTIONS(3997), + [anon_sym_Set] = ACTIONS(3997), + [anon_sym_quote] = ACTIONS(3997), + [anon_sym_quoteTerm] = ACTIONS(3997), + [anon_sym_unquote] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(4013), + [anon_sym_LPAREN_PIPE] = ACTIONS(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + }, + [4735] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym__layout_close_brace] = ACTIONS(781), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + }, + [4736] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym__layout_close_brace] = ACTIONS(3439), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + }, + [4737] = { + [sym__layout_semicolon] = ACTIONS(4670), + [sym__layout_close_brace] = ACTIONS(4670), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + }, + [4738] = { + [sym_vclose] = STATE(5066), + [sym__layout_close_brace] = ACTIONS(5256), + [sym_comment] = ACTIONS(86), + }, + [4739] = { + [sym_vopen] = STATE(4158), + [sym_declarations] = STATE(4159), + [sym__declarations0] = STATE(5067), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [4740] = { + [anon_sym_RBRACE] = ACTIONS(5590), + [sym_comment] = ACTIONS(86), + }, + [4741] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5590), + [sym_comment] = ACTIONS(86), + }, + [4742] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5590), + }, + [4743] = { + [sym__layout_semicolon] = ACTIONS(3409), + [sym__layout_close_brace] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(3407), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3409), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + }, + [4744] = { + [sym__layout_semicolon] = ACTIONS(3011), + [sym__layout_close_brace] = ACTIONS(3011), + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_rewrite] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), + }, + [4745] = { + [sym_expr] = STATE(5069), + [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(4218), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(4219), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2494), - [aux_sym__application_repeat1] = STATE(2495), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), + [sym_name_at] = ACTIONS(34), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -138990,43 +150099,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4217] = { - [anon_sym_SEMI] = ACTIONS(280), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(5263), - }, - [4218] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5263), - [anon_sym_PIPE] = ACTIONS(162), + [4746] = { + [sym_expr] = STATE(5070), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4219] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(4217), + [4747] = { + [sym_expr] = STATE(5071), + [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(4218), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(4219), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2494), - [aux_sym__application_repeat1] = STATE(2495), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), + [sym_name_at] = ACTIONS(120), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -139037,1356 +150173,579 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4220] = { - [sym_expr] = STATE(1267), - [sym__expr1] = STATE(4718), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4719), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4720), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3493), - [aux_sym__application_repeat1] = STATE(3494), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4059), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4061), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4221] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3455), - [sym__declaration] = STATE(4721), - [sym_function_clause] = STATE(203), - [sym__declarations1] = STATE(1278), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4222] = { - [sym_anonymous_name] = STATE(4722), - [sym_name] = ACTIONS(5265), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), - }, - [4223] = { - [sym_where_clause] = STATE(1280), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(4843), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(4845), - }, - [4224] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3455), - [sym__declaration] = STATE(202), - [sym_function_clause] = STATE(203), - [aux_sym_source_file_repeat1] = STATE(4224), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4071), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4074), - [anon_sym_forall] = ACTIONS(4077), - [anon_sym_let] = ACTIONS(4080), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - }, - [4225] = { - [sym_expr] = STATE(2643), - [sym__expr1] = STATE(3463), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(3464), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(3465), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(3466), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(4033), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [4226] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5267), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [4227] = { - [sym_lambda_bindings] = STATE(3127), - [sym_untyped_bindings] = STATE(4227), - [sym_typed_bindings] = STATE(4227), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3667), - [anon_sym_DOT_DOT] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3671), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), - }, - [4228] = { - [sym_expr] = STATE(3144), - [sym__expr1] = STATE(4726), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4727), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4728), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3476), - [aux_sym__application_repeat1] = STATE(4729), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5269), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5271), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4229] = { - [sym_rewrite_equations] = STATE(4731), - [sym_with_expressions] = STATE(1929), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(3006), - [anon_sym_with] = ACTIONS(5273), + [4748] = { + [anon_sym_RBRACE] = ACTIONS(5592), + [sym_comment] = ACTIONS(86), }, - [4230] = { - [sym_where_clause] = STATE(1933), - [sym_rhs] = STATE(4308), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5275), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4901), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(5275), - [anon_sym_module] = ACTIONS(4903), - [anon_sym_with] = ACTIONS(170), + [4749] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5592), + [sym_comment] = ACTIONS(86), }, - [4231] = { - [sym__expr1] = STATE(4229), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4230), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(4733), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [4750] = { + [sym__layout_semicolon] = ACTIONS(3441), + [sym__layout_close_brace] = ACTIONS(3441), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + [anon_sym_rewrite] = ACTIONS(2965), + [anon_sym_with] = ACTIONS(2965), }, - [4232] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5277), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [4751] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5592), }, - [4233] = { - [sym_lambda_bindings] = STATE(3168), - [sym_untyped_bindings] = STATE(4233), - [sym_typed_bindings] = STATE(4233), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3717), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3721), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3723), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [4752] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_rewrite] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), }, - [4234] = { - [sym_expr] = STATE(3185), - [sym__expr1] = STATE(4735), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4736), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4737), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3482), - [aux_sym__application_repeat1] = STATE(4275), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4871), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4753] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_rewrite] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), }, - [4235] = { - [sym_where_clause] = STATE(1985), - [sym_rhs] = STATE(4318), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4867), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4913), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4867), - [anon_sym_module] = ACTIONS(4915), + [4754] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym__layout_close_brace] = ACTIONS(1444), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + [anon_sym_rewrite] = ACTIONS(3017), + [anon_sym_with] = ACTIONS(3017), }, - [4236] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4235), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(4738), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [4755] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), }, - [4237] = { - [sym__application] = STATE(3212), - [sym__expr2] = STATE(1270), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [sym_non_absurd_lambda_clause] = STATE(3215), - [sym_absurd_lambda_clause] = STATE(3215), - [sym_lambda_clause] = STATE(4742), - [sym_lambda_where_clauses] = STATE(3217), - [aux_sym__application_repeat1] = STATE(4743), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(5279), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(5279), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5281), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), - [sym_catchall_pragma] = ACTIONS(5283), + [4756] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), }, - [4238] = { + [4757] = { + [sym__application] = STATE(5073), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [4239] = { - [sym_lambda_bindings] = STATE(3200), - [sym_untyped_bindings] = STATE(4239), - [sym_typed_bindings] = STATE(4239), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3759), - [anon_sym_DOT_DOT] = ACTIONS(3759), - [anon_sym_LBRACE] = ACTIONS(3761), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3763), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3765), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - }, - [4240] = { - [sym_expr] = STATE(3217), - [sym__expr1] = STATE(4718), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4719), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4720), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3493), - [aux_sym__application_repeat1] = STATE(3494), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4059), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4061), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4241] = { - [sym_where_clause] = STATE(2025), - [sym_rhs] = STATE(4747), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4841), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(5287), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(4841), - [anon_sym_module] = ACTIONS(5289), - }, - [4242] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4241), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(4748), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [4243] = { - [sym_expr] = STATE(4749), - [sym__expr1] = STATE(3490), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3491), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3492), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3493), - [aux_sym__application_repeat1] = STATE(3494), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4059), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4061), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4244] = { - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - }, - [4245] = { - [sym_atomic_expr] = STATE(3228), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(4859), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - }, - [4246] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(2245), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(4859), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - }, - [4247] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1510), - [sym__declaration] = STATE(4750), - [sym_function_clause] = STATE(1512), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), }, - [4248] = { - [sym_semi] = STATE(4247), - [aux_sym__declarations1_repeat1] = STATE(4751), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - }, - [4249] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(1510), - [sym__declaration] = STATE(3495), - [sym_function_clause] = STATE(1512), - [sym__declarations1] = STATE(4752), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [4758] = { + [sym__application] = STATE(5074), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [4250] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(790), - [sym__atomic_expr_curly] = STATE(791), - [sym__atomic_expr_no_curly] = STATE(791), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(2162), - [aux_sym__application_repeat1] = STATE(1526), - [sym_literal] = ACTIONS(986), - [sym_set_n] = ACTIONS(986), - [sym_name_at] = ACTIONS(1895), - [sym_qualified_name] = ACTIONS(986), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_LBRACE_LBRACE] = ACTIONS(992), + [4759] = { + [sym_binding_name] = STATE(5075), + [sym__application] = STATE(5076), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(1897), - [anon_sym_forall] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_QMARK] = ACTIONS(986), - [anon_sym_Prop] = ACTIONS(986), - [anon_sym_Set] = ACTIONS(986), - [anon_sym_quote] = ACTIONS(986), - [anon_sym_quoteTerm] = ACTIONS(986), - [anon_sym_unquote] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LPAREN_PIPE] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(986), - [sym_catchall_pragma] = ACTIONS(1903), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [4251] = { - [sym_semi] = STATE(4250), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4753), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(2674), - [sym_comment] = ACTIONS(86), + [4760] = { + [sym__layout_semicolon] = ACTIONS(1356), + [sym__layout_close_brace] = ACTIONS(1356), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + [anon_sym_with] = ACTIONS(882), }, - [4252] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [4761] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(5594), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5596), }, - [4253] = { + [4762] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(5598), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5293), - [anon_sym_PIPE] = ACTIONS(162), }, - [4254] = { - [sym_expr] = STATE(4244), - [sym__expr1] = STATE(4252), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4253), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4254), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3114), - [aux_sym__application_repeat1] = STATE(3115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3614), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [4763] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5594), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5600), }, - [4255] = { - [sym_semi] = STATE(4755), - [aux_sym__declarations1_repeat1] = STATE(4756), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), + [4764] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(5081), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), }, - [4256] = { + [4765] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5295), - }, - [4257] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), + [anon_sym_RPAREN] = ACTIONS(5594), }, - [4258] = { + [4766] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_COLON] = ACTIONS(5602), }, - [4259] = { - [sym_expr] = STATE(3515), - [sym__expr1] = STATE(4257), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(4258), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(4259), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3269), - [aux_sym__application_repeat1] = STATE(3961), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(4641), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [4767] = { + [sym_expr] = STATE(5079), + [sym__expr1] = STATE(4777), + [sym__application] = STATE(3420), + [sym__expr2] = STATE(3421), + [sym__atomic_exprs1] = STATE(4778), + [sym_atomic_expr] = STATE(4779), + [sym__atomic_expr_curly] = STATE(4780), + [sym__atomic_expr_no_curly] = STATE(4780), + [sym_tele_arrow] = STATE(4781), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3424), + [aux_sym__application_repeat1] = STATE(4782), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(5296), + [sym_set_n] = ACTIONS(5296), + [sym_name_at] = ACTIONS(5298), + [sym_qualified_name] = ACTIONS(5296), + [anon_sym__] = ACTIONS(5296), + [anon_sym_DOT] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(5302), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5304), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3969), + [anon_sym_forall] = ACTIONS(3971), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(5296), + [anon_sym_Prop] = ACTIONS(5296), + [anon_sym_Set] = ACTIONS(5296), + [anon_sym_quote] = ACTIONS(5296), + [anon_sym_quoteTerm] = ACTIONS(5296), + [anon_sym_unquote] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_LPAREN_PIPE] = ACTIONS(5308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5296), }, - [4260] = { - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), + [4768] = { + [sym__application] = STATE(5083), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), + [sym_literal] = ACTIONS(460), + [sym_set_n] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), + [sym_qualified_name] = ACTIONS(460), + [anon_sym__] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(5284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_Prop] = ACTIONS(460), + [anon_sym_Set] = ACTIONS(460), + [anon_sym_quote] = ACTIONS(460), + [anon_sym_quoteTerm] = ACTIONS(460), + [anon_sym_unquote] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(460), }, - [4261] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), + [4769] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [anon_sym_SEMI] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), + [anon_sym_with] = ACTIONS(30), }, - [4262] = { - [sym_semi] = STATE(3516), - [aux_sym__declarations1_repeat1] = STATE(4262), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), + [4770] = { + [sym_atomic_expr] = STATE(5087), + [sym__atomic_expr_curly] = STATE(4780), + [sym__atomic_expr_no_curly] = STATE(4780), + [sym_literal] = ACTIONS(5296), + [sym_set_n] = ACTIONS(5296), + [sym_name_at] = ACTIONS(5298), + [sym_qualified_name] = ACTIONS(5296), + [anon_sym__] = ACTIONS(5296), + [anon_sym_DOT] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5604), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5606), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(5296), + [anon_sym_Prop] = ACTIONS(5296), + [anon_sym_Set] = ACTIONS(5296), + [anon_sym_quote] = ACTIONS(5296), + [anon_sym_quoteTerm] = ACTIONS(5296), + [anon_sym_unquote] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5608), + [anon_sym_LPAREN_PIPE] = ACTIONS(5308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5296), }, - [4263] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_COLON] = ACTIONS(3524), + [4771] = { + [sym_atomic_expr] = STATE(5087), + [sym__atomic_expr_curly] = STATE(4780), + [sym__atomic_expr_no_curly] = STATE(4780), + [sym_literal] = ACTIONS(5296), + [sym_set_n] = ACTIONS(5296), + [sym_name_at] = ACTIONS(5298), + [sym_qualified_name] = ACTIONS(5296), + [anon_sym__] = ACTIONS(5296), + [anon_sym_DOT] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5612), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(5296), + [anon_sym_Prop] = ACTIONS(5296), + [anon_sym_Set] = ACTIONS(5296), + [anon_sym_quote] = ACTIONS(5296), + [anon_sym_quoteTerm] = ACTIONS(5296), + [anon_sym_unquote] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5614), + [anon_sym_LPAREN_PIPE] = ACTIONS(5308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5296), }, - [4264] = { - [sym_expr] = STATE(1184), - [sym__expr1] = STATE(4265), - [sym__application] = STATE(39), + [4772] = { + [sym_expr] = STATE(5092), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(4266), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(4267), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2563), - [aux_sym__application_repeat1] = STATE(2564), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), + [sym_name_at] = ACTIONS(208), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(5616), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -140397,305 +150756,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [4265] = { - [anon_sym_SEMI] = ACTIONS(280), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(5301), - [anon_sym_COLON] = ACTIONS(280), - }, - [4266] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5301), - [anon_sym_PIPE] = ACTIONS(162), - }, - [4267] = { - [sym_expr] = STATE(218), - [sym__expr1] = STATE(4265), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(4266), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(4267), + [4773] = { + [sym_expr] = STATE(5093), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2563), - [aux_sym__application_repeat1] = STATE(2564), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3075), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [4268] = { - [sym_expr] = STATE(2093), - [sym__expr1] = STATE(4735), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4736), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4737), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3482), - [aux_sym__application_repeat1] = STATE(4275), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4871), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4269] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3524), - [sym__declaration] = STATE(578), - [sym_function_clause] = STATE(579), - [aux_sym_source_file_repeat1] = STATE(4269), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4071), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4074), - [anon_sym_forall] = ACTIONS(4077), - [anon_sym_let] = ACTIONS(4080), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - }, - [4270] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4871), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4271] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4871), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(3552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3554), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3556), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4272] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [4273] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(162), - }, - [4274] = { - [sym_expr] = STATE(3443), - [sym__expr1] = STATE(4272), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4273), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4274), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3482), - [aux_sym__application_repeat1] = STATE(4275), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4871), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4275] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4871), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4871), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5618), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [4276] = { - [sym_expr] = STATE(1500), - [sym__expr1] = STATE(4265), - [sym__application] = STATE(39), + [4774] = { + [sym_expr] = STATE(5094), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(4266), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(4267), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2563), - [aux_sym__application_repeat1] = STATE(2564), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), + [sym_name_at] = ACTIONS(268), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -140703,3597 +150828,2333 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(5618), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [4277] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(1139), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(4135), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5307), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), - }, - [4278] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(1139), - [sym__atomic_expr_curly] = STATE(1140), - [sym__atomic_expr_no_curly] = STATE(1140), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(2162), - [aux_sym__application_repeat1] = STATE(3538), - [sym_literal] = ACTIONS(1430), - [sym_set_n] = ACTIONS(1430), - [sym_name_at] = ACTIONS(4135), - [sym_qualified_name] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1436), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4137), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_Prop] = ACTIONS(1430), - [anon_sym_Set] = ACTIONS(1430), - [anon_sym_quote] = ACTIONS(1430), - [anon_sym_quoteTerm] = ACTIONS(1430), - [anon_sym_unquote] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LPAREN_PIPE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), - [sym_catchall_pragma] = ACTIONS(4139), - }, - [4279] = { - [sym_semi] = STATE(4278), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4762), - [anon_sym_SEMI] = ACTIONS(1014), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2674), - [anon_sym_COLON] = ACTIONS(2674), - }, - [4280] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(3540), + [4775] = { + [sym_expr] = STATE(5095), + [sym__expr1] = STATE(126), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(3541), - [sym_atomic_expr] = STATE(171), - [sym__atomic_expr_curly] = STATE(172), - [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(3542), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1599), - [aux_sym__application_repeat1] = STATE(1600), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(206), - [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(2017), - [sym_qualified_name] = ACTIONS(206), - [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(2019), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2021), - [anon_sym_forall] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [4281] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5309), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [4282] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(162), - }, - [4283] = { - [sym_expr] = STATE(3069), - [sym__expr1] = STATE(4281), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4282), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4283), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2613), - [aux_sym__application_repeat1] = STATE(2620), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3129), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3123), - [anon_sym_forall] = ACTIONS(3125), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4284] = { - [sym_semi] = STATE(4764), - [aux_sym__declarations1_repeat1] = STATE(4765), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - }, - [4285] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5313), - }, - [4286] = { - [sym_expr] = STATE(3577), - [sym__expr1] = STATE(3463), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(3464), - [sym_atomic_expr] = STATE(926), - [sym__atomic_expr_curly] = STATE(927), - [sym__atomic_expr_no_curly] = STATE(927), - [sym_tele_arrow] = STATE(3465), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(3466), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1155), - [sym_set_n] = ACTIONS(1155), - [sym_name_at] = ACTIONS(4033), - [sym_qualified_name] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1155), - [anon_sym_DOT] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1163), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1155), - [anon_sym_Set] = ACTIONS(1155), - [anon_sym_quote] = ACTIONS(1155), - [anon_sym_quoteTerm] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LPAREN_PIPE] = ACTIONS(1167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1155), - }, - [4287] = { - [sym_semi] = STATE(3550), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4287), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_rewrite] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - }, - [4288] = { - [sym__expr1] = STATE(2499), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2500), - [sym__declaration] = STATE(2644), - [sym_function_clause] = STATE(100), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4289] = { - [sym_semi] = STATE(4288), - [aux_sym__declarations1_repeat1] = STATE(4767), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_rewrite] = ACTIONS(2550), - [anon_sym_with] = ACTIONS(2550), - }, - [4290] = { - [sym__expr1] = STATE(2499), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2500), - [sym__declaration] = STATE(3553), - [sym_function_clause] = STATE(100), - [sym__declarations1] = STATE(2646), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - [anon_sym_rewrite] = ACTIONS(2552), - [anon_sym_with] = ACTIONS(2552), - }, - [4291] = { - [sym_atomic_expr] = STATE(3987), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(4885), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - }, - [4292] = { - [sym_expr] = STATE(3993), - [sym__expr1] = STATE(4726), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4727), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4728), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3476), - [aux_sym__application_repeat1] = STATE(4729), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5269), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5271), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4293] = { - [sym__application] = STATE(4001), - [sym__expr2] = STATE(1235), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [aux_sym__application_repeat1] = STATE(4769), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(4885), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5315), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - }, - [4294] = { - [sym_semi] = STATE(4770), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4771), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_with] = ACTIONS(1048), - }, - [4295] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(4885), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5315), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - }, - [4296] = { - [sym_expr] = STATE(3985), - [sym__expr1] = STATE(4299), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4300), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4301), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2607), - [aux_sym__application_repeat1] = STATE(4302), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4893), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4895), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3115), - [anon_sym_forall] = ACTIONS(3117), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4297] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4893), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4893), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), }, - [4298] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4893), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4893), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4547), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4549), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [4776] = { + [sym__layout_semicolon] = ACTIONS(1360), + [sym__layout_close_brace] = ACTIONS(1360), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_with] = ACTIONS(1038), }, - [4299] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5317), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), + [4777] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym__layout_close_brace] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(5620), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), }, - [4300] = { + [4778] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5319), + [anon_sym_DASH_GT] = ACTIONS(5622), [anon_sym_PIPE] = ACTIONS(162), }, - [4301] = { - [sym_expr] = STATE(3881), - [sym__expr1] = STATE(4299), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4300), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4301), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2607), - [aux_sym__application_repeat1] = STATE(4302), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4893), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4895), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3115), - [anon_sym_forall] = ACTIONS(3117), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4302] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4893), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4893), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(3115), - [anon_sym_forall] = ACTIONS(3117), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4303] = { - [sym__expr1] = STATE(2906), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(2607), - [aux_sym__application_repeat1] = STATE(2608), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(3113), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3115), - [anon_sym_forall] = ACTIONS(3117), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [4304] = { - [sym_with_expressions] = STATE(2907), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(4897), - }, - [4305] = { - [sym_expr] = STATE(2915), - [sym__expr1] = STATE(4299), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4300), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4301), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2607), - [aux_sym__application_repeat1] = STATE(4302), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4893), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4895), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3115), - [anon_sym_forall] = ACTIONS(3117), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4306] = { - [sym__expr1] = STATE(4229), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4230), - [sym__declaration] = STATE(4773), - [sym_function_clause] = STATE(1038), - [sym__declarations1] = STATE(2923), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), - [anon_sym_with] = ACTIONS(670), - }, - [4307] = { - [sym_anonymous_name] = STATE(4774), - [sym_name] = ACTIONS(5321), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), - }, - [4308] = { - [sym_where_clause] = STATE(2925), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(4901), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(4903), - [anon_sym_with] = ACTIONS(678), - }, - [4309] = { - [sym__expr1] = STATE(3559), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3560), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(4309), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(3135), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(3138), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(3141), - [anon_sym_let] = ACTIONS(3144), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), - }, - [4310] = { - [sym_atomic_expr] = STATE(4018), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(4905), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - }, - [4311] = { - [sym_expr] = STATE(4022), - [sym__expr1] = STATE(4735), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4736), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4737), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3482), - [aux_sym__application_repeat1] = STATE(4275), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4871), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4312] = { - [sym__application] = STATE(4026), - [sym__expr2] = STATE(1251), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [aux_sym__application_repeat1] = STATE(4776), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(4905), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5323), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - }, - [4313] = { - [sym_semi] = STATE(4777), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4778), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - }, - [4314] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(4905), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5323), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - }, - [4315] = { - [sym_expr] = STATE(4016), - [sym__expr1] = STATE(4281), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4282), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4283), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2613), - [aux_sym__application_repeat1] = STATE(2620), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3129), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3123), - [anon_sym_forall] = ACTIONS(3125), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4316] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4235), - [sym__declaration] = STATE(4779), - [sym_function_clause] = STATE(1059), - [sym__declarations1] = STATE(2987), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_module] = ACTIONS(670), + [4779] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + [anon_sym_with] = ACTIONS(164), }, - [4317] = { - [sym_anonymous_name] = STATE(4780), - [sym_name] = ACTIONS(5325), - [anon_sym__] = ACTIONS(676), + [4780] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), + [anon_sym_with] = ACTIONS(168), }, - [4318] = { - [sym_where_clause] = STATE(2989), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(4913), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_module] = ACTIONS(4915), + [4781] = { + [sym_expr] = STATE(5097), + [sym__expr1] = STATE(4777), + [sym__application] = STATE(3420), + [sym__expr2] = STATE(3421), + [sym__atomic_exprs1] = STATE(4778), + [sym_atomic_expr] = STATE(4779), + [sym__atomic_expr_curly] = STATE(4780), + [sym__atomic_expr_no_curly] = STATE(4780), + [sym_tele_arrow] = STATE(4781), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3424), + [aux_sym__application_repeat1] = STATE(4782), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(5296), + [sym_set_n] = ACTIONS(5296), + [sym_name_at] = ACTIONS(5298), + [sym_qualified_name] = ACTIONS(5296), + [anon_sym__] = ACTIONS(5296), + [anon_sym_DOT] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(5302), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5304), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3969), + [anon_sym_forall] = ACTIONS(3971), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(5296), + [anon_sym_Prop] = ACTIONS(5296), + [anon_sym_Set] = ACTIONS(5296), + [anon_sym_quote] = ACTIONS(5296), + [anon_sym_quoteTerm] = ACTIONS(5296), + [anon_sym_unquote] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_LPAREN_PIPE] = ACTIONS(5308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5296), }, - [4319] = { - [sym__expr1] = STATE(853), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3566), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(4319), - [aux_sym__expr1_repeat1] = STATE(856), - [aux_sym__application_repeat1] = STATE(857), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [sym_name_at] = ACTIONS(3135), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(3138), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(3141), - [anon_sym_let] = ACTIONS(3144), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), + [4782] = { + [sym__expr2] = STATE(4214), + [sym_atomic_expr] = STATE(4779), + [sym__atomic_expr_curly] = STATE(4780), + [sym__atomic_expr_no_curly] = STATE(4780), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(5296), + [sym_set_n] = ACTIONS(5296), + [sym_name_at] = ACTIONS(5298), + [sym_qualified_name] = ACTIONS(5296), + [anon_sym__] = ACTIONS(5296), + [anon_sym_DOT] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5604), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5606), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3969), + [anon_sym_forall] = ACTIONS(3971), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(5296), + [anon_sym_Prop] = ACTIONS(5296), + [anon_sym_Set] = ACTIONS(5296), + [anon_sym_quote] = ACTIONS(5296), + [anon_sym_quoteTerm] = ACTIONS(5296), + [anon_sym_unquote] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5608), + [anon_sym_LPAREN_PIPE] = ACTIONS(5308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5296), }, - [4320] = { - [sym_semi] = STATE(3569), - [aux_sym__declarations1_repeat1] = STATE(4320), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), + [4783] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), }, - [4321] = { - [ts_builtin_sym_end] = ACTIONS(4821), - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_RBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_RPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_COLON] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - [anon_sym_rewrite] = ACTIONS(4821), - [anon_sym_with] = ACTIONS(4821), + [4784] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), }, - [4322] = { + [4785] = { + [sym__application] = STATE(5098), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [4323] = { - [sym_lambda_bindings] = STATE(3127), - [sym_untyped_bindings] = STATE(4323), - [sym_typed_bindings] = STATE(4323), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3667), - [anon_sym_DOT_DOT] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3671), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_RPAREN] = ACTIONS(464), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), - }, - [4324] = { - [sym_expr] = STATE(3144), - [sym__expr1] = STATE(4344), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4345), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4346), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3588), - [aux_sym__application_repeat1] = STATE(4347), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4925), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4927), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), }, - [4325] = { - [sym_rewrite_equations] = STATE(4783), - [sym_with_expressions] = STATE(1929), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [4786] = { + [sym__application] = STATE(5099), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_RPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(3183), - [anon_sym_with] = ACTIONS(5329), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [4326] = { - [sym_where_clause] = STATE(1933), - [sym_rhs] = STATE(3629), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [4787] = { + [sym_binding_name] = STATE(5100), + [sym__application] = STATE(5101), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5331), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4245), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(5331), - [anon_sym_module] = ACTIONS(4247), - [anon_sym_with] = ACTIONS(170), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [4327] = { - [sym__expr1] = STATE(4325), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4326), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(4785), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [4788] = { + [sym__layout_semicolon] = ACTIONS(1356), + [sym__layout_close_brace] = ACTIONS(1356), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), }, - [4328] = { + [4789] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(5624), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5626), + }, + [4790] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(5628), + [sym_comment] = ACTIONS(86), + }, + [4791] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5624), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5630), + }, + [4792] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(5106), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), + }, + [4793] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5624), + }, + [4794] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5632), + }, + [4795] = { + [sym_expr] = STATE(5104), + [sym__expr1] = STATE(4805), + [sym__application] = STATE(3436), + [sym__expr2] = STATE(3437), + [sym__atomic_exprs1] = STATE(4806), + [sym_atomic_expr] = STATE(4807), + [sym__atomic_expr_curly] = STATE(4808), + [sym__atomic_expr_no_curly] = STATE(4808), + [sym_tele_arrow] = STATE(4809), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3440), + [aux_sym__application_repeat1] = STATE(4810), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(5332), + [sym_set_n] = ACTIONS(5332), + [sym_name_at] = ACTIONS(5334), + [sym_qualified_name] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_DOT] = ACTIONS(5336), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(5338), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5340), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3987), + [anon_sym_forall] = ACTIONS(3989), + [anon_sym_let] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(5332), + [anon_sym_Prop] = ACTIONS(5332), + [anon_sym_Set] = ACTIONS(5332), + [anon_sym_quote] = ACTIONS(5332), + [anon_sym_quoteTerm] = ACTIONS(5332), + [anon_sym_unquote] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_LPAREN_PIPE] = ACTIONS(5344), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5332), + }, + [4796] = { + [sym__application] = STATE(5108), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5333), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(5320), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), }, - [4329] = { - [sym_lambda_bindings] = STATE(3168), - [sym_untyped_bindings] = STATE(4329), - [sym_typed_bindings] = STATE(4329), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3717), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3721), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3723), - [anon_sym_RPAREN] = ACTIONS(464), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [4797] = { + [sym__layout_semicolon] = ACTIONS(878), + [sym__layout_close_brace] = ACTIONS(878), + [sym_literal] = ACTIONS(30), + [sym_set_n] = ACTIONS(30), + [anon_sym_SEMI] = ACTIONS(30), + [sym_name_at] = ACTIONS(30), + [sym_qualified_name] = ACTIONS(30), + [anon_sym__] = ACTIONS(30), + [anon_sym_DOT] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(30), + [anon_sym_LBRACE_LBRACE] = ACTIONS(30), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(30), + [anon_sym_EQ] = ACTIONS(30), + [anon_sym_PIPE] = ACTIONS(30), + [anon_sym_BSLASH] = ACTIONS(30), + [anon_sym_where] = ACTIONS(30), + [anon_sym_forall] = ACTIONS(30), + [anon_sym_let] = ACTIONS(30), + [anon_sym_in] = ACTIONS(30), + [anon_sym_QMARK] = ACTIONS(30), + [anon_sym_Prop] = ACTIONS(30), + [anon_sym_Set] = ACTIONS(30), + [anon_sym_quote] = ACTIONS(30), + [anon_sym_quoteTerm] = ACTIONS(30), + [anon_sym_unquote] = ACTIONS(30), + [anon_sym_LPAREN] = ACTIONS(30), + [anon_sym_LPAREN_PIPE] = ACTIONS(30), + [anon_sym_DOT_DOT_DOT] = ACTIONS(30), + [anon_sym_COLON] = ACTIONS(30), + [anon_sym_module] = ACTIONS(30), }, - [4330] = { - [sym_expr] = STATE(3185), - [sym__expr1] = STATE(4062), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4063), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4064), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3594), - [aux_sym__application_repeat1] = STATE(4065), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4725), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4727), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4798] = { + [sym_atomic_expr] = STATE(5112), + [sym__atomic_expr_curly] = STATE(4808), + [sym__atomic_expr_no_curly] = STATE(4808), + [sym_literal] = ACTIONS(5332), + [sym_set_n] = ACTIONS(5332), + [sym_name_at] = ACTIONS(5334), + [sym_qualified_name] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_DOT] = ACTIONS(5334), + [anon_sym_LBRACE] = ACTIONS(5634), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5636), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(5332), + [anon_sym_Prop] = ACTIONS(5332), + [anon_sym_Set] = ACTIONS(5332), + [anon_sym_quote] = ACTIONS(5332), + [anon_sym_quoteTerm] = ACTIONS(5332), + [anon_sym_unquote] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LPAREN_PIPE] = ACTIONS(5344), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5332), }, - [4331] = { - [sym_where_clause] = STATE(1985), - [sym_rhs] = STATE(3639), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [4799] = { + [sym_atomic_expr] = STATE(5112), + [sym__atomic_expr_curly] = STATE(4808), + [sym__atomic_expr_no_curly] = STATE(4808), + [sym_literal] = ACTIONS(5332), + [sym_set_n] = ACTIONS(5332), + [sym_name_at] = ACTIONS(5334), + [sym_qualified_name] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_DOT] = ACTIONS(5334), + [anon_sym_LBRACE] = ACTIONS(5640), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5642), + [sym_comment] = ACTIONS(18), + [anon_sym_QMARK] = ACTIONS(5332), + [anon_sym_Prop] = ACTIONS(5332), + [anon_sym_Set] = ACTIONS(5332), + [anon_sym_quote] = ACTIONS(5332), + [anon_sym_quoteTerm] = ACTIONS(5332), + [anon_sym_unquote] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5644), + [anon_sym_LPAREN_PIPE] = ACTIONS(5344), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5332), + }, + [4800] = { + [sym_expr] = STATE(5117), + [sym__expr1] = STATE(38), + [sym__application] = STATE(170), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(5646), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3781), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4257), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(3781), - [anon_sym_module] = ACTIONS(4259), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [4332] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4331), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(4787), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [4801] = { + [sym_expr] = STATE(5118), + [sym__expr1] = STATE(60), + [sym__application] = STATE(185), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5648), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), + }, + [4802] = { + [sym_expr] = STATE(5119), + [sym__expr1] = STATE(110), + [sym__application] = STATE(213), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(5648), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), + }, + [4803] = { + [sym_expr] = STATE(5120), + [sym__expr1] = STATE(126), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(127), + [sym_atomic_expr] = STATE(128), + [sym__atomic_expr_curly] = STATE(129), + [sym__atomic_expr_no_curly] = STATE(129), + [sym_tele_arrow] = STATE(130), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(131), + [aux_sym__application_repeat1] = STATE(132), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(130), + [sym_set_n] = ACTIONS(130), + [sym_name_at] = ACTIONS(132), + [sym_qualified_name] = ACTIONS(130), + [anon_sym__] = ACTIONS(130), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(136), + [anon_sym_LBRACE_LBRACE] = ACTIONS(138), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(140), + [anon_sym_forall] = ACTIONS(142), + [anon_sym_let] = ACTIONS(144), + [anon_sym_QMARK] = ACTIONS(130), + [anon_sym_Prop] = ACTIONS(130), + [anon_sym_Set] = ACTIONS(130), + [anon_sym_quote] = ACTIONS(130), + [anon_sym_quoteTerm] = ACTIONS(130), + [anon_sym_unquote] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LPAREN_PIPE] = ACTIONS(148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(130), + }, + [4804] = { + [sym__layout_semicolon] = ACTIONS(1360), + [sym__layout_close_brace] = ACTIONS(1360), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + }, + [4805] = { + [sym__layout_semicolon] = ACTIONS(280), + [sym__layout_close_brace] = ACTIONS(280), + [sym_literal] = ACTIONS(1040), + [sym_set_n] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [sym_name_at] = ACTIONS(1040), + [sym_qualified_name] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(5650), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_forall] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_Prop] = ACTIONS(1040), + [anon_sym_Set] = ACTIONS(1040), + [anon_sym_quote] = ACTIONS(1040), + [anon_sym_quoteTerm] = ACTIONS(1040), + [anon_sym_unquote] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_LPAREN_PIPE] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + }, + [4806] = { + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(5652), + [anon_sym_PIPE] = ACTIONS(162), + }, + [4807] = { + [sym__layout_semicolon] = ACTIONS(962), + [sym__layout_close_brace] = ACTIONS(962), + [sym_literal] = ACTIONS(166), + [sym_set_n] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(164), + [sym_name_at] = ACTIONS(166), + [sym_qualified_name] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(166), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_where] = ACTIONS(164), + [anon_sym_forall] = ACTIONS(166), + [anon_sym_let] = ACTIONS(166), + [anon_sym_in] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_Prop] = ACTIONS(166), + [anon_sym_Set] = ACTIONS(166), + [anon_sym_quote] = ACTIONS(166), + [anon_sym_quoteTerm] = ACTIONS(166), + [anon_sym_unquote] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_LPAREN_PIPE] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON] = ACTIONS(164), + [anon_sym_module] = ACTIONS(164), + }, + [4808] = { + [sym__layout_semicolon] = ACTIONS(964), + [sym__layout_close_brace] = ACTIONS(964), + [sym_literal] = ACTIONS(168), + [sym_set_n] = ACTIONS(168), + [anon_sym_SEMI] = ACTIONS(168), + [sym_name_at] = ACTIONS(168), + [sym_qualified_name] = ACTIONS(168), + [anon_sym__] = ACTIONS(168), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(168), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(168), + [anon_sym_PIPE] = ACTIONS(168), + [anon_sym_BSLASH] = ACTIONS(168), + [anon_sym_where] = ACTIONS(168), + [anon_sym_forall] = ACTIONS(168), + [anon_sym_let] = ACTIONS(168), + [anon_sym_in] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(168), + [anon_sym_Prop] = ACTIONS(168), + [anon_sym_Set] = ACTIONS(168), + [anon_sym_quote] = ACTIONS(168), + [anon_sym_quoteTerm] = ACTIONS(168), + [anon_sym_unquote] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_LPAREN_PIPE] = ACTIONS(168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON] = ACTIONS(168), + [anon_sym_module] = ACTIONS(168), }, - [4333] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5335), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [4809] = { + [sym_expr] = STATE(5122), + [sym__expr1] = STATE(4805), + [sym__application] = STATE(3436), + [sym__expr2] = STATE(3437), + [sym__atomic_exprs1] = STATE(4806), + [sym_atomic_expr] = STATE(4807), + [sym__atomic_expr_curly] = STATE(4808), + [sym__atomic_expr_no_curly] = STATE(4808), + [sym_tele_arrow] = STATE(4809), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3440), + [aux_sym__application_repeat1] = STATE(4810), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(5332), + [sym_set_n] = ACTIONS(5332), + [sym_name_at] = ACTIONS(5334), + [sym_qualified_name] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_DOT] = ACTIONS(5336), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(5338), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5340), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3987), + [anon_sym_forall] = ACTIONS(3989), + [anon_sym_let] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(5332), + [anon_sym_Prop] = ACTIONS(5332), + [anon_sym_Set] = ACTIONS(5332), + [anon_sym_quote] = ACTIONS(5332), + [anon_sym_quoteTerm] = ACTIONS(5332), + [anon_sym_unquote] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_LPAREN_PIPE] = ACTIONS(5344), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5332), }, - [4334] = { - [sym_lambda_bindings] = STATE(3200), - [sym_untyped_bindings] = STATE(4334), - [sym_typed_bindings] = STATE(4334), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3759), - [anon_sym_DOT_DOT] = ACTIONS(3759), - [anon_sym_LBRACE] = ACTIONS(3761), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3763), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3765), - [anon_sym_RPAREN] = ACTIONS(464), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [4810] = { + [sym__expr2] = STATE(4231), + [sym_atomic_expr] = STATE(4807), + [sym__atomic_expr_curly] = STATE(4808), + [sym__atomic_expr_no_curly] = STATE(4808), + [aux_sym__application_repeat1] = STATE(230), + [sym_literal] = ACTIONS(5332), + [sym_set_n] = ACTIONS(5332), + [sym_name_at] = ACTIONS(5334), + [sym_qualified_name] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_DOT] = ACTIONS(5334), + [anon_sym_LBRACE] = ACTIONS(5634), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5636), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_PIPE] = ACTIONS(184), + [anon_sym_BSLASH] = ACTIONS(3987), + [anon_sym_forall] = ACTIONS(3989), + [anon_sym_let] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(5332), + [anon_sym_Prop] = ACTIONS(5332), + [anon_sym_Set] = ACTIONS(5332), + [anon_sym_quote] = ACTIONS(5332), + [anon_sym_quoteTerm] = ACTIONS(5332), + [anon_sym_unquote] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LPAREN_PIPE] = ACTIONS(5344), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5332), }, - [4335] = { - [sym_expr] = STATE(3217), - [sym__expr1] = STATE(3601), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3602), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3603), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3604), - [aux_sym__application_repeat1] = STATE(3605), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4199), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [4811] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), }, - [4336] = { - [sym_where_clause] = STATE(2025), - [sym_rhs] = STATE(3649), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4269), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(3187), - [anon_sym_module] = ACTIONS(4271), + [4812] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), }, - [4337] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4336), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(4789), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), + [4813] = { + [sym__application] = STATE(5123), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [4338] = { - [sym_expr] = STATE(3227), - [sym__expr1] = STATE(3601), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3602), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3603), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3604), - [aux_sym__application_repeat1] = STATE(3605), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4199), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4339] = { - [sym_atomic_expr] = STATE(3228), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(4923), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), }, - [4340] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(2245), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(4923), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), + [4814] = { + [sym__application] = STATE(5124), + [sym__expr2] = STATE(62), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(325), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name_at] = ACTIONS(410), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - }, - [4341] = { - [sym_semi] = STATE(3609), - [aux_sym__declarations1_repeat1] = STATE(4341), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_rewrite] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), - }, - [4342] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4925), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4925), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4343] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4925), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4925), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4547), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4549), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4344] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5337), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), - }, - [4345] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5339), - [anon_sym_PIPE] = ACTIONS(162), - }, - [4346] = { - [sym_expr] = STATE(3881), - [sym__expr1] = STATE(4344), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4345), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4346), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3588), - [aux_sym__application_repeat1] = STATE(4347), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4925), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4927), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [anon_sym_BSLASH] = ACTIONS(416), + [anon_sym_forall] = ACTIONS(418), + [anon_sym_let] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [4347] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4925), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4925), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), + [4815] = { + [sym_binding_name] = STATE(5125), + [sym__application] = STATE(5126), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(323), + [sym__atomic_expr_curly] = STATE(324), + [sym__atomic_expr_no_curly] = STATE(324), + [aux_sym__application_repeat1] = STATE(336), + [sym_literal] = ACTIONS(408), + [sym_set_n] = ACTIONS(408), + [sym_name] = ACTIONS(428), + [sym_name_at] = ACTIONS(430), + [sym_qualified_name] = ACTIONS(408), + [anon_sym__] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(414), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4348] = { - [sym_expr] = STATE(4610), - [sym__expr1] = STATE(4344), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4345), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4346), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3588), - [aux_sym__application_repeat1] = STATE(4347), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4925), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4927), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4349] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(4229), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5341), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - }, - [4350] = { - [sym__application] = STATE(3139), - [sym__expr2] = STATE(1235), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [sym_non_absurd_lambda_clause] = STATE(3142), - [sym_absurd_lambda_clause] = STATE(3142), - [sym_lambda_clause] = STATE(4612), - [aux_sym__application_repeat1] = STATE(3616), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(4229), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4231), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - [sym_catchall_pragma] = ACTIONS(4233), - }, - [4351] = { - [sym_semi] = STATE(4350), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4792), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_with] = ACTIONS(2001), - }, - [4352] = { - [sym_expr] = STATE(4543), - [sym__expr1] = STATE(3620), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3621), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3622), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1722), - [aux_sym__application_repeat1] = STATE(3623), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4237), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4239), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2145), - [anon_sym_forall] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_forall] = ACTIONS(436), + [anon_sym_let] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_Prop] = ACTIONS(408), + [anon_sym_Set] = ACTIONS(408), + [anon_sym_quote] = ACTIONS(408), + [anon_sym_quoteTerm] = ACTIONS(408), + [anon_sym_unquote] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LPAREN_PIPE] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(408), }, - [4353] = { - [sym_semi] = STATE(4793), - [aux_sym__declarations1_repeat1] = STATE(4794), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_with] = ACTIONS(1376), + [4816] = { + [sym__layout_semicolon] = ACTIONS(1356), + [sym__layout_close_brace] = ACTIONS(1356), + [sym_literal] = ACTIONS(882), + [sym_set_n] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(882), + [sym_name_at] = ACTIONS(882), + [sym_qualified_name] = ACTIONS(882), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_LBRACE_LBRACE] = ACTIONS(882), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_where] = ACTIONS(882), + [anon_sym_forall] = ACTIONS(882), + [anon_sym_let] = ACTIONS(882), + [anon_sym_in] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_Prop] = ACTIONS(882), + [anon_sym_Set] = ACTIONS(882), + [anon_sym_quote] = ACTIONS(882), + [anon_sym_quoteTerm] = ACTIONS(882), + [anon_sym_unquote] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LPAREN_PIPE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), }, - [4354] = { + [4817] = { + [sym__layout_semicolon] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(5654), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5343), - }, - [4355] = { - [sym_expr] = STATE(4626), - [sym__expr1] = STATE(4062), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4063), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4064), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3594), - [aux_sym__application_repeat1] = STATE(4065), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4725), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4727), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4356] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(4249), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5345), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - }, - [4357] = { - [sym__application] = STATE(3180), - [sym__expr2] = STATE(1251), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [sym_non_absurd_lambda_clause] = STATE(3183), - [sym_absurd_lambda_clause] = STATE(3183), - [sym_lambda_clause] = STATE(4628), - [aux_sym__application_repeat1] = STATE(3635), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(4249), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4251), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - [sym_catchall_pragma] = ACTIONS(4253), + [anon_sym_COLON] = ACTIONS(5656), }, - [4358] = { - [sym_semi] = STATE(4357), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4797), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - }, - [4359] = { - [sym_semi] = STATE(4798), - [aux_sym__declarations1_repeat1] = STATE(4799), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - }, - [4360] = { + [4818] = { + [sym_semi] = STATE(764), + [sym__layout_semicolon] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(5658), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5347), - }, - [4361] = { - [sym_expr] = STATE(4642), - [sym__expr1] = STATE(3601), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3602), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3603), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3604), - [aux_sym__application_repeat1] = STATE(3605), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4199), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4362] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(4261), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(4261), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5349), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), }, - [4363] = { - [sym__application] = STATE(3212), - [sym__expr2] = STATE(1270), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [sym_non_absurd_lambda_clause] = STATE(3215), - [sym_absurd_lambda_clause] = STATE(3215), - [sym_lambda_clause] = STATE(4644), - [aux_sym__application_repeat1] = STATE(3645), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(4261), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(4261), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4263), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), - [sym_catchall_pragma] = ACTIONS(4265), + [4819] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5654), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5660), }, - [4364] = { - [sym_semi] = STATE(4363), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4802), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_RPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), + [4820] = { + [sym__application] = STATE(794), + [sym__expr2] = STATE(795), + [sym_atomic_expr] = STATE(796), + [sym__atomic_expr_curly] = STATE(797), + [sym__atomic_expr_no_curly] = STATE(797), + [sym_non_absurd_lambda_clause] = STATE(798), + [sym_absurd_lambda_clause] = STATE(798), + [sym_lambda_clause] = STATE(799), + [sym_lambda_where_clauses] = STATE(5131), + [aux_sym__application_repeat1] = STATE(801), + [sym_literal] = ACTIONS(980), + [sym_set_n] = ACTIONS(980), + [sym_name_at] = ACTIONS(982), + [sym_qualified_name] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(986), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_forall] = ACTIONS(992), + [anon_sym_let] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_Prop] = ACTIONS(980), + [anon_sym_Set] = ACTIONS(980), + [anon_sym_quote] = ACTIONS(980), + [anon_sym_quoteTerm] = ACTIONS(980), + [anon_sym_unquote] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN_PIPE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_catchall_pragma] = ACTIONS(1000), }, - [4365] = { - [sym_semi] = STATE(4803), - [aux_sym__declarations1_repeat1] = STATE(4804), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), + [4821] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5654), }, - [4366] = { + [4822] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5351), + [anon_sym_COLON] = ACTIONS(5662), }, - [4367] = { + [4823] = { + [sym_expr] = STATE(5129), + [sym__expr1] = STATE(4155), + [sym__application] = STATE(3455), + [sym__expr2] = STATE(3456), + [sym__atomic_exprs1] = STATE(4156), + [sym_atomic_expr] = STATE(3458), + [sym__atomic_expr_curly] = STATE(3459), + [sym__atomic_expr_no_curly] = STATE(3459), + [sym_tele_arrow] = STATE(4157), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3461), + [aux_sym__application_repeat1] = STATE(3462), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3997), + [sym_set_n] = ACTIONS(3997), + [sym_name_at] = ACTIONS(3999), + [sym_qualified_name] = ACTIONS(3997), + [anon_sym__] = ACTIONS(3997), + [anon_sym_DOT] = ACTIONS(4001), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(4007), + [anon_sym_forall] = ACTIONS(4009), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_Prop] = ACTIONS(3997), + [anon_sym_Set] = ACTIONS(3997), + [anon_sym_quote] = ACTIONS(3997), + [anon_sym_quoteTerm] = ACTIONS(3997), + [anon_sym_unquote] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(4013), + [anon_sym_LPAREN_PIPE] = ACTIONS(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3997), + }, + [4824] = { + [sym__application] = STATE(5133), + [sym__expr2] = STATE(40), + [sym_atomic_expr] = STATE(352), + [sym__atomic_expr_curly] = STATE(353), + [sym__atomic_expr_no_curly] = STATE(353), + [aux_sym__application_repeat1] = STATE(354), [sym_literal] = ACTIONS(460), [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), + [sym_name_at] = ACTIONS(462), [sym_qualified_name] = ACTIONS(460), [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5353), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_LBRACE_LBRACE] = ACTIONS(466), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_forall] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), [anon_sym_QMARK] = ACTIONS(460), [anon_sym_Prop] = ACTIONS(460), [anon_sym_Set] = ACTIONS(460), [anon_sym_quote] = ACTIONS(460), [anon_sym_quoteTerm] = ACTIONS(460), [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LPAREN_PIPE] = ACTIONS(476), [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), }, - [4368] = { - [sym_lambda_bindings] = STATE(3705), - [sym_untyped_bindings] = STATE(4368), - [sym_typed_bindings] = STATE(4368), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_LBRACE] = ACTIONS(4375), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4377), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_PIPE_RPAREN] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), + [4825] = { + [sym__layout_semicolon] = ACTIONS(1360), + [sym__layout_close_brace] = ACTIONS(1360), + [sym_literal] = ACTIONS(1038), + [sym_set_n] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [sym_name_at] = ACTIONS(1038), + [sym_qualified_name] = ACTIONS(1038), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_forall] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1038), + [anon_sym_Prop] = ACTIONS(1038), + [anon_sym_Set] = ACTIONS(1038), + [anon_sym_quote] = ACTIONS(1038), + [anon_sym_quoteTerm] = ACTIONS(1038), + [anon_sym_unquote] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LPAREN_PIPE] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), }, - [4369] = { - [sym_expr] = STATE(3722), - [sym__expr1] = STATE(4409), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(4410), - [sym_atomic_expr] = STATE(3737), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_tele_arrow] = STATE(4411), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3662), - [aux_sym__application_repeat1] = STATE(4412), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4965), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4389), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), + [4826] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym__layout_close_brace] = ACTIONS(1444), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), }, - [4370] = { - [sym_rewrite_equations] = STATE(4808), - [sym_with_expressions] = STATE(3743), - [sym_literal] = ACTIONS(152), - [sym_set_n] = ACTIONS(152), - [anon_sym_SEMI] = ACTIONS(152), - [sym_name_at] = ACTIONS(152), - [sym_qualified_name] = ACTIONS(152), - [anon_sym__] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(152), + [4827] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_where] = ACTIONS(152), - [anon_sym_forall] = ACTIONS(152), - [anon_sym_let] = ACTIONS(152), - [anon_sym_in] = ACTIONS(152), - [anon_sym_QMARK] = ACTIONS(152), - [anon_sym_Prop] = ACTIONS(152), - [anon_sym_Set] = ACTIONS(152), - [anon_sym_quote] = ACTIONS(152), - [anon_sym_quoteTerm] = ACTIONS(152), - [anon_sym_unquote] = ACTIONS(152), - [anon_sym_LPAREN] = ACTIONS(152), - [anon_sym_LPAREN_PIPE] = ACTIONS(152), - [anon_sym_PIPE_RPAREN] = ACTIONS(152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(152), - [anon_sym_COLON] = ACTIONS(152), - [anon_sym_module] = ACTIONS(152), - [anon_sym_rewrite] = ACTIONS(3229), - [anon_sym_with] = ACTIONS(5355), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [4371] = { - [sym_where_clause] = STATE(3747), - [sym_rhs] = STATE(3748), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [4828] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5357), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4399), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_PIPE_RPAREN] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_module] = ACTIONS(4401), - [anon_sym_with] = ACTIONS(170), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [4372] = { - [sym__expr1] = STATE(4370), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4371), - [sym__declaration] = STATE(2785), - [sym_function_clause] = STATE(2786), - [aux_sym_source_file_repeat1] = STATE(4810), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), + [4829] = { + [anon_sym_RBRACE] = ACTIONS(5664), + [sym_comment] = ACTIONS(86), }, - [4373] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [4830] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5666), + [sym_comment] = ACTIONS(86), }, - [4374] = { - [sym_lambda_bindings] = STATE(3755), - [sym_untyped_bindings] = STATE(4374), - [sym_typed_bindings] = STATE(4374), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(4433), - [anon_sym_DOT_DOT] = ACTIONS(4433), - [anon_sym_LBRACE] = ACTIONS(4435), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4437), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_PIPE_RPAREN] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [4831] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5666), }, - [4375] = { - [sym_expr] = STATE(3772), - [sym__expr1] = STATE(4458), - [sym__application] = STATE(1849), - [sym__expr2] = STATE(1850), - [sym__atomic_exprs1] = STATE(4459), - [sym_atomic_expr] = STATE(3787), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_tele_arrow] = STATE(4460), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3668), - [aux_sym__application_repeat1] = STATE(4461), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(5007), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4449), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), + [4832] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(5666), }, - [4376] = { - [sym_where_clause] = STATE(3794), - [sym_rhs] = STATE(3795), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), + [4833] = { + [sym__layout_semicolon] = ACTIONS(5216), + [sym__layout_close_brace] = ACTIONS(5216), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + }, + [4834] = { + [sym__layout_semicolon] = ACTIONS(5218), + [sym__layout_close_brace] = ACTIONS(5218), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + }, + [4835] = { + [sym_expr] = STATE(3821), + [sym__expr1] = STATE(4271), + [sym__application] = STATE(1126), + [sym__expr2] = STATE(1127), + [sym__atomic_exprs1] = STATE(4272), + [sym_atomic_expr] = STATE(1885), + [sym__atomic_expr_curly] = STATE(1886), + [sym__atomic_expr_no_curly] = STATE(1886), + [sym_tele_arrow] = STATE(4273), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2488), + [aux_sym__application_repeat1] = STATE(2495), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2318), + [sym_set_n] = ACTIONS(2318), + [sym_name_at] = ACTIONS(2993), + [sym_qualified_name] = ACTIONS(2318), + [anon_sym__] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2326), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2987), + [anon_sym_forall] = ACTIONS(2989), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2318), + [anon_sym_Prop] = ACTIONS(2318), + [anon_sym_Set] = ACTIONS(2318), + [anon_sym_quote] = ACTIONS(2318), + [anon_sym_quoteTerm] = ACTIONS(2318), + [anon_sym_unquote] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LPAREN_PIPE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2318), + }, + [4836] = { + [sym_expr] = STATE(4386), + [sym__expr1] = STATE(4277), + [sym__application] = STATE(1110), + [sym__expr2] = STATE(1111), + [sym__atomic_exprs1] = STATE(4278), + [sym_atomic_expr] = STATE(2696), + [sym__atomic_expr_curly] = STATE(2697), + [sym__atomic_expr_no_curly] = STATE(2697), + [sym_tele_arrow] = STATE(4279), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2482), + [aux_sym__application_repeat1] = STATE(4280), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3191), + [sym_set_n] = ACTIONS(3191), + [sym_name_at] = ACTIONS(4842), + [sym_qualified_name] = ACTIONS(3191), + [anon_sym__] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(4844), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3199), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(2979), + [anon_sym_forall] = ACTIONS(2981), + [anon_sym_let] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_Prop] = ACTIONS(3191), + [anon_sym_Set] = ACTIONS(3191), + [anon_sym_quote] = ACTIONS(3191), + [anon_sym_quoteTerm] = ACTIONS(3191), + [anon_sym_unquote] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LPAREN_PIPE] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3191), + }, + [4837] = { + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_PIPE_RPAREN] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + [anon_sym_rewrite] = ACTIONS(4512), + [anon_sym_with] = ACTIONS(4512), + }, + [4838] = { + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_PIPE_RPAREN] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), + }, + [4839] = { + [sym_expr] = STATE(5136), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5361), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4457), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_PIPE_RPAREN] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_module] = ACTIONS(4459), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4377] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4376), - [sym__declaration] = STATE(2805), - [sym_function_clause] = STATE(2806), - [aux_sym_source_file_repeat1] = STATE(4813), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [4840] = { + [sym_expr] = STATE(5137), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), + }, + [4841] = { + [sym_expr] = STATE(5138), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4378] = { - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5363), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [4842] = { + [anon_sym_RBRACE] = ACTIONS(5668), + [sym_comment] = ACTIONS(86), }, - [4379] = { - [sym_lambda_bindings] = STATE(3802), - [sym_untyped_bindings] = STATE(4379), - [sym_typed_bindings] = STATE(4379), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(4491), - [anon_sym_DOT_DOT] = ACTIONS(4491), - [anon_sym_LBRACE] = ACTIONS(4493), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4495), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_PIPE_RPAREN] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), + [4843] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5668), + [sym_comment] = ACTIONS(86), }, - [4380] = { - [sym_expr] = STATE(3819), - [sym__expr1] = STATE(3675), - [sym__application] = STATE(1868), - [sym__expr2] = STATE(1869), - [sym__atomic_exprs1] = STATE(3676), - [sym_atomic_expr] = STATE(1871), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_tele_arrow] = STATE(3677), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3678), - [aux_sym__application_repeat1] = STATE(3679), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(4297), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2309), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), + [4844] = { + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_PIPE_RPAREN] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), }, - [4381] = { - [sym_where_clause] = STATE(3827), - [sym_rhs] = STATE(3828), - [sym_literal] = ACTIONS(170), - [sym_set_n] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(170), - [sym_name_at] = ACTIONS(170), - [sym_qualified_name] = ACTIONS(170), - [anon_sym__] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(170), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(170), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3233), - [anon_sym_BSLASH] = ACTIONS(170), - [anon_sym_where] = ACTIONS(4499), - [anon_sym_forall] = ACTIONS(170), - [anon_sym_let] = ACTIONS(170), - [anon_sym_in] = ACTIONS(170), - [anon_sym_QMARK] = ACTIONS(170), - [anon_sym_Prop] = ACTIONS(170), - [anon_sym_Set] = ACTIONS(170), - [anon_sym_quote] = ACTIONS(170), - [anon_sym_quoteTerm] = ACTIONS(170), - [anon_sym_unquote] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_LPAREN_PIPE] = ACTIONS(170), - [anon_sym_PIPE_RPAREN] = ACTIONS(170), - [anon_sym_DOT_DOT_DOT] = ACTIONS(170), - [anon_sym_COLON] = ACTIONS(3233), - [anon_sym_module] = ACTIONS(4501), + [4845] = { + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_PIPE_RPAREN] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + [anon_sym_with] = ACTIONS(2965), }, - [4382] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4381), - [sym__declaration] = STATE(2831), - [sym_function_clause] = STATE(2832), - [aux_sym_source_file_repeat1] = STATE(4815), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_PIPE_RPAREN] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), + [4846] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5668), }, - [4383] = { - [sym_expr] = STATE(3830), - [sym__expr1] = STATE(3675), - [sym__application] = STATE(1868), - [sym__expr2] = STATE(1869), - [sym__atomic_exprs1] = STATE(3676), - [sym_atomic_expr] = STATE(1871), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_tele_arrow] = STATE(3677), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3678), - [aux_sym__application_repeat1] = STATE(3679), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(4297), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2309), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), + [4847] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_PIPE_RPAREN] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), }, - [4384] = { - [sym_atomic_expr] = STATE(3831), - [sym__atomic_expr_curly] = STATE(2846), - [sym__atomic_expr_no_curly] = STATE(2846), - [sym_literal] = ACTIONS(3345), - [sym_set_n] = ACTIONS(3345), - [sym_name_at] = ACTIONS(4949), - [sym_qualified_name] = ACTIONS(3345), - [anon_sym__] = ACTIONS(3345), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3351), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3345), - [anon_sym_Prop] = ACTIONS(3345), - [anon_sym_Set] = ACTIONS(3345), - [anon_sym_quote] = ACTIONS(3345), - [anon_sym_quoteTerm] = ACTIONS(3345), - [anon_sym_unquote] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_LPAREN_PIPE] = ACTIONS(3355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3345), + [4848] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_PIPE_RPAREN] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), }, - [4385] = { - [sym__expr2] = STATE(2848), - [sym_atomic_expr] = STATE(2845), - [sym__atomic_expr_curly] = STATE(2846), - [sym__atomic_expr_no_curly] = STATE(2846), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(3345), - [sym_set_n] = ACTIONS(3345), - [sym_name_at] = ACTIONS(4949), - [sym_qualified_name] = ACTIONS(3345), - [anon_sym__] = ACTIONS(3345), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3351), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(3345), - [anon_sym_Prop] = ACTIONS(3345), - [anon_sym_Set] = ACTIONS(3345), - [anon_sym_quote] = ACTIONS(3345), - [anon_sym_quoteTerm] = ACTIONS(3345), - [anon_sym_unquote] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_LPAREN_PIPE] = ACTIONS(3355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3345), + [4849] = { + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_PIPE_RPAREN] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + [anon_sym_with] = ACTIONS(3017), }, - [4386] = { - [anon_sym_RBRACE] = ACTIONS(5365), - [sym_comment] = ACTIONS(86), + [4850] = { + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_PIPE_RPAREN] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + [anon_sym_with] = ACTIONS(2262), }, - [4387] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5365), + [4851] = { + [sym_vclose] = STATE(5140), + [sym__layout_close_brace] = ACTIONS(5390), [sym_comment] = ACTIONS(86), }, - [4388] = { + [4852] = { + [sym_vopen] = STATE(4325), + [sym_declarations] = STATE(4326), + [sym__declarations0] = STATE(5141), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5365), }, - [4389] = { - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_PIPE_RPAREN] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_COLON] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), - [anon_sym_rewrite] = ACTIONS(4085), - [anon_sym_with] = ACTIONS(4085), + [4853] = { + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_PIPE_RPAREN] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), }, - [4390] = { - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_PIPE_RPAREN] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), - [anon_sym_rewrite] = ACTIONS(4121), - [anon_sym_with] = ACTIONS(4121), + [4854] = { + [sym_expr] = STATE(5142), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4391] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_PIPE_RPAREN] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_rewrite] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), + [4855] = { + [sym_expr] = STATE(5143), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4392] = { - [sym_semi] = STATE(3697), - [aux_sym__declarations1_repeat1] = STATE(4392), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_PIPE_RPAREN] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_rewrite] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), + [4856] = { + [sym_expr] = STATE(5144), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4393] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_where] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_PIPE_RPAREN] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_rewrite] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), + [4857] = { + [anon_sym_RBRACE] = ACTIONS(5670), + [sym_comment] = ACTIONS(86), }, - [4394] = { - [anon_sym_RBRACE] = ACTIONS(5367), + [4858] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5670), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5369), }, - [4395] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5367), + [4859] = { + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_PIPE_RPAREN] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + }, + [4860] = { + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_PIPE_RPAREN] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + }, + [4861] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5371), + [anon_sym_RPAREN] = ACTIONS(5670), }, - [4396] = { + [4862] = { + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_PIPE_RPAREN] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [4863] = { + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_PIPE_RPAREN] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [4864] = { + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_PIPE_RPAREN] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + }, + [4865] = { + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_PIPE_RPAREN] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + }, + [4866] = { + [sym_vclose] = STATE(5146), + [sym__layout_close_brace] = ACTIONS(5406), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5367), }, - [4397] = { + [4867] = { + [sym_vopen] = STATE(4356), + [sym_declarations] = STATE(4357), + [sym__declarations0] = STATE(5147), + [sym__layout_open_brace] = ACTIONS(636), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5373), }, - [4398] = { - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_PIPE_RPAREN] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_with] = ACTIONS(1891), + [4868] = { + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_PIPE_RPAREN] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), }, - [4399] = { - [sym_expr] = STATE(4821), + [4869] = { + [sym_expr] = STATE(5148), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -144329,39 +153190,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4400] = { - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_PIPE_RPAREN] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_COLON] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_with] = ACTIONS(1905), - }, - [4401] = { - [sym_expr] = STATE(4822), + [4870] = { + [sym_expr] = STATE(5149), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -144397,432 +153227,464 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4402] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [4871] = { + [sym_expr] = STATE(5150), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_PIPE_RPAREN] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - [anon_sym_with] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4403] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_PIPE_RPAREN] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - [anon_sym_with] = ACTIONS(228), + [4872] = { + [anon_sym_RBRACE] = ACTIONS(5672), + [sym_comment] = ACTIONS(86), }, - [4404] = { - [anon_sym_RBRACE] = ACTIONS(5375), + [4873] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5672), [sym_comment] = ACTIONS(86), }, - [4405] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5377), + [4874] = { + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_PIPE_RPAREN] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + }, + [4875] = { + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_PIPE_RPAREN] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + }, + [4876] = { [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5672), }, - [4406] = { - [sym_atomic_expr] = STATE(4425), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4965), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_LBRACE] = ACTIONS(4973), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4975), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), + [4877] = { + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_PIPE_RPAREN] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), }, - [4407] = { - [sym_atomic_expr] = STATE(4425), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4965), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4981), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), + [4878] = { + [sym_vclose] = STATE(5152), + [sym__layout_close_brace] = ACTIONS(5422), + [sym_comment] = ACTIONS(86), }, - [4408] = { - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_in] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_PIPE_RPAREN] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_with] = ACTIONS(1983), + [4879] = { + [sym_vopen] = STATE(4372), + [sym_declarations] = STATE(4373), + [sym__declarations0] = STATE(5153), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), }, - [4409] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5379), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_PIPE_RPAREN] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), + [4880] = { + [ts_builtin_sym_end] = ACTIONS(4512), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + [anon_sym_with] = ACTIONS(4512), }, - [4410] = { + [4881] = { + [ts_builtin_sym_end] = ACTIONS(4512), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + }, + [4882] = { + [ts_builtin_sym_end] = ACTIONS(4512), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + }, + [4883] = { + [anon_sym_RBRACE] = ACTIONS(5674), [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5381), - [anon_sym_PIPE] = ACTIONS(162), }, - [4411] = { - [sym_expr] = STATE(4435), - [sym__expr1] = STATE(4409), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(4410), - [sym_atomic_expr] = STATE(3737), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_tele_arrow] = STATE(4411), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3662), - [aux_sym__application_repeat1] = STATE(4412), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4965), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4389), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), + [4884] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5674), + [sym_comment] = ACTIONS(86), }, - [4412] = { - [sym__expr2] = STATE(2791), - [sym_atomic_expr] = STATE(3737), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4965), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_LBRACE] = ACTIONS(4973), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4975), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), + [4885] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5674), }, - [4413] = { + [4886] = { + [sym__layout_semicolon] = ACTIONS(3409), + [sym__layout_close_brace] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(3407), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3409), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3409), + [anon_sym_EQ] = ACTIONS(3409), + [anon_sym_where] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_COLON] = ACTIONS(3409), + [anon_sym_module] = ACTIONS(3409), + [anon_sym_rewrite] = ACTIONS(3409), + [anon_sym_with] = ACTIONS(3409), + }, + [4887] = { + [sym__layout_semicolon] = ACTIONS(5216), + [sym__layout_close_brace] = ACTIONS(5216), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_rewrite] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + }, + [4888] = { + [sym__layout_semicolon] = ACTIONS(5218), + [sym__layout_close_brace] = ACTIONS(5218), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_rewrite] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + }, + [4889] = { + [anon_sym_RBRACE] = ACTIONS(5676), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5377), + [anon_sym_COLON] = ACTIONS(5678), }, - [4414] = { + [4890] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5676), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(5377), + [anon_sym_COLON] = ACTIONS(5680), }, - [4415] = { - [sym_expr] = STATE(4826), - [sym__expr1] = STATE(4409), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(4410), - [sym_atomic_expr] = STATE(3737), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_tele_arrow] = STATE(4411), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3662), - [aux_sym__application_repeat1] = STATE(4412), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4965), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4389), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), + [4891] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5676), }, - [4416] = { - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_PIPE_RPAREN] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_with] = ACTIONS(1997), + [4892] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5682), }, - [4417] = { - [sym__expr2] = STATE(2791), - [sym_atomic_expr] = STATE(3718), - [sym__atomic_expr_curly] = STATE(3719), - [sym__atomic_expr_no_curly] = STATE(3719), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(4355), - [sym_set_n] = ACTIONS(4355), - [sym_name_at] = ACTIONS(4357), - [sym_qualified_name] = ACTIONS(4355), - [anon_sym__] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4361), + [4893] = { + [sym__layout_semicolon] = ACTIONS(1925), + [sym__layout_close_brace] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_DOT] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1925), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1925), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_where] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_COLON] = ACTIONS(1925), + [anon_sym_module] = ACTIONS(1925), + [anon_sym_with] = ACTIONS(1925), + }, + [4894] = { + [sym_expr] = STATE(5159), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5383), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_Prop] = ACTIONS(4355), - [anon_sym_Set] = ACTIONS(4355), - [anon_sym_quote] = ACTIONS(4355), - [anon_sym_quoteTerm] = ACTIONS(4355), - [anon_sym_unquote] = ACTIONS(4355), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_LPAREN_PIPE] = ACTIONS(4367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4418] = { - [sym__application] = STATE(3717), - [sym__expr2] = STATE(1834), - [sym_atomic_expr] = STATE(3718), - [sym__atomic_expr_curly] = STATE(3719), - [sym__atomic_expr_no_curly] = STATE(3719), - [sym_non_absurd_lambda_clause] = STATE(3720), - [sym_absurd_lambda_clause] = STATE(3720), - [sym_lambda_clause] = STATE(4828), - [aux_sym__application_repeat1] = STATE(3723), - [sym_literal] = ACTIONS(4355), - [sym_set_n] = ACTIONS(4355), - [sym_name_at] = ACTIONS(4357), - [sym_qualified_name] = ACTIONS(4355), - [anon_sym__] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4361), + [4895] = { + [sym__layout_semicolon] = ACTIONS(2366), + [sym__layout_close_brace] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2366), + [anon_sym_where] = ACTIONS(2366), + [anon_sym_COLON] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_with] = ACTIONS(2366), + }, + [4896] = { + [sym_expr] = STATE(5160), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4363), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_Prop] = ACTIONS(4355), - [anon_sym_Set] = ACTIONS(4355), - [anon_sym_quote] = ACTIONS(4355), - [anon_sym_quoteTerm] = ACTIONS(4355), - [anon_sym_unquote] = ACTIONS(4355), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym_LPAREN_PIPE] = ACTIONS(4367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), - [sym_catchall_pragma] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4419] = { - [sym_semi] = STATE(4418), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4829), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_PIPE_RPAREN] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_with] = ACTIONS(2001), + [4897] = { + [sym_vclose] = STATE(5162), + [sym__layout_close_brace] = ACTIONS(5684), + [sym_comment] = ACTIONS(86), }, - [4420] = { - [sym_expr] = STATE(4830), + [4898] = { + [sym_expr] = STATE(5163), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -144858,13 +153720,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4421] = { - [anon_sym_RBRACE] = ACTIONS(4953), + [4899] = { + [anon_sym_RBRACE] = ACTIONS(5434), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4955), + [anon_sym_COLON] = ACTIONS(5436), }, - [4422] = { - [sym_expr] = STATE(4430), + [4900] = { + [sym_expr] = STATE(4908), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -144885,7 +153747,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(4985), + [anon_sym_RBRACE] = ACTIONS(5456), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -144901,8 +153763,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4423] = { - [sym_expr] = STATE(4431), + [4901] = { + [sym_expr] = STATE(4909), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -144924,7 +153786,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4987), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5458), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -144939,8 +153801,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4424] = { - [sym_expr] = STATE(4432), + [4902] = { + [sym_expr] = STATE(4910), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -144973,11 +153835,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_RPAREN] = ACTIONS(5458), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4425] = { + [4903] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), [anon_sym_SEMI] = ACTIONS(186), @@ -144995,7 +153859,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), [anon_sym_Prop] = ACTIONS(186), [anon_sym_Set] = ACTIONS(186), @@ -145004,16 +153867,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_PIPE_RPAREN] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), [anon_sym_COLON] = ACTIONS(186), [anon_sym_module] = ACTIONS(186), [anon_sym_with] = ACTIONS(186), }, - [4426] = { - [sym_expr] = STATE(4430), + [4904] = { + [sym_expr] = STATE(4908), [sym__expr1] = STATE(38), - [sym__application] = STATE(557), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -145032,7 +153894,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(4985), + [anon_sym_RBRACE] = ACTIONS(5456), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -145048,10 +153910,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [4427] = { - [sym_expr] = STATE(4431), + [4905] = { + [sym_expr] = STATE(4909), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -145071,7 +153933,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4987), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5458), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -145086,10 +153948,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [4428] = { - [sym_expr] = STATE(4432), + [4906] = { + [sym_expr] = STATE(4910), [sym__expr1] = STATE(110), - [sym__application] = STATE(559), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -145120,11 +153982,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_RPAREN] = ACTIONS(5458), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [4429] = { + [4907] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), [anon_sym_SEMI] = ACTIONS(228), @@ -145142,7 +154006,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), [anon_sym_Prop] = ACTIONS(228), [anon_sym_Set] = ACTIONS(228), @@ -145151,340 +154014,345 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_PIPE_RPAREN] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), [anon_sym_COLON] = ACTIONS(228), [anon_sym_module] = ACTIONS(228), [anon_sym_with] = ACTIONS(228), }, - [4430] = { - [anon_sym_RBRACE] = ACTIONS(5385), + [4908] = { + [anon_sym_RBRACE] = ACTIONS(5686), [sym_comment] = ACTIONS(86), }, - [4431] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5387), + [4909] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5688), [sym_comment] = ACTIONS(86), }, - [4432] = { + [4910] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5387), + [anon_sym_RPAREN] = ACTIONS(5688), }, - [4433] = { + [4911] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(5387), + [anon_sym_PIPE_RPAREN] = ACTIONS(5688), }, - [4434] = { - [sym_expr] = STATE(4833), - [sym__expr1] = STATE(3735), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(3736), - [sym_atomic_expr] = STATE(3737), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_tele_arrow] = STATE(3739), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1837), - [aux_sym__application_repeat1] = STATE(3740), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4383), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4389), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2273), - [anon_sym_forall] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), + [4912] = { + [sym_expr] = STATE(5166), + [sym__expr1] = STATE(4441), + [sym__application] = STATE(2825), + [sym__expr2] = STATE(2826), + [sym__atomic_exprs1] = STATE(4442), + [sym_atomic_expr] = STATE(4443), + [sym__atomic_expr_curly] = STATE(4444), + [sym__atomic_expr_no_curly] = STATE(4444), + [sym_tele_arrow] = STATE(4445), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2829), + [aux_sym__application_repeat1] = STATE(4446), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4986), + [sym_set_n] = ACTIONS(4986), + [sym_name_at] = ACTIONS(4988), + [sym_qualified_name] = ACTIONS(4986), + [anon_sym__] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4994), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3321), + [anon_sym_forall] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3325), + [anon_sym_QMARK] = ACTIONS(4986), + [anon_sym_Prop] = ACTIONS(4986), + [anon_sym_Set] = ACTIONS(4986), + [anon_sym_quote] = ACTIONS(4986), + [anon_sym_quoteTerm] = ACTIONS(4986), + [anon_sym_unquote] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_LPAREN_PIPE] = ACTIONS(4998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4986), }, - [4435] = { - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_PIPE_RPAREN] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_with] = ACTIONS(2061), + [4913] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym__layout_close_brace] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(781), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_where] = ACTIONS(781), + [anon_sym_COLON] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_with] = ACTIONS(781), }, - [4436] = { - [sym_literal] = ACTIONS(1320), - [sym_set_n] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [sym_name_at] = ACTIONS(1320), - [sym_qualified_name] = ACTIONS(1320), - [anon_sym__] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1320), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_BSLASH] = ACTIONS(1320), - [anon_sym_where] = ACTIONS(1320), - [anon_sym_forall] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_Prop] = ACTIONS(1320), - [anon_sym_Set] = ACTIONS(1320), - [anon_sym_quote] = ACTIONS(1320), - [anon_sym_quoteTerm] = ACTIONS(1320), - [anon_sym_unquote] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_LPAREN_PIPE] = ACTIONS(1320), - [anon_sym_PIPE_RPAREN] = ACTIONS(1320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1320), - [anon_sym_COLON] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_with] = ACTIONS(1320), + [4914] = { + [sym__layout_semicolon] = ACTIONS(3765), + [sym__layout_close_brace] = ACTIONS(3765), + [sym_literal] = ACTIONS(1212), + [sym_set_n] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1212), + [sym_name_at] = ACTIONS(1212), + [sym_qualified_name] = ACTIONS(1212), + [anon_sym__] = ACTIONS(1212), + [anon_sym_DOT] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1212), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_where] = ACTIONS(1212), + [anon_sym_forall] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_Prop] = ACTIONS(1212), + [anon_sym_Set] = ACTIONS(1212), + [anon_sym_quote] = ACTIONS(1212), + [anon_sym_quoteTerm] = ACTIONS(1212), + [anon_sym_unquote] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LPAREN_PIPE] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_with] = ACTIONS(1212), }, - [4437] = { - [sym_literal] = ACTIONS(1322), - [sym_set_n] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [sym_name_at] = ACTIONS(1322), - [sym_qualified_name] = ACTIONS(1322), - [anon_sym__] = ACTIONS(1322), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1322), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_BSLASH] = ACTIONS(1322), - [anon_sym_where] = ACTIONS(1322), - [anon_sym_forall] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_in] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_Prop] = ACTIONS(1322), - [anon_sym_Set] = ACTIONS(1322), - [anon_sym_quote] = ACTIONS(1322), - [anon_sym_quoteTerm] = ACTIONS(1322), - [anon_sym_unquote] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_LPAREN_PIPE] = ACTIONS(1322), - [anon_sym_PIPE_RPAREN] = ACTIONS(1322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_module] = ACTIONS(1322), - [anon_sym_with] = ACTIONS(1322), + [4915] = { + [sym__layout_semicolon] = ACTIONS(3767), + [sym__layout_close_brace] = ACTIONS(3767), + [sym_literal] = ACTIONS(1214), + [sym_set_n] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [sym_name_at] = ACTIONS(1214), + [sym_qualified_name] = ACTIONS(1214), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1214), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_where] = ACTIONS(1214), + [anon_sym_forall] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_Prop] = ACTIONS(1214), + [anon_sym_Set] = ACTIONS(1214), + [anon_sym_quote] = ACTIONS(1214), + [anon_sym_quoteTerm] = ACTIONS(1214), + [anon_sym_unquote] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LPAREN_PIPE] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_module] = ACTIONS(1214), + [anon_sym_with] = ACTIONS(1214), }, - [4438] = { - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_PIPE_RPAREN] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_COLON] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_with] = ACTIONS(1352), + [4916] = { + [sym__layout_semicolon] = ACTIONS(3785), + [sym__layout_close_brace] = ACTIONS(3785), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + [anon_sym_with] = ACTIONS(1244), }, - [4439] = { - [sym_semi] = STATE(4834), - [aux_sym__declarations1_repeat1] = STATE(4835), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_PIPE_RPAREN] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_with] = ACTIONS(1376), + [4917] = { + [sym_vclose] = STATE(5168), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(5169), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(5690), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [4440] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_where] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_PIPE_RPAREN] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1380), - [anon_sym_module] = ACTIONS(1380), - [anon_sym_with] = ACTIONS(1380), + [4918] = { + [sym__layout_semicolon] = ACTIONS(3793), + [sym__layout_close_brace] = ACTIONS(3793), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), + [anon_sym_with] = ACTIONS(1284), }, - [4441] = { + [4919] = { + [sym__layout_semicolon] = ACTIONS(3795), + [sym__layout_close_brace] = ACTIONS(3795), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_with] = ACTIONS(1286), + }, + [4920] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5389), + [anon_sym_where] = ACTIONS(5692), }, - [4442] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_where] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_PIPE_RPAREN] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_with] = ACTIONS(1386), + [4921] = { + [sym__layout_semicolon] = ACTIONS(3799), + [sym__layout_close_brace] = ACTIONS(3799), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), + [anon_sym_with] = ACTIONS(1292), }, - [4443] = { - [anon_sym_RBRACE] = ACTIONS(5391), + [4922] = { + [anon_sym_RBRACE] = ACTIONS(5694), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5393), + [anon_sym_COLON] = ACTIONS(5696), }, - [4444] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5391), + [4923] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5694), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5395), + [anon_sym_COLON] = ACTIONS(5698), }, - [4445] = { + [4924] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5391), + [anon_sym_RPAREN] = ACTIONS(5694), }, - [4446] = { + [4925] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5397), + [anon_sym_COLON] = ACTIONS(5700), }, - [4447] = { - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_PIPE_RPAREN] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), + [4926] = { + [sym__layout_semicolon] = ACTIONS(1925), + [sym__layout_close_brace] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_DOT] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1925), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1925), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_where] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_COLON] = ACTIONS(1925), + [anon_sym_module] = ACTIONS(1925), }, - [4448] = { - [sym_expr] = STATE(4841), + [4927] = { + [sym_expr] = STATE(5175), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -145520,38 +154388,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4449] = { - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_PIPE_RPAREN] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_COLON] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), + [4928] = { + [sym__layout_semicolon] = ACTIONS(2366), + [sym__layout_close_brace] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2366), + [anon_sym_where] = ACTIONS(2366), + [anon_sym_COLON] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), }, - [4450] = { - [sym_expr] = STATE(4842), + [4929] = { + [sym_expr] = STATE(5176), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -145587,426 +154435,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4451] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_PIPE_RPAREN] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - }, - [4452] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_PIPE_RPAREN] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - }, - [4453] = { - [anon_sym_RBRACE] = ACTIONS(5399), - [sym_comment] = ACTIONS(86), - }, - [4454] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5401), - [sym_comment] = ACTIONS(86), - }, - [4455] = { - [sym_atomic_expr] = STATE(4474), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(5007), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), - }, - [4456] = { - [sym_atomic_expr] = STATE(4474), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(5007), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5021), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5023), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(5025), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), - }, - [4457] = { - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_in] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_PIPE_RPAREN] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - }, - [4458] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5403), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_PIPE_RPAREN] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [4459] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5405), - [anon_sym_PIPE] = ACTIONS(162), - }, - [4460] = { - [sym_expr] = STATE(4484), - [sym__expr1] = STATE(4458), - [sym__application] = STATE(1849), - [sym__expr2] = STATE(1850), - [sym__atomic_exprs1] = STATE(4459), - [sym_atomic_expr] = STATE(3787), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_tele_arrow] = STATE(4460), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3668), - [aux_sym__application_repeat1] = STATE(4461), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(5007), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4449), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), - }, - [4461] = { - [sym__expr2] = STATE(2811), - [sym_atomic_expr] = STATE(3787), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(5007), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), - }, - [4462] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5401), - }, - [4463] = { + [4930] = { + [sym_vclose] = STATE(5178), + [sym__layout_close_brace] = ACTIONS(5702), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(5401), - }, - [4464] = { - [sym_expr] = STATE(4846), - [sym__expr1] = STATE(4458), - [sym__application] = STATE(1849), - [sym__expr2] = STATE(1850), - [sym__atomic_exprs1] = STATE(4459), - [sym_atomic_expr] = STATE(3787), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_tele_arrow] = STATE(4460), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3668), - [aux_sym__application_repeat1] = STATE(4461), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(5007), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4449), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), - }, - [4465] = { - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_PIPE_RPAREN] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - }, - [4466] = { - [sym__expr2] = STATE(2811), - [sym_atomic_expr] = STATE(3768), - [sym__atomic_expr_curly] = STATE(3769), - [sym__atomic_expr_no_curly] = STATE(3769), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(4415), - [sym_set_n] = ACTIONS(4415), - [sym_name_at] = ACTIONS(4417), - [sym_qualified_name] = ACTIONS(4415), - [anon_sym__] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4421), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5407), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4415), - [anon_sym_Prop] = ACTIONS(4415), - [anon_sym_Set] = ACTIONS(4415), - [anon_sym_quote] = ACTIONS(4415), - [anon_sym_quoteTerm] = ACTIONS(4415), - [anon_sym_unquote] = ACTIONS(4415), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_LPAREN_PIPE] = ACTIONS(4427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4415), - }, - [4467] = { - [sym__application] = STATE(3767), - [sym__expr2] = STATE(1850), - [sym_atomic_expr] = STATE(3768), - [sym__atomic_expr_curly] = STATE(3769), - [sym__atomic_expr_no_curly] = STATE(3769), - [sym_non_absurd_lambda_clause] = STATE(3770), - [sym_absurd_lambda_clause] = STATE(3770), - [sym_lambda_clause] = STATE(4848), - [aux_sym__application_repeat1] = STATE(3773), - [sym_literal] = ACTIONS(4415), - [sym_set_n] = ACTIONS(4415), - [sym_name_at] = ACTIONS(4417), - [sym_qualified_name] = ACTIONS(4415), - [anon_sym__] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4421), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4423), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4415), - [anon_sym_Prop] = ACTIONS(4415), - [anon_sym_Set] = ACTIONS(4415), - [anon_sym_quote] = ACTIONS(4415), - [anon_sym_quoteTerm] = ACTIONS(4415), - [anon_sym_unquote] = ACTIONS(4415), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_LPAREN_PIPE] = ACTIONS(4427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4415), - [sym_catchall_pragma] = ACTIONS(4429), - }, - [4468] = { - [sym_semi] = STATE(4467), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4849), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_PIPE_RPAREN] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), }, - [4469] = { - [sym_expr] = STATE(4850), + [4931] = { + [sym_expr] = STATE(5179), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -146042,13 +154477,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4470] = { - [anon_sym_RBRACE] = ACTIONS(4995), + [4932] = { + [anon_sym_RBRACE] = ACTIONS(5464), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(4997), + [anon_sym_COLON] = ACTIONS(5466), }, - [4471] = { - [sym_expr] = STATE(4479), + [4933] = { + [sym_expr] = STATE(4941), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -146069,7 +154504,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_RBRACE] = ACTIONS(5027), + [anon_sym_RBRACE] = ACTIONS(5486), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -146085,8 +154520,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4472] = { - [sym_expr] = STATE(4480), + [4934] = { + [sym_expr] = STATE(4942), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -146108,7 +154543,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5029), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5488), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -146123,8 +154558,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4473] = { - [sym_expr] = STATE(4481), + [4935] = { + [sym_expr] = STATE(4943), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -146157,11 +154592,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_RPAREN] = ACTIONS(5029), + [anon_sym_RPAREN] = ACTIONS(5488), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4474] = { + [4936] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), [sym_literal] = ACTIONS(186), [sym_set_n] = ACTIONS(186), [anon_sym_SEMI] = ACTIONS(186), @@ -146179,7 +154616,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(186), [anon_sym_forall] = ACTIONS(186), [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), [anon_sym_QMARK] = ACTIONS(186), [anon_sym_Prop] = ACTIONS(186), [anon_sym_Set] = ACTIONS(186), @@ -146188,15 +154624,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(186), [anon_sym_LPAREN] = ACTIONS(186), [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_PIPE_RPAREN] = ACTIONS(186), [anon_sym_DOT_DOT_DOT] = ACTIONS(186), [anon_sym_COLON] = ACTIONS(186), [anon_sym_module] = ACTIONS(186), }, - [4475] = { - [sym_expr] = STATE(4479), + [4937] = { + [sym_expr] = STATE(4941), [sym__expr1] = STATE(38), - [sym__application] = STATE(557), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), @@ -146215,7 +154650,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(5027), + [anon_sym_RBRACE] = ACTIONS(5486), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(218), @@ -146231,10 +154666,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [4476] = { - [sym_expr] = STATE(4480), + [4938] = { + [sym_expr] = STATE(4942), [sym__expr1] = STATE(60), - [sym__application] = STATE(558), + [sym__application] = STATE(539), [sym__expr2] = STATE(62), [sym__atomic_exprs1] = STATE(63), [sym_atomic_expr] = STATE(186), @@ -146254,7 +154689,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(236), [anon_sym_LBRACE_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5029), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5488), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(242), [anon_sym_forall] = ACTIONS(244), @@ -146269,10 +154704,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(250), [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [4477] = { - [sym_expr] = STATE(4481), + [4939] = { + [sym_expr] = STATE(4943), [sym__expr1] = STATE(110), - [sym__application] = STATE(559), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), @@ -146303,11 +154738,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(206), [anon_sym_unquote] = ACTIONS(206), [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(5029), + [anon_sym_RPAREN] = ACTIONS(5488), [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [4478] = { + [4940] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), [sym_literal] = ACTIONS(228), [sym_set_n] = ACTIONS(228), [anon_sym_SEMI] = ACTIONS(228), @@ -146325,7 +154762,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(228), [anon_sym_forall] = ACTIONS(228), [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), [anon_sym_QMARK] = ACTIONS(228), [anon_sym_Prop] = ACTIONS(228), [anon_sym_Set] = ACTIONS(228), @@ -146334,271 +154770,274 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unquote] = ACTIONS(228), [anon_sym_LPAREN] = ACTIONS(228), [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_PIPE_RPAREN] = ACTIONS(228), [anon_sym_DOT_DOT_DOT] = ACTIONS(228), [anon_sym_COLON] = ACTIONS(228), [anon_sym_module] = ACTIONS(228), }, - [4479] = { - [anon_sym_RBRACE] = ACTIONS(5409), + [4941] = { + [anon_sym_RBRACE] = ACTIONS(5704), [sym_comment] = ACTIONS(86), }, - [4480] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5411), + [4942] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5706), [sym_comment] = ACTIONS(86), }, - [4481] = { + [4943] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5411), + [anon_sym_RPAREN] = ACTIONS(5706), }, - [4482] = { + [4944] = { [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(5411), + [anon_sym_PIPE_RPAREN] = ACTIONS(5706), }, - [4483] = { - [sym_expr] = STATE(4853), - [sym__expr1] = STATE(3785), - [sym__application] = STATE(1849), - [sym__expr2] = STATE(1850), - [sym__atomic_exprs1] = STATE(3786), - [sym_atomic_expr] = STATE(3787), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_tele_arrow] = STATE(3789), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(1853), - [aux_sym__application_repeat1] = STATE(3790), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(4443), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4449), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2291), - [anon_sym_forall] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), + [4945] = { + [sym_expr] = STATE(5182), + [sym__expr1] = STATE(4478), + [sym__application] = STATE(2841), + [sym__expr2] = STATE(2842), + [sym__atomic_exprs1] = STATE(4479), + [sym_atomic_expr] = STATE(4480), + [sym__atomic_expr_curly] = STATE(4481), + [sym__atomic_expr_no_curly] = STATE(4481), + [sym_tele_arrow] = STATE(4482), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2845), + [aux_sym__application_repeat1] = STATE(4483), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(5018), + [sym_set_n] = ACTIONS(5018), + [sym_name_at] = ACTIONS(5020), + [sym_qualified_name] = ACTIONS(5018), + [anon_sym__] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5026), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3339), + [anon_sym_forall] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_QMARK] = ACTIONS(5018), + [anon_sym_Prop] = ACTIONS(5018), + [anon_sym_Set] = ACTIONS(5018), + [anon_sym_quote] = ACTIONS(5018), + [anon_sym_quoteTerm] = ACTIONS(5018), + [anon_sym_unquote] = ACTIONS(5018), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_LPAREN_PIPE] = ACTIONS(5030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), }, - [4484] = { - [sym_literal] = ACTIONS(2061), - [sym_set_n] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [sym_name_at] = ACTIONS(2061), - [sym_qualified_name] = ACTIONS(2061), - [anon_sym__] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_forall] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_in] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_Prop] = ACTIONS(2061), - [anon_sym_Set] = ACTIONS(2061), - [anon_sym_quote] = ACTIONS(2061), - [anon_sym_quoteTerm] = ACTIONS(2061), - [anon_sym_unquote] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LPAREN_PIPE] = ACTIONS(2061), - [anon_sym_PIPE_RPAREN] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), - [anon_sym_COLON] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), + [4946] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym__layout_close_brace] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(781), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_where] = ACTIONS(781), + [anon_sym_COLON] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), }, - [4485] = { - [sym_literal] = ACTIONS(1352), - [sym_set_n] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [sym_name_at] = ACTIONS(1352), - [sym_qualified_name] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1352), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_where] = ACTIONS(1352), - [anon_sym_forall] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_Prop] = ACTIONS(1352), - [anon_sym_Set] = ACTIONS(1352), - [anon_sym_quote] = ACTIONS(1352), - [anon_sym_quoteTerm] = ACTIONS(1352), - [anon_sym_unquote] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LPAREN_PIPE] = ACTIONS(1352), - [anon_sym_PIPE_RPAREN] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_COLON] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), + [4947] = { + [sym__layout_semicolon] = ACTIONS(3785), + [sym__layout_close_brace] = ACTIONS(3785), + [sym_literal] = ACTIONS(1244), + [sym_set_n] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [sym_name_at] = ACTIONS(1244), + [sym_qualified_name] = ACTIONS(1244), + [anon_sym__] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_where] = ACTIONS(1244), + [anon_sym_forall] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1244), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_Prop] = ACTIONS(1244), + [anon_sym_Set] = ACTIONS(1244), + [anon_sym_quote] = ACTIONS(1244), + [anon_sym_quoteTerm] = ACTIONS(1244), + [anon_sym_unquote] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LPAREN_PIPE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), }, - [4486] = { - [sym_semi] = STATE(4854), - [aux_sym__declarations1_repeat1] = STATE(4855), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_PIPE_RPAREN] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), + [4948] = { + [sym_vclose] = STATE(5184), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(5185), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(5708), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [4487] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_where] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_PIPE_RPAREN] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1380), - [anon_sym_module] = ACTIONS(1380), + [4949] = { + [sym__layout_semicolon] = ACTIONS(3793), + [sym__layout_close_brace] = ACTIONS(3793), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), }, - [4488] = { + [4950] = { + [sym__layout_semicolon] = ACTIONS(3795), + [sym__layout_close_brace] = ACTIONS(3795), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + }, + [4951] = { [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5413), + [anon_sym_where] = ACTIONS(5710), }, - [4489] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_where] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_PIPE_RPAREN] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), + [4952] = { + [sym__layout_semicolon] = ACTIONS(3799), + [sym__layout_close_brace] = ACTIONS(3799), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), }, - [4490] = { - [anon_sym_RBRACE] = ACTIONS(5415), + [4953] = { + [anon_sym_RBRACE] = ACTIONS(5712), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5417), + [anon_sym_COLON] = ACTIONS(5714), }, - [4491] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5415), + [4954] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5712), [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5419), + [anon_sym_COLON] = ACTIONS(5716), }, - [4492] = { + [4955] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5415), + [anon_sym_RPAREN] = ACTIONS(5712), }, - [4493] = { + [4956] = { [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5421), + [anon_sym_COLON] = ACTIONS(5718), }, - [4494] = { - [sym_literal] = ACTIONS(1891), - [sym_set_n] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [sym_name_at] = ACTIONS(1891), - [sym_qualified_name] = ACTIONS(1891), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1891), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(1891), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BSLASH] = ACTIONS(1891), - [anon_sym_where] = ACTIONS(1891), - [anon_sym_forall] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_Prop] = ACTIONS(1891), - [anon_sym_Set] = ACTIONS(1891), - [anon_sym_quote] = ACTIONS(1891), - [anon_sym_quoteTerm] = ACTIONS(1891), - [anon_sym_unquote] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(1891), - [anon_sym_PIPE_RPAREN] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), + [4957] = { + [sym__layout_semicolon] = ACTIONS(1925), + [sym__layout_close_brace] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_DOT] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1925), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(1925), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_where] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_module] = ACTIONS(1925), }, - [4495] = { - [sym_expr] = STATE(4861), + [4958] = { + [sym_expr] = STATE(5191), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -146634,37 +155073,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4496] = { - [sym_literal] = ACTIONS(1905), - [sym_set_n] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_name_at] = ACTIONS(1905), - [sym_qualified_name] = ACTIONS(1905), - [anon_sym__] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1905), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_forall] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_Prop] = ACTIONS(1905), - [anon_sym_Set] = ACTIONS(1905), - [anon_sym_quote] = ACTIONS(1905), - [anon_sym_quoteTerm] = ACTIONS(1905), - [anon_sym_unquote] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LPAREN_PIPE] = ACTIONS(1905), - [anon_sym_PIPE_RPAREN] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), + [4959] = { + [sym__layout_semicolon] = ACTIONS(2366), + [sym__layout_close_brace] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(2366), + [anon_sym_where] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), }, - [4497] = { - [sym_expr] = STATE(4862), + [4960] = { + [sym_expr] = STATE(5192), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -146700,273 +155119,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4498] = { - [sym_literal] = ACTIONS(186), - [sym_set_n] = ACTIONS(186), - [anon_sym_SEMI] = ACTIONS(186), - [sym_name_at] = ACTIONS(186), - [sym_qualified_name] = ACTIONS(186), - [anon_sym__] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(186), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(186), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_BSLASH] = ACTIONS(186), - [anon_sym_where] = ACTIONS(186), - [anon_sym_forall] = ACTIONS(186), - [anon_sym_let] = ACTIONS(186), - [anon_sym_in] = ACTIONS(186), - [anon_sym_QMARK] = ACTIONS(186), - [anon_sym_Prop] = ACTIONS(186), - [anon_sym_Set] = ACTIONS(186), - [anon_sym_quote] = ACTIONS(186), - [anon_sym_quoteTerm] = ACTIONS(186), - [anon_sym_unquote] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_LPAREN_PIPE] = ACTIONS(186), - [anon_sym_PIPE_RPAREN] = ACTIONS(186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(186), - [anon_sym_module] = ACTIONS(186), - }, - [4499] = { - [sym_literal] = ACTIONS(228), - [sym_set_n] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [sym_name_at] = ACTIONS(228), - [sym_qualified_name] = ACTIONS(228), - [anon_sym__] = ACTIONS(228), - [anon_sym_DOT] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_LBRACE_LBRACE] = ACTIONS(228), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(228), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BSLASH] = ACTIONS(228), - [anon_sym_where] = ACTIONS(228), - [anon_sym_forall] = ACTIONS(228), - [anon_sym_let] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_QMARK] = ACTIONS(228), - [anon_sym_Prop] = ACTIONS(228), - [anon_sym_Set] = ACTIONS(228), - [anon_sym_quote] = ACTIONS(228), - [anon_sym_quoteTerm] = ACTIONS(228), - [anon_sym_unquote] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_LPAREN_PIPE] = ACTIONS(228), - [anon_sym_PIPE_RPAREN] = ACTIONS(228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(228), - [anon_sym_module] = ACTIONS(228), - }, - [4500] = { - [anon_sym_RBRACE] = ACTIONS(5423), - [sym_comment] = ACTIONS(86), - }, - [4501] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5425), - [sym_comment] = ACTIONS(86), - }, - [4502] = { - [sym_literal] = ACTIONS(1983), - [sym_set_n] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_name_at] = ACTIONS(1983), - [sym_qualified_name] = ACTIONS(1983), - [anon_sym__] = ACTIONS(1983), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_forall] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_in] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_Prop] = ACTIONS(1983), - [anon_sym_Set] = ACTIONS(1983), - [anon_sym_quote] = ACTIONS(1983), - [anon_sym_quoteTerm] = ACTIONS(1983), - [anon_sym_unquote] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_LPAREN_PIPE] = ACTIONS(1983), - [anon_sym_PIPE_RPAREN] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - }, - [4503] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5425), - }, - [4504] = { + [4961] = { + [sym_vclose] = STATE(5194), + [sym__layout_close_brace] = ACTIONS(5720), [sym_comment] = ACTIONS(86), - [anon_sym_PIPE_RPAREN] = ACTIONS(5425), - }, - [4505] = { - [sym_expr] = STATE(4865), - [sym__expr1] = STATE(3675), - [sym__application] = STATE(1868), - [sym__expr2] = STATE(1869), - [sym__atomic_exprs1] = STATE(3676), - [sym_atomic_expr] = STATE(1871), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_tele_arrow] = STATE(3677), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3678), - [aux_sym__application_repeat1] = STATE(3679), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(4297), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2309), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), - }, - [4506] = { - [sym_literal] = ACTIONS(1997), - [sym_set_n] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [sym_name_at] = ACTIONS(1997), - [sym_qualified_name] = ACTIONS(1997), - [anon_sym__] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1997), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1997), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_where] = ACTIONS(1997), - [anon_sym_forall] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_Prop] = ACTIONS(1997), - [anon_sym_Set] = ACTIONS(1997), - [anon_sym_quote] = ACTIONS(1997), - [anon_sym_quoteTerm] = ACTIONS(1997), - [anon_sym_unquote] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_LPAREN_PIPE] = ACTIONS(1997), - [anon_sym_PIPE_RPAREN] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - }, - [4507] = { - [sym__expr2] = STATE(2848), - [sym_atomic_expr] = STATE(3815), - [sym__atomic_expr_curly] = STATE(3816), - [sym__atomic_expr_no_curly] = STATE(3816), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(4473), - [sym_set_n] = ACTIONS(4473), - [sym_name_at] = ACTIONS(4475), - [sym_qualified_name] = ACTIONS(4473), - [anon_sym__] = ACTIONS(4473), - [anon_sym_DOT] = ACTIONS(4475), - [anon_sym_LBRACE] = ACTIONS(4477), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4479), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5427), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(4473), - [anon_sym_Prop] = ACTIONS(4473), - [anon_sym_Set] = ACTIONS(4473), - [anon_sym_quote] = ACTIONS(4473), - [anon_sym_quoteTerm] = ACTIONS(4473), - [anon_sym_unquote] = ACTIONS(4473), - [anon_sym_LPAREN] = ACTIONS(4483), - [anon_sym_LPAREN_PIPE] = ACTIONS(4485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4473), - }, - [4508] = { - [sym__application] = STATE(3814), - [sym__expr2] = STATE(1869), - [sym_atomic_expr] = STATE(3815), - [sym__atomic_expr_curly] = STATE(3816), - [sym__atomic_expr_no_curly] = STATE(3816), - [sym_non_absurd_lambda_clause] = STATE(3817), - [sym_absurd_lambda_clause] = STATE(3817), - [sym_lambda_clause] = STATE(4867), - [aux_sym__application_repeat1] = STATE(3820), - [sym_literal] = ACTIONS(4473), - [sym_set_n] = ACTIONS(4473), - [sym_name_at] = ACTIONS(4475), - [sym_qualified_name] = ACTIONS(4473), - [anon_sym__] = ACTIONS(4473), - [anon_sym_DOT] = ACTIONS(4475), - [anon_sym_LBRACE] = ACTIONS(4477), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4479), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4481), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(4473), - [anon_sym_Prop] = ACTIONS(4473), - [anon_sym_Set] = ACTIONS(4473), - [anon_sym_quote] = ACTIONS(4473), - [anon_sym_quoteTerm] = ACTIONS(4473), - [anon_sym_unquote] = ACTIONS(4473), - [anon_sym_LPAREN] = ACTIONS(4483), - [anon_sym_LPAREN_PIPE] = ACTIONS(4485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4473), - [sym_catchall_pragma] = ACTIONS(4487), - }, - [4509] = { - [sym_semi] = STATE(4508), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4868), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_PIPE_RPAREN] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), }, - [4510] = { - [sym_expr] = STATE(4869), + [4962] = { + [sym_expr] = STATE(5195), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -146995,2356 +155154,759 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [4511] = { - [anon_sym_RBRACE] = ACTIONS(5037), - [sym_comment] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(5039), - }, - [4512] = { - [sym_semi] = STATE(4870), - [aux_sym__declarations1_repeat1] = STATE(4871), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_PIPE_RPAREN] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - }, - [4513] = { - [sym_literal] = ACTIONS(1380), - [sym_set_n] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [sym_name_at] = ACTIONS(1380), - [sym_qualified_name] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1380), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_where] = ACTIONS(1380), - [anon_sym_forall] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_Prop] = ACTIONS(1380), - [anon_sym_Set] = ACTIONS(1380), - [anon_sym_quote] = ACTIONS(1380), - [anon_sym_quoteTerm] = ACTIONS(1380), - [anon_sym_unquote] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LPAREN_PIPE] = ACTIONS(1380), - [anon_sym_PIPE_RPAREN] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_module] = ACTIONS(1380), - }, - [4514] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5429), - }, - [4515] = { - [sym_literal] = ACTIONS(1386), - [sym_set_n] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [sym_name_at] = ACTIONS(1386), - [sym_qualified_name] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1386), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_where] = ACTIONS(1386), - [anon_sym_forall] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_Prop] = ACTIONS(1386), - [anon_sym_Set] = ACTIONS(1386), - [anon_sym_quote] = ACTIONS(1386), - [anon_sym_quoteTerm] = ACTIONS(1386), - [anon_sym_unquote] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LPAREN_PIPE] = ACTIONS(1386), - [anon_sym_PIPE_RPAREN] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - }, - [4516] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_PIPE_RPAREN] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [4517] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_PIPE_RPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - }, - [4518] = { - [anon_sym_RBRACE] = ACTIONS(5431), - [sym_comment] = ACTIONS(86), - }, - [4519] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5431), - [sym_comment] = ACTIONS(86), - }, - [4520] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5431), - }, - [4521] = { - [ts_builtin_sym_end] = ACTIONS(4085), - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_COLON] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), - [anon_sym_with] = ACTIONS(4085), - }, - [4522] = { - [sym_atomic_expr] = STATE(2177), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(5061), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [4523] = { - [sym_lambda_bindings] = STATE(4874), - [sym_untyped_bindings] = STATE(4875), - [sym_typed_bindings] = STATE(4875), - [anon_sym_DOT] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2698), - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(2702), - }, - [4524] = { - [sym_forall_bindings] = STATE(4876), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), - [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [4525] = { - [sym__expr1] = STATE(2874), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2875), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(4877), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4526] = { - [sym__application] = STATE(2194), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(4527), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(5061), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [4527] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(5061), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [4528] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5069), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4529] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5069), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4547), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4549), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4530] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5433), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), - }, - [4531] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5435), - [anon_sym_PIPE] = ACTIONS(162), - }, - [4532] = { - [sym_expr] = STATE(3881), - [sym__expr1] = STATE(4530), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4531), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4532), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4526), - [aux_sym__application_repeat1] = STATE(4533), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5069), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4533] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5069), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4534] = { - [ts_builtin_sym_end] = ACTIONS(4121), - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), - [anon_sym_with] = ACTIONS(4121), - }, - [4535] = { - [sym_atomic_expr] = STATE(3987), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(5073), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - }, - [4536] = { - [sym_expr] = STATE(3993), - [sym__expr1] = STATE(4530), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4531), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4532), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4526), - [aux_sym__application_repeat1] = STATE(4533), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5069), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4537] = { - [sym__application] = STATE(4001), - [sym__expr2] = STATE(1235), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [aux_sym__application_repeat1] = STATE(4880), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(5073), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5437), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), + [4963] = { + [anon_sym_RBRACE] = ACTIONS(5494), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5496), }, - [4538] = { - [sym_semi] = STATE(4881), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4882), - [ts_builtin_sym_end] = ACTIONS(1048), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_with] = ACTIONS(1048), + [4964] = { + [sym_expr] = STATE(5196), + [sym__expr1] = STATE(4505), + [sym__application] = STATE(2860), + [sym__expr2] = STATE(2861), + [sym__atomic_exprs1] = STATE(4506), + [sym_atomic_expr] = STATE(2863), + [sym__atomic_expr_curly] = STATE(2864), + [sym__atomic_expr_no_curly] = STATE(2864), + [sym_tele_arrow] = STATE(4507), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(2866), + [aux_sym__application_repeat1] = STATE(2867), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3349), + [sym_set_n] = ACTIONS(3349), + [sym_name_at] = ACTIONS(3351), + [sym_qualified_name] = ACTIONS(3349), + [anon_sym__] = ACTIONS(3349), + [anon_sym_DOT] = ACTIONS(3353), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3357), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3359), + [anon_sym_forall] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_QMARK] = ACTIONS(3349), + [anon_sym_Prop] = ACTIONS(3349), + [anon_sym_Set] = ACTIONS(3349), + [anon_sym_quote] = ACTIONS(3349), + [anon_sym_quoteTerm] = ACTIONS(3349), + [anon_sym_unquote] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_LPAREN_PIPE] = ACTIONS(3367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), }, - [4539] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(5073), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5437), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), + [4965] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym__layout_close_brace] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(781), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_where] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), }, - [4540] = { - [sym_expr] = STATE(3985), - [sym__expr1] = STATE(2916), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(2917), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(2920), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2904), - [aux_sym__application_repeat1] = STATE(2921), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(3409), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3401), - [anon_sym_forall] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [4966] = { + [sym_vclose] = STATE(5198), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(5199), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(5722), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [4541] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), + [4967] = { + [sym__layout_semicolon] = ACTIONS(3793), + [sym__layout_close_brace] = ACTIONS(3793), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), }, - [4542] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), + [4968] = { + [sym__layout_semicolon] = ACTIONS(3795), + [sym__layout_close_brace] = ACTIONS(3795), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), }, - [4543] = { - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_RPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), - [anon_sym_with] = ACTIONS(3153), + [4969] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(5724), }, - [4544] = { - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), + [4970] = { + [sym__layout_semicolon] = ACTIONS(3799), + [sym__layout_close_brace] = ACTIONS(3799), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), }, - [4545] = { - [sym_semi] = STATE(3882), - [aux_sym__declarations1_repeat1] = STATE(4545), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), + [4971] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), }, - [4546] = { - [ts_builtin_sym_end] = ACTIONS(3524), - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_where] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_RPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), + [4972] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), }, - [4547] = { - [anon_sym_RBRACE] = ACTIONS(5439), + [4973] = { + [anon_sym_RBRACE] = ACTIONS(5726), [sym_comment] = ACTIONS(86), }, - [4548] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5439), + [4974] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5726), [sym_comment] = ACTIONS(86), }, - [4549] = { + [4975] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5439), - }, - [4550] = { - [ts_builtin_sym_end] = ACTIONS(4085), - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_COLON] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), + [anon_sym_RPAREN] = ACTIONS(5726), }, - [4551] = { - [sym_atomic_expr] = STATE(2196), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(5087), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [4976] = { + [ts_builtin_sym_end] = ACTIONS(3863), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_RBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + [anon_sym_with] = ACTIONS(3863), }, - [4552] = { - [sym_lambda_bindings] = STATE(4884), - [sym_untyped_bindings] = STATE(4885), - [sym_typed_bindings] = STATE(4885), - [anon_sym_DOT] = ACTIONS(2708), - [anon_sym_DOT_DOT] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2714), + [4977] = { + [anon_sym_RBRACE] = ACTIONS(5728), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4589), - [anon_sym_LPAREN] = ACTIONS(2718), }, - [4553] = { - [sym_forall_bindings] = STATE(4886), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [4978] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5728), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [4554] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2949), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(4887), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4555] = { - [sym__application] = STATE(2212), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(4556), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(5087), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), - }, - [4556] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(1252), - [sym__atomic_expr_curly] = STATE(1253), - [sym__atomic_expr_no_curly] = STATE(1253), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(1556), - [sym_set_n] = ACTIONS(1556), - [sym_name_at] = ACTIONS(5087), - [sym_qualified_name] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1562), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_Prop] = ACTIONS(1556), - [anon_sym_Set] = ACTIONS(1556), - [anon_sym_quote] = ACTIONS(1556), - [anon_sym_quoteTerm] = ACTIONS(1556), - [anon_sym_unquote] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LPAREN_PIPE] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), - }, - [4557] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(5095), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4558] = { - [sym_atomic_expr] = STATE(3059), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(5095), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(3552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3554), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3556), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), }, - [4559] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5441), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [4560] = { + [4979] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5443), - [anon_sym_PIPE] = ACTIONS(162), - }, - [4561] = { - [sym_expr] = STATE(3069), - [sym__expr1] = STATE(4559), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4560), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4561), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4555), - [aux_sym__application_repeat1] = STATE(4562), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(5095), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4562] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(5095), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3548), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4563] = { - [ts_builtin_sym_end] = ACTIONS(4121), - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), - }, - [4564] = { - [sym_atomic_expr] = STATE(4018), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(5099), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - }, - [4565] = { - [sym_expr] = STATE(4022), - [sym__expr1] = STATE(4559), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4560), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4561), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4555), - [aux_sym__application_repeat1] = STATE(4562), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(5095), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4566] = { - [sym__application] = STATE(4026), - [sym__expr2] = STATE(1251), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [aux_sym__application_repeat1] = STATE(4890), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(5099), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5445), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - }, - [4567] = { - [sym_semi] = STATE(4891), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4892), - [ts_builtin_sym_end] = ACTIONS(1048), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(5728), }, - [4568] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(5099), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5445), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), + [4980] = { + [ts_builtin_sym_end] = ACTIONS(3863), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_RBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), }, - [4569] = { - [sym_expr] = STATE(4016), - [sym__expr1] = STATE(2982), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(2983), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(2984), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2978), - [aux_sym__application_repeat1] = STATE(2985), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3471), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3465), - [anon_sym_forall] = ACTIONS(3467), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [4981] = { + [anon_sym_RBRACE] = ACTIONS(5730), + [sym_comment] = ACTIONS(86), }, - [4570] = { - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), + [4982] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5730), + [sym_comment] = ACTIONS(86), }, - [4571] = { - [sym_semi] = STATE(3913), - [aux_sym__declarations1_repeat1] = STATE(4571), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), + [4983] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5730), }, - [4572] = { - [ts_builtin_sym_end] = ACTIONS(3524), - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_where] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_RPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), + [4984] = { + [ts_builtin_sym_end] = ACTIONS(3863), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_RBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), }, - [4573] = { - [anon_sym_RBRACE] = ACTIONS(5447), + [4985] = { + [anon_sym_RBRACE] = ACTIONS(5732), [sym_comment] = ACTIONS(86), }, - [4574] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5447), + [4986] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5732), [sym_comment] = ACTIONS(86), }, - [4575] = { + [4987] = { [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5447), + [anon_sym_RPAREN] = ACTIONS(5732), }, - [4576] = { - [ts_builtin_sym_end] = ACTIONS(4085), - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), + [4988] = { + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + [anon_sym_with] = ACTIONS(3863), }, - [4577] = { - [sym_atomic_expr] = STATE(2217), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(5109), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2722), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [4989] = { + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), }, - [4578] = { - [sym_atomic_expr] = STATE(2217), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(5109), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2728), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [4990] = { + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), }, - [4579] = { - [sym_lambda_bindings] = STATE(4894), - [sym_untyped_bindings] = STATE(4895), - [sym_typed_bindings] = STATE(4895), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_DOT_DOT] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2742), + [4991] = { + [anon_sym_RBRACE] = ACTIONS(5734), [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(2746), }, - [4580] = { - [sym_forall_bindings] = STATE(4896), - [sym_untyped_bindings] = STATE(81), - [sym_typed_bindings] = STATE(81), - [sym_typed_untyped_bindings1] = STATE(82), - [aux_sym_typed_untyped_bindings1_repeat1] = STATE(83), - [anon_sym_DOT] = ACTIONS(92), - [anon_sym_DOT_DOT] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(96), - [anon_sym_LBRACE_LBRACE] = ACTIONS(98), + [4992] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5734), [sym_comment] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(100), - }, - [4581] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3009), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(4897), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1034), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_forall] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1040), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4582] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5449), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), }, - [4583] = { + [4993] = { [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5451), - [anon_sym_PIPE] = ACTIONS(162), - }, - [4584] = { - [sym_expr] = STATE(2237), - [sym__expr1] = STATE(4582), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4583), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4584), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4585), - [aux_sym__application_repeat1] = STATE(4586), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(5109), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(5111), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4585] = { - [sym__application] = STATE(2244), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(2245), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [aux_sym__expr1_repeat1] = STATE(145), - [aux_sym__application_repeat1] = STATE(4900), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(5453), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(5453), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - }, - [4586] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(5109), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2722), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(5734), }, - [4587] = { - [ts_builtin_sym_end] = ACTIONS(4121), - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), + [4994] = { + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), }, - [4588] = { - [sym_atomic_expr] = STATE(4042), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(5119), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), + [4995] = { + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), }, - [4589] = { - [sym_expr] = STATE(4046), - [sym__expr1] = STATE(4582), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4583), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4584), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4585), - [aux_sym__application_repeat1] = STATE(4586), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(5109), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(5111), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [4996] = { + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), }, - [4590] = { - [sym__application] = STATE(4050), - [sym__expr2] = STATE(1270), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [aux_sym__application_repeat1] = STATE(4902), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(5119), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5455), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), + [4997] = { + [anon_sym_RBRACE] = ACTIONS(5736), + [sym_comment] = ACTIONS(86), }, - [4591] = { - [sym_semi] = STATE(4903), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4904), - [ts_builtin_sym_end] = ACTIONS(1048), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), + [4998] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5736), + [sym_comment] = ACTIONS(86), }, - [4592] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(5119), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5455), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), + [4999] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5736), }, - [4593] = { - [sym_expr] = STATE(4040), - [sym__expr1] = STATE(3027), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3028), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3029), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3030), - [aux_sym__application_repeat1] = STATE(3031), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3497), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3499), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3501), - [anon_sym_forall] = ACTIONS(3503), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [5000] = { + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), }, - [4594] = { - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), + [5001] = { + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), }, - [4595] = { - [sym_semi] = STATE(3942), - [aux_sym__declarations1_repeat1] = STATE(4595), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), + [5002] = { + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), }, - [4596] = { - [ts_builtin_sym_end] = ACTIONS(3524), - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_where] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_RPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), + [5003] = { + [sym__layout_semicolon] = ACTIONS(4392), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4392), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4392), + [anon_sym_EQ] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), }, - [4597] = { - [sym_expr] = STATE(3952), - [sym__expr1] = STATE(3945), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(3946), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(3947), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2466), - [aux_sym__application_repeat1] = STATE(2474), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2966), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [5004] = { + [anon_sym_RBRACE] = ACTIONS(5738), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5740), }, - [4598] = { - [sym_expr] = STATE(3966), - [sym__expr1] = STATE(3958), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(3959), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(3960), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3269), - [aux_sym__application_repeat1] = STATE(3961), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(4641), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [5005] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5738), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5742), }, - [4599] = { - [sym_expr] = STATE(4040), - [sym__expr1] = STATE(3111), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3112), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3113), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3114), - [aux_sym__application_repeat1] = STATE(3115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3614), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), + [5006] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5738), }, - [4600] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3973), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(4600), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(2972), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(2975), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(2978), - [anon_sym_let] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_module] = ACTIONS(680), + [5007] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5744), }, - [4601] = { - [ts_builtin_sym_end] = ACTIONS(2934), - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), - [anon_sym_with] = ACTIONS(2934), + [5008] = { + [sym__layout_semicolon] = ACTIONS(1925), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), }, - [4602] = { - [sym_expr] = STATE(4905), + [5009] = { + [sym_expr] = STATE(5211), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -149380,8 +155942,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4603] = { - [sym_expr] = STATE(4906), + [5010] = { + [sym__layout_semicolon] = ACTIONS(2366), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + }, + [5011] = { + [sym_expr] = STATE(5212), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -149417,8 +156009,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4604] = { - [sym_expr] = STATE(4907), + [5012] = { + [sym_vclose] = STATE(5214), + [sym__layout_close_brace] = ACTIONS(5746), + [sym_comment] = ACTIONS(86), + }, + [5013] = { + [sym_expr] = STATE(5215), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -149454,407 +156051,755 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4605] = { - [anon_sym_RBRACE] = ACTIONS(5457), + [5014] = { + [anon_sym_RBRACE] = ACTIONS(5526), [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5528), }, - [4606] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5457), - [sym_comment] = ACTIONS(86), + [5015] = { + [sym_vclose] = STATE(5216), + [sym__expr1] = STATE(1030), + [sym__application] = STATE(1031), + [sym__expr2] = STATE(1032), + [sym__atomic_exprs1] = STATE(15), + [sym_atomic_expr] = STATE(1033), + [sym__atomic_expr_curly] = STATE(1034), + [sym__atomic_expr_no_curly] = STATE(1034), + [sym_lhs] = STATE(1035), + [sym__declaration] = STATE(1036), + [sym_function_clause] = STATE(1037), + [sym__declarations1] = STATE(5217), + [aux_sym__expr1_repeat1] = STATE(1039), + [aux_sym__application_repeat1] = STATE(1040), + [sym__layout_close_brace] = ACTIONS(5746), + [sym_literal] = ACTIONS(1266), + [sym_set_n] = ACTIONS(1266), + [sym_name_at] = ACTIONS(1268), + [sym_qualified_name] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1272), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_forall] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_Prop] = ACTIONS(1266), + [anon_sym_Set] = ACTIONS(1266), + [anon_sym_quote] = ACTIONS(1266), + [anon_sym_quoteTerm] = ACTIONS(1266), + [anon_sym_unquote] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1266), }, - [4607] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), + [5016] = { + [sym__layout_semicolon] = ACTIONS(3793), + [sym_literal] = ACTIONS(1284), + [sym_set_n] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [sym_name_at] = ACTIONS(1284), + [sym_qualified_name] = ACTIONS(1284), + [anon_sym__] = ACTIONS(1284), + [anon_sym_DOT] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1284), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_forall] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1284), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_Prop] = ACTIONS(1284), + [anon_sym_Set] = ACTIONS(1284), + [anon_sym_quote] = ACTIONS(1284), + [anon_sym_quoteTerm] = ACTIONS(1284), + [anon_sym_unquote] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LPAREN_PIPE] = ACTIONS(1284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1284), + [anon_sym_module] = ACTIONS(1284), }, - [4608] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), + [5017] = { + [sym__layout_semicolon] = ACTIONS(3795), + [sym_literal] = ACTIONS(1286), + [sym_set_n] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [sym_name_at] = ACTIONS(1286), + [sym_qualified_name] = ACTIONS(1286), + [anon_sym__] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1286), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1286), + [anon_sym_forall] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1286), + [anon_sym_Prop] = ACTIONS(1286), + [anon_sym_Set] = ACTIONS(1286), + [anon_sym_quote] = ACTIONS(1286), + [anon_sym_quoteTerm] = ACTIONS(1286), + [anon_sym_unquote] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LPAREN_PIPE] = ACTIONS(1286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), }, - [4609] = { - [sym_expr] = STATE(4543), - [sym__expr1] = STATE(3994), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3995), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3996), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2460), - [aux_sym__application_repeat1] = STATE(3997), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4671), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [5018] = { + [sym_comment] = ACTIONS(86), + [anon_sym_where] = ACTIONS(5748), }, - [4610] = { - [ts_builtin_sym_end] = ACTIONS(3066), - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), + [5019] = { + [sym__layout_semicolon] = ACTIONS(3799), + [sym_literal] = ACTIONS(1292), + [sym_set_n] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [sym_name_at] = ACTIONS(1292), + [sym_qualified_name] = ACTIONS(1292), + [anon_sym__] = ACTIONS(1292), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1292), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_where] = ACTIONS(1292), + [anon_sym_forall] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_Prop] = ACTIONS(1292), + [anon_sym_Set] = ACTIONS(1292), + [anon_sym_quote] = ACTIONS(1292), + [anon_sym_quoteTerm] = ACTIONS(1292), + [anon_sym_unquote] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LPAREN_PIPE] = ACTIONS(1292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1292), + [anon_sym_module] = ACTIONS(1292), }, - [4611] = { - [sym_expr] = STATE(4909), - [sym__expr1] = STATE(3994), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(3995), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(3996), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2460), - [aux_sym__application_repeat1] = STATE(3997), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4671), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2952), - [anon_sym_forall] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [5020] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), }, - [4612] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), + [5021] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), }, - [4613] = { - [sym_semi] = STATE(4003), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4613), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), + [5022] = { + [anon_sym_RBRACE] = ACTIONS(5750), + [sym_comment] = ACTIONS(86), }, - [4614] = { + [5023] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5750), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5457), }, - [4615] = { - [sym__expr1] = STATE(3434), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3435), - [sym__declaration] = STATE(4544), - [sym_function_clause] = STATE(1038), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [5024] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5750), + }, + [5025] = { + [sym__layout_semicolon] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(3407), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_RBRACE] = ACTIONS(3409), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3409), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3409), + [anon_sym_EQ] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_COLON] = ACTIONS(3409), + }, + [5026] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + }, + [5027] = { + [sym__layout_semicolon] = ACTIONS(5216), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + }, + [5028] = { + [sym__layout_semicolon] = ACTIONS(5218), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + }, + [5029] = { + [sym__layout_semicolon] = ACTIONS(4392), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [anon_sym_SEMI] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + [anon_sym_rewrite] = ACTIONS(4512), + [anon_sym_with] = ACTIONS(4512), + }, + [5030] = { + [sym__layout_semicolon] = ACTIONS(3011), + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), + }, + [5031] = { + [sym_expr] = STATE(5220), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4616] = { - [sym_semi] = STATE(4615), - [aux_sym__declarations1_repeat1] = STATE(4910), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_with] = ACTIONS(2550), + [5032] = { + [sym_expr] = STATE(5221), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4617] = { - [sym__expr1] = STATE(3434), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3435), - [sym__declaration] = STATE(4008), - [sym_function_clause] = STATE(1038), - [sym__declarations1] = STATE(4546), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [5033] = { + [sym_expr] = STATE(5222), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - [anon_sym_with] = ACTIONS(2552), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4618] = { - [ts_builtin_sym_end] = ACTIONS(2934), - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), + [5034] = { + [anon_sym_RBRACE] = ACTIONS(5752), + [sym_comment] = ACTIONS(86), + }, + [5035] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5752), + [sym_comment] = ACTIONS(86), + }, + [5036] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + }, + [5037] = { + [sym__layout_semicolon] = ACTIONS(3441), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + [anon_sym_with] = ACTIONS(2965), + }, + [5038] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5752), + }, + [5039] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [5040] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [5041] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + [anon_sym_with] = ACTIONS(3017), + }, + [5042] = { + [sym__layout_semicolon] = ACTIONS(4670), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + [anon_sym_with] = ACTIONS(2262), + }, + [5043] = { + [sym_vclose] = STATE(5224), + [sym__layout_close_brace] = ACTIONS(5554), + [sym_comment] = ACTIONS(86), + }, + [5044] = { + [sym_vopen] = STATE(4670), + [sym_declarations] = STATE(4671), + [sym__declarations0] = STATE(5225), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [5045] = { + [sym__layout_semicolon] = ACTIONS(3011), + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), }, - [4619] = { - [sym_expr] = STATE(4911), + [5046] = { + [sym_expr] = STATE(5226), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -149890,8 +156835,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4620] = { - [sym_expr] = STATE(4912), + [5047] = { + [sym_expr] = STATE(5227), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -149927,8 +156872,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4621] = { - [sym_expr] = STATE(4913), + [5048] = { + [sym_expr] = STATE(5228), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -149964,362 +156909,470 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4622] = { - [anon_sym_RBRACE] = ACTIONS(5459), - [sym_comment] = ACTIONS(86), - }, - [4623] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5459), - [sym_comment] = ACTIONS(86), - }, - [4624] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [4625] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - }, - [4626] = { - [ts_builtin_sym_end] = ACTIONS(3066), - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - }, - [4627] = { - [sym_expr] = STATE(4915), - [sym__expr1] = STATE(3945), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(3946), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(3947), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2466), - [aux_sym__application_repeat1] = STATE(2474), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(2966), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2960), - [anon_sym_forall] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4628] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [4629] = { - [sym_semi] = STATE(4028), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4629), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [4630] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5459), - }, - [4631] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3440), - [sym__declaration] = STATE(4570), - [sym_function_clause] = STATE(1059), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4632] = { - [sym_semi] = STATE(4631), - [aux_sym__declarations1_repeat1] = STATE(4916), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - }, - [4633] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3440), - [sym__declaration] = STATE(4032), - [sym_function_clause] = STATE(1059), - [sym__declarations1] = STATE(4572), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [5049] = { + [anon_sym_RBRACE] = ACTIONS(5754), + [sym_comment] = ACTIONS(86), + }, + [5050] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5754), + [sym_comment] = ACTIONS(86), + }, + [5051] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + }, + [5052] = { + [sym__layout_semicolon] = ACTIONS(3441), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + }, + [5053] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5754), + }, + [5054] = { + [sym__layout_semicolon] = ACTIONS(4670), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + }, + [5055] = { + [sym_vclose] = STATE(5230), + [sym__layout_close_brace] = ACTIONS(5570), + [sym_comment] = ACTIONS(86), + }, + [5056] = { + [sym_vopen] = STATE(4686), + [sym_declarations] = STATE(4687), + [sym__declarations0] = STATE(5231), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [5057] = { + [sym__layout_semicolon] = ACTIONS(4392), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4392), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + }, + [5058] = { + [sym_expr] = STATE(4610), + [sym__expr1] = STATE(4696), + [sym__application] = STATE(3121), + [sym__expr2] = STATE(3122), + [sym__atomic_exprs1] = STATE(4697), + [sym_atomic_expr] = STATE(3124), + [sym__atomic_expr_curly] = STATE(3125), + [sym__atomic_expr_no_curly] = STATE(3125), + [sym_tele_arrow] = STATE(4698), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3320), + [aux_sym__application_repeat1] = STATE(3321), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(3637), + [sym_set_n] = ACTIONS(3637), + [sym_name_at] = ACTIONS(3837), + [sym_qualified_name] = ACTIONS(3637), + [anon_sym__] = ACTIONS(3637), + [anon_sym_DOT] = ACTIONS(3839), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(3643), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3645), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3841), + [anon_sym_forall] = ACTIONS(3843), + [anon_sym_let] = ACTIONS(3845), + [anon_sym_QMARK] = ACTIONS(3637), + [anon_sym_Prop] = ACTIONS(3637), + [anon_sym_Set] = ACTIONS(3637), + [anon_sym_quote] = ACTIONS(3637), + [anon_sym_quoteTerm] = ACTIONS(3637), + [anon_sym_unquote] = ACTIONS(3637), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_LPAREN_PIPE] = ACTIONS(3655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3637), + }, + [5059] = { + [sym_expr] = STATE(5041), + [sym__expr1] = STATE(4702), + [sym__application] = STATE(2267), + [sym__expr2] = STATE(2268), + [sym__atomic_exprs1] = STATE(4703), + [sym_atomic_expr] = STATE(4059), + [sym__atomic_expr_curly] = STATE(4060), + [sym__atomic_expr_no_curly] = STATE(4060), + [sym_tele_arrow] = STATE(4704), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3303), + [aux_sym__application_repeat1] = STATE(4705), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(4630), + [sym_set_n] = ACTIONS(4630), + [sym_name_at] = ACTIONS(5226), + [sym_qualified_name] = ACTIONS(4630), + [anon_sym__] = ACTIONS(4630), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(4636), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4638), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - }, - [4634] = { - [ts_builtin_sym_end] = ACTIONS(2934), - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), - }, - [4635] = { - [sym_expr] = STATE(4917), + [anon_sym_BSLASH] = ACTIONS(3823), + [anon_sym_forall] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3827), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_Prop] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4630), + [anon_sym_quote] = ACTIONS(4630), + [anon_sym_quoteTerm] = ACTIONS(4630), + [anon_sym_unquote] = ACTIONS(4630), + [anon_sym_LPAREN] = ACTIONS(4640), + [anon_sym_LPAREN_PIPE] = ACTIONS(4642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), + }, + [5060] = { + [sym_expr] = STATE(5026), + [sym__expr1] = STATE(4712), + [sym__application] = STATE(2283), + [sym__expr2] = STATE(2284), + [sym__atomic_exprs1] = STATE(4713), + [sym_atomic_expr] = STATE(2300), + [sym__atomic_expr_curly] = STATE(2301), + [sym__atomic_expr_no_curly] = STATE(2301), + [sym_tele_arrow] = STATE(4714), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3309), + [aux_sym__application_repeat1] = STATE(4715), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(2748), + [sym_set_n] = ACTIONS(2748), + [sym_name_at] = ACTIONS(5232), + [sym_qualified_name] = ACTIONS(2748), + [anon_sym__] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(5234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2756), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3831), + [anon_sym_forall] = ACTIONS(3833), + [anon_sym_let] = ACTIONS(3835), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_Prop] = ACTIONS(2748), + [anon_sym_Set] = ACTIONS(2748), + [anon_sym_quote] = ACTIONS(2748), + [anon_sym_quoteTerm] = ACTIONS(2748), + [anon_sym_unquote] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LPAREN_PIPE] = ACTIONS(2760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), + }, + [5061] = { + [anon_sym_RBRACE] = ACTIONS(5756), + [sym_comment] = ACTIONS(86), + }, + [5062] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5756), + [sym_comment] = ACTIONS(86), + }, + [5063] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5756), + }, + [5064] = { + [sym__layout_semicolon] = ACTIONS(3409), + [sym__layout_close_brace] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(3407), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3409), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3409), + [anon_sym_EQ] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + }, + [5065] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym__layout_close_brace] = ACTIONS(1444), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + }, + [5066] = { + [sym__layout_semicolon] = ACTIONS(5216), + [sym__layout_close_brace] = ACTIONS(5216), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + }, + [5067] = { + [sym__layout_semicolon] = ACTIONS(5218), + [sym__layout_close_brace] = ACTIONS(5218), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + }, + [5068] = { + [sym__layout_semicolon] = ACTIONS(4392), + [sym__layout_close_brace] = ACTIONS(4392), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4392), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + }, + [5069] = { + [anon_sym_RBRACE] = ACTIONS(5758), + [sym_comment] = ACTIONS(86), + }, + [5070] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5758), + [sym_comment] = ACTIONS(86), + }, + [5071] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5758), + }, + [5072] = { + [sym__layout_semicolon] = ACTIONS(3409), + [sym__layout_close_brace] = ACTIONS(3409), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [anon_sym_SEMI] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + [anon_sym_rewrite] = ACTIONS(3863), + [anon_sym_with] = ACTIONS(3863), + }, + [5073] = { + [anon_sym_RBRACE] = ACTIONS(5760), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5762), + }, + [5074] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5760), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5764), + }, + [5075] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5760), + }, + [5076] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5766), + }, + [5077] = { + [sym__layout_semicolon] = ACTIONS(1925), + [sym__layout_close_brace] = ACTIONS(1925), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), + }, + [5078] = { + [sym_expr] = STATE(5238), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -150355,8 +157408,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4636] = { - [sym_expr] = STATE(4918), + [5079] = { + [sym__layout_semicolon] = ACTIONS(2366), + [sym__layout_close_brace] = ACTIONS(2366), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), + }, + [5080] = { + [sym_expr] = STATE(5239), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -150392,8 +157477,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4637] = { - [sym_expr] = STATE(4919), + [5081] = { + [sym_vclose] = STATE(5240), + [sym__layout_close_brace] = ACTIONS(5690), + [sym_comment] = ACTIONS(86), + }, + [5082] = { + [sym_expr] = STATE(5241), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -150429,767 +157519,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4638] = { - [anon_sym_RBRACE] = ACTIONS(5461), - [sym_comment] = ACTIONS(86), - }, - [4639] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5461), - [sym_comment] = ACTIONS(86), - }, - [4640] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [4641] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - }, - [4642] = { - [ts_builtin_sym_end] = ACTIONS(3066), - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - }, - [4643] = { - [sym_expr] = STATE(4921), - [sym__expr1] = STATE(3111), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3112), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3113), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3114), - [aux_sym__application_repeat1] = STATE(3115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3614), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4644] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [4645] = { - [sym_semi] = STATE(4052), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4645), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [4646] = { + [5083] = { + [anon_sym_RBRACE] = ACTIONS(5594), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5461), - }, - [4647] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3973), - [sym__declaration] = STATE(4594), - [sym_function_clause] = STATE(1085), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4648] = { - [sym_semi] = STATE(4647), - [aux_sym__declarations1_repeat1] = STATE(4922), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - }, - [4649] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3973), - [sym__declaration] = STATE(4056), - [sym_function_clause] = STATE(1085), - [sym__declarations1] = STATE(4596), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_module] = ACTIONS(2552), - }, - [4650] = { - [sym_expr] = STATE(3952), - [sym__expr1] = STATE(4062), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4063), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4064), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3594), - [aux_sym__application_repeat1] = STATE(4065), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4725), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4727), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4651] = { - [sym_expr] = STATE(4101), - [sym__expr1] = STATE(4110), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(4111), - [sym_atomic_expr] = STATE(3339), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_tele_arrow] = STATE(4112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3263), - [aux_sym__application_repeat1] = STATE(4113), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(4751), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(4753), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3911), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), - }, - [4652] = { - [sym__expr1] = STATE(4137), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1413), - [sym__atomic_expr_curly] = STATE(1414), - [sym__atomic_expr_no_curly] = STATE(1414), - [aux_sym__expr1_repeat1] = STATE(3263), - [aux_sym__application_repeat1] = STATE(3264), - [sym_literal] = ACTIONS(1744), - [sym_set_n] = ACTIONS(1744), - [sym_name_at] = ACTIONS(3803), - [sym_qualified_name] = ACTIONS(1744), - [anon_sym__] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1750), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(1744), - [anon_sym_Prop] = ACTIONS(1744), - [anon_sym_Set] = ACTIONS(1744), - [anon_sym_quote] = ACTIONS(1744), - [anon_sym_quoteTerm] = ACTIONS(1744), - [anon_sym_unquote] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LPAREN_PIPE] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1744), - }, - [4653] = { - [sym_with_expressions] = STATE(4138), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE_RBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(5195), - }, - [4654] = { - [sym_expr] = STATE(4139), - [sym__expr1] = STATE(4110), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(4111), - [sym_atomic_expr] = STATE(3339), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_tele_arrow] = STATE(4112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3263), - [aux_sym__application_repeat1] = STATE(4113), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(4751), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(4753), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3911), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), - }, - [4655] = { - [sym__expr1] = STATE(4071), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4072), - [sym__declaration] = STATE(2373), - [sym_function_clause] = STATE(2374), - [aux_sym_source_file_repeat1] = STATE(4655), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(1802), - [sym_set_n] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(3829), - [sym_qualified_name] = ACTIONS(1802), - [anon_sym__] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE_RBRACE] = ACTIONS(680), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(3832), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(3835), - [anon_sym_let] = ACTIONS(3838), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1802), - [anon_sym_Prop] = ACTIONS(1802), - [anon_sym_Set] = ACTIONS(1802), - [anon_sym_quote] = ACTIONS(1802), - [anon_sym_quoteTerm] = ACTIONS(1802), - [anon_sym_unquote] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LPAREN_PIPE] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), - }, - [4656] = { - [sym_expr] = STATE(4150), - [sym__expr1] = STATE(3958), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(3959), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(3960), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3269), - [aux_sym__application_repeat1] = STATE(3961), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(4641), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - }, - [4657] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4077), - [sym__declaration] = STATE(2393), - [sym_function_clause] = STATE(2394), - [aux_sym_source_file_repeat1] = STATE(4657), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(1802), - [sym_set_n] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(3829), - [sym_qualified_name] = ACTIONS(1802), - [anon_sym__] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE_RBRACE] = ACTIONS(680), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(3832), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(3835), - [anon_sym_let] = ACTIONS(3838), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1802), - [anon_sym_Prop] = ACTIONS(1802), - [anon_sym_Set] = ACTIONS(1802), - [anon_sym_quote] = ACTIONS(1802), - [anon_sym_quoteTerm] = ACTIONS(1802), - [anon_sym_unquote] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LPAREN_PIPE] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - }, - [4658] = { - [sym_expr] = STATE(4176), - [sym__expr1] = STATE(3276), - [sym__application] = STATE(1446), - [sym__expr2] = STATE(1447), - [sym__atomic_exprs1] = STATE(3277), - [sym_atomic_expr] = STATE(1449), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_tele_arrow] = STATE(3278), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3279), - [aux_sym__application_repeat1] = STATE(3280), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(3819), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1788), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), - }, - [4659] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4082), - [sym__declaration] = STATE(2419), - [sym_function_clause] = STATE(2420), - [aux_sym_source_file_repeat1] = STATE(4659), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(1802), - [sym_set_n] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(3829), - [sym_qualified_name] = ACTIONS(1802), - [anon_sym__] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE_RBRACE] = ACTIONS(680), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(3832), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(3835), - [anon_sym_let] = ACTIONS(3838), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1802), - [anon_sym_Prop] = ACTIONS(1802), - [anon_sym_Set] = ACTIONS(1802), - [anon_sym_quote] = ACTIONS(1802), - [anon_sym_quoteTerm] = ACTIONS(1802), - [anon_sym_unquote] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LPAREN_PIPE] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(680), - }, - [4660] = { - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_COLON] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - [anon_sym_rewrite] = ACTIONS(4821), - [anon_sym_with] = ACTIONS(4821), - }, - [4661] = { - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), - [anon_sym_with] = ACTIONS(2934), + [anon_sym_COLON] = ACTIONS(5596), }, - [4662] = { - [sym_expr] = STATE(4923), + [5084] = { + [sym_expr] = STATE(5092), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -151210,6 +157546,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(5616), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -151225,8 +157562,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4663] = { - [sym_expr] = STATE(4924), + [5085] = { + [sym_expr] = STATE(5093), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -151248,6 +157585,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5618), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -151262,8 +157600,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4664] = { - [sym_expr] = STATE(4925), + [5086] = { + [sym_expr] = STATE(5094), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -151296,497 +157634,330 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_quoteTerm] = ACTIONS(32), [anon_sym_unquote] = ACTIONS(32), [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(5618), [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4665] = { - [anon_sym_RBRACE] = ACTIONS(5463), - [sym_comment] = ACTIONS(86), - }, - [4666] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5463), - [sym_comment] = ACTIONS(86), - }, - [4667] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), - }, - [4668] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), - }, - [4669] = { - [sym_expr] = STATE(4677), - [sym__expr1] = STATE(4110), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(4111), - [sym_atomic_expr] = STATE(3339), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_tele_arrow] = STATE(4112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3263), - [aux_sym__application_repeat1] = STATE(4113), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(4751), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(4753), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3911), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), - }, - [4670] = { - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), - }, - [4671] = { - [sym_expr] = STATE(4927), - [sym__expr1] = STATE(4110), - [sym__application] = STATE(1411), - [sym__expr2] = STATE(1412), - [sym__atomic_exprs1] = STATE(4111), - [sym_atomic_expr] = STATE(3339), - [sym__atomic_expr_curly] = STATE(3340), - [sym__atomic_expr_no_curly] = STATE(3340), - [sym_tele_arrow] = STATE(4112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3263), - [aux_sym__application_repeat1] = STATE(4113), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3903), - [sym_set_n] = ACTIONS(3903), - [sym_name_at] = ACTIONS(4751), - [sym_qualified_name] = ACTIONS(3903), - [anon_sym__] = ACTIONS(3903), - [anon_sym_DOT] = ACTIONS(4753), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3911), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3805), - [anon_sym_forall] = ACTIONS(3807), - [anon_sym_let] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_Prop] = ACTIONS(3903), - [anon_sym_Set] = ACTIONS(3903), - [anon_sym_quote] = ACTIONS(3903), - [anon_sym_quoteTerm] = ACTIONS(3903), - [anon_sym_unquote] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_LPAREN_PIPE] = ACTIONS(3915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3903), - }, - [4672] = { - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - }, - [4673] = { - [sym_semi] = STATE(4119), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4673), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - }, - [4674] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5463), - }, - [4675] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), - }, - [4676] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), - }, - [4677] = { - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3153), + [5087] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), - [anon_sym_with] = ACTIONS(3153), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), + [anon_sym_with] = ACTIONS(186), }, - [4678] = { - [sym__expr1] = STATE(4071), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4072), - [sym__declaration] = STATE(4928), - [sym_function_clause] = STATE(2374), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), + [5088] = { + [sym_expr] = STATE(5092), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(208), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [4679] = { - [sym_semi] = STATE(4678), - [aux_sym__declarations1_repeat1] = STATE(4929), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_with] = ACTIONS(2550), + [5089] = { + [sym_expr] = STATE(5093), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5618), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [4680] = { - [sym__expr1] = STATE(4071), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4072), - [sym__declaration] = STATE(4140), - [sym_function_clause] = STATE(2374), - [sym__declarations1] = STATE(4930), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2552), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - [anon_sym_with] = ACTIONS(2552), + [5090] = { + [sym_expr] = STATE(5094), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(171), + [sym__atomic_expr_curly] = STATE(172), + [sym__atomic_expr_no_curly] = STATE(172), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(206), + [sym_set_n] = ACTIONS(206), + [sym_name_at] = ACTIONS(268), + [sym_qualified_name] = ACTIONS(206), + [anon_sym__] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(5618), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [4681] = { - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), + [5091] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), + [anon_sym_with] = ACTIONS(228), }, - [4682] = { - [sym_expr] = STATE(4931), + [5092] = { + [anon_sym_RBRACE] = ACTIONS(5768), + [sym_comment] = ACTIONS(86), + }, + [5093] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5770), + [sym_comment] = ACTIONS(86), + }, + [5094] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5770), + }, + [5095] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(5770), + }, + [5096] = { + [sym_expr] = STATE(5244), + [sym__expr1] = STATE(4777), + [sym__application] = STATE(3420), + [sym__expr2] = STATE(3421), + [sym__atomic_exprs1] = STATE(4778), + [sym_atomic_expr] = STATE(4779), + [sym__atomic_expr_curly] = STATE(4780), + [sym__atomic_expr_no_curly] = STATE(4780), + [sym_tele_arrow] = STATE(4781), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3424), + [aux_sym__application_repeat1] = STATE(4782), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(5296), + [sym_set_n] = ACTIONS(5296), + [sym_name_at] = ACTIONS(5298), + [sym_qualified_name] = ACTIONS(5296), + [anon_sym__] = ACTIONS(5296), + [anon_sym_DOT] = ACTIONS(5300), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(5302), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5304), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3969), + [anon_sym_forall] = ACTIONS(3971), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(5296), + [anon_sym_Prop] = ACTIONS(5296), + [anon_sym_Set] = ACTIONS(5296), + [anon_sym_quote] = ACTIONS(5296), + [anon_sym_quoteTerm] = ACTIONS(5296), + [anon_sym_unquote] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_LPAREN_PIPE] = ACTIONS(5308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5296), + }, + [5097] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym__layout_close_brace] = ACTIONS(781), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), + }, + [5098] = { + [anon_sym_RBRACE] = ACTIONS(5772), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5774), + }, + [5099] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5772), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5776), + }, + [5100] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5772), + }, + [5101] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5778), + }, + [5102] = { + [sym__layout_semicolon] = ACTIONS(1925), + [sym__layout_close_brace] = ACTIONS(1925), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + }, + [5103] = { + [sym_expr] = STATE(5249), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -151822,8 +157993,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4683] = { - [sym_expr] = STATE(4932), + [5104] = { + [sym__layout_semicolon] = ACTIONS(2366), + [sym__layout_close_brace] = ACTIONS(2366), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + }, + [5105] = { + [sym_expr] = STATE(5250), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -151859,8 +158061,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4684] = { - [sym_expr] = STATE(4933), + [5106] = { + [sym_vclose] = STATE(5251), + [sym__layout_close_brace] = ACTIONS(5708), + [sym_comment] = ACTIONS(86), + }, + [5107] = { + [sym_expr] = STATE(5252), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -151896,352 +158103,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4685] = { - [anon_sym_RBRACE] = ACTIONS(5465), - [sym_comment] = ACTIONS(86), - }, - [4686] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5465), - [sym_comment] = ACTIONS(86), - }, - [4687] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [4688] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - }, - [4689] = { - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - }, - [4690] = { - [sym_expr] = STATE(4935), - [sym__expr1] = STATE(3958), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(3959), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(3960), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3269), - [aux_sym__application_repeat1] = STATE(3961), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(4641), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), - }, - [4691] = { - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [4692] = { - [sym_semi] = STATE(4162), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4692), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [4693] = { + [5108] = { + [anon_sym_RBRACE] = ACTIONS(5624), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5465), - }, - [4694] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4077), - [sym__declaration] = STATE(4936), - [sym_function_clause] = STATE(2394), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [4695] = { - [sym_semi] = STATE(4694), - [aux_sym__declarations1_repeat1] = STATE(4937), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - }, - [4696] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4077), - [sym__declaration] = STATE(4166), - [sym_function_clause] = STATE(2394), - [sym__declarations1] = STATE(4938), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2552), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - }, - [4697] = { - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), + [anon_sym_COLON] = ACTIONS(5626), }, - [4698] = { - [sym_expr] = STATE(4939), + [5109] = { + [sym_expr] = STATE(5117), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -152262,6 +158130,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(36), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_RBRACE] = ACTIONS(5646), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(46), @@ -152277,8 +158146,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4699] = { - [sym_expr] = STATE(4940), + [5110] = { + [sym_expr] = STATE(5118), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -152300,6 +158169,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(62), [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5648), [sym_comment] = ACTIONS(18), [anon_sym_BSLASH] = ACTIONS(68), [anon_sym_forall] = ACTIONS(70), @@ -152314,1693 +158184,105 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4700] = { - [sym_expr] = STATE(4941), + [5111] = { + [sym_expr] = STATE(5119), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(111), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(112), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(113), - [aux_sym__application_repeat1] = STATE(114), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(120), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(124), - [anon_sym_forall] = ACTIONS(126), - [anon_sym_let] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [4701] = { - [anon_sym_RBRACE] = ACTIONS(5467), - [sym_comment] = ACTIONS(86), - }, - [4702] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5467), - [sym_comment] = ACTIONS(86), - }, - [4703] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [4704] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE_RBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - }, - [4705] = { - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - }, - [4706] = { - [sym_expr] = STATE(4943), - [sym__expr1] = STATE(3276), - [sym__application] = STATE(1446), - [sym__expr2] = STATE(1447), - [sym__atomic_exprs1] = STATE(3277), - [sym_atomic_expr] = STATE(1449), - [sym__atomic_expr_curly] = STATE(1450), - [sym__atomic_expr_no_curly] = STATE(1450), - [sym_tele_arrow] = STATE(3278), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3279), - [aux_sym__application_repeat1] = STATE(3280), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1780), - [sym_set_n] = ACTIONS(1780), - [sym_name_at] = ACTIONS(3819), - [sym_qualified_name] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1788), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3823), - [anon_sym_forall] = ACTIONS(3825), - [anon_sym_let] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_Prop] = ACTIONS(1780), - [anon_sym_Set] = ACTIONS(1780), - [anon_sym_quote] = ACTIONS(1780), - [anon_sym_quoteTerm] = ACTIONS(1780), - [anon_sym_unquote] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LPAREN_PIPE] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1780), - }, - [4707] = { - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [4708] = { - [sym_semi] = STATE(4188), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4708), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [4709] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5467), - }, - [4710] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4082), - [sym__declaration] = STATE(4944), - [sym_function_clause] = STATE(2420), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - }, - [4711] = { - [sym_semi] = STATE(4710), - [aux_sym__declarations1_repeat1] = STATE(4945), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - }, - [4712] = { - [sym__expr1] = STATE(1335), - [sym__application] = STATE(264), - [sym__expr2] = STATE(265), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(266), - [sym__atomic_expr_curly] = STATE(267), - [sym__atomic_expr_no_curly] = STATE(267), - [sym_lhs] = STATE(4082), - [sym__declaration] = STATE(4192), - [sym_function_clause] = STATE(2420), - [sym__declarations1] = STATE(4946), - [aux_sym__expr1_repeat1] = STATE(1338), - [aux_sym__application_repeat1] = STATE(1339), - [sym_literal] = ACTIONS(344), - [sym_set_n] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1668), - [sym_qualified_name] = ACTIONS(344), - [anon_sym__] = ACTIONS(344), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_LBRACE_LBRACE] = ACTIONS(350), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2552), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_Prop] = ACTIONS(344), - [anon_sym_Set] = ACTIONS(344), - [anon_sym_quote] = ACTIONS(344), - [anon_sym_quoteTerm] = ACTIONS(344), - [anon_sym_unquote] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LPAREN_PIPE] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(344), - [anon_sym_module] = ACTIONS(2552), - }, - [4713] = { - [sym_expr] = STATE(1500), - [sym__expr1] = STATE(4217), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(4218), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(4219), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2494), - [aux_sym__application_repeat1] = STATE(2495), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [4714] = { - [sym__expr2] = STATE(229), - [sym_atomic_expr] = STATE(622), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(4833), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(4833), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5469), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), - }, - [4715] = { - [sym__application] = STATE(621), - [sym__expr2] = STATE(40), - [sym_atomic_expr] = STATE(622), - [sym__atomic_expr_curly] = STATE(623), - [sym__atomic_expr_no_curly] = STATE(623), - [sym_non_absurd_lambda_clause] = STATE(624), - [sym_absurd_lambda_clause] = STATE(624), - [sym_lambda_clause] = STATE(2162), - [aux_sym__application_repeat1] = STATE(4215), - [sym_literal] = ACTIONS(797), - [sym_set_n] = ACTIONS(797), - [sym_name_at] = ACTIONS(4833), - [sym_qualified_name] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(4833), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_LBRACE_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4835), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(797), - [anon_sym_Prop] = ACTIONS(797), - [anon_sym_Set] = ACTIONS(797), - [anon_sym_quote] = ACTIONS(797), - [anon_sym_quoteTerm] = ACTIONS(797), - [anon_sym_unquote] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(813), - [anon_sym_LPAREN_PIPE] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(797), - [sym_catchall_pragma] = ACTIONS(4837), - }, - [4716] = { - [sym_semi] = STATE(4715), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4948), - [anon_sym_SEMI] = ACTIONS(1014), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(2674), - }, - [4717] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(4217), - [sym__application] = STATE(39), - [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(4218), - [sym_atomic_expr] = STATE(42), - [sym__atomic_expr_curly] = STATE(43), - [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(4219), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2494), - [aux_sym__application_repeat1] = STATE(2495), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(32), - [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), - [sym_qualified_name] = ACTIONS(32), - [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(40), - [anon_sym_LBRACE_LBRACE] = ACTIONS(44), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(32), - [anon_sym_Prop] = ACTIONS(32), - [anon_sym_Set] = ACTIONS(32), - [anon_sym_quote] = ACTIONS(32), - [anon_sym_quoteTerm] = ACTIONS(32), - [anon_sym_unquote] = ACTIONS(32), - [anon_sym_LPAREN] = ACTIONS(52), - [anon_sym_LPAREN_PIPE] = ACTIONS(54), - [anon_sym_DOT_DOT_DOT] = ACTIONS(32), - }, - [4718] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5471), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [4719] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5473), - [anon_sym_PIPE] = ACTIONS(162), - }, - [4720] = { - [sym_expr] = STATE(2237), - [sym__expr1] = STATE(4718), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4719), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4720), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3493), - [aux_sym__application_repeat1] = STATE(3494), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4059), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4061), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4721] = { - [sym_semi] = STATE(4950), - [aux_sym__declarations1_repeat1] = STATE(4951), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - }, - [4722] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5475), - }, - [4723] = { - [sym_expr] = STATE(3985), - [sym__expr1] = STATE(4726), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4727), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4728), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3476), - [aux_sym__application_repeat1] = STATE(4729), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5269), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5271), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4724] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5269), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5269), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4725] = { - [sym_atomic_expr] = STATE(3871), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5269), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5269), - [anon_sym_LBRACE] = ACTIONS(4545), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4547), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4549), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4726] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5477), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - [anon_sym_with] = ACTIONS(1092), - }, - [4727] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5479), - [anon_sym_PIPE] = ACTIONS(162), - }, - [4728] = { - [sym_expr] = STATE(3881), - [sym__expr1] = STATE(4726), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4727), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4728), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3476), - [aux_sym__application_repeat1] = STATE(4729), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5269), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5271), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4729] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [aux_sym__application_repeat1] = STATE(230), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5269), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5269), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4541), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4730] = { - [sym__expr1] = STATE(2906), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(3476), - [aux_sym__application_repeat1] = STATE(3477), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(4043), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [4731] = { - [sym_with_expressions] = STATE(2907), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(5273), - }, - [4732] = { - [sym_expr] = STATE(2915), - [sym__expr1] = STATE(4726), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4727), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4728), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3476), - [aux_sym__application_repeat1] = STATE(4729), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5269), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5271), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4733] = { - [sym__expr1] = STATE(4229), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4230), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(4733), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4071), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4074), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(4077), - [anon_sym_let] = ACTIONS(4080), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), - }, - [4734] = { - [sym_expr] = STATE(4016), - [sym__expr1] = STATE(4735), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4736), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4737), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3482), - [aux_sym__application_repeat1] = STATE(4275), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4871), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4735] = { - [sym_literal] = ACTIONS(1092), - [sym_set_n] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [sym_name_at] = ACTIONS(1092), - [sym_qualified_name] = ACTIONS(1092), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1092), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(5481), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_where] = ACTIONS(1092), - [anon_sym_forall] = ACTIONS(1092), - [anon_sym_let] = ACTIONS(1092), - [anon_sym_in] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_Prop] = ACTIONS(1092), - [anon_sym_Set] = ACTIONS(1092), - [anon_sym_quote] = ACTIONS(1092), - [anon_sym_quoteTerm] = ACTIONS(1092), - [anon_sym_unquote] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_LPAREN_PIPE] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_module] = ACTIONS(1092), - }, - [4736] = { - [sym_comment] = ACTIONS(86), - [anon_sym_DASH_GT] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(162), - }, - [4737] = { - [sym_expr] = STATE(3069), - [sym__expr1] = STATE(4735), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4736), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4737), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3482), - [aux_sym__application_repeat1] = STATE(4275), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4871), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4738] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4235), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(4738), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4071), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4074), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(4077), - [anon_sym_let] = ACTIONS(4080), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - }, - [4739] = { - [sym_atomic_expr] = STATE(4042), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(5279), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(5279), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), - }, - [4740] = { - [sym_expr] = STATE(4046), - [sym__expr1] = STATE(4718), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4719), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4720), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3493), - [aux_sym__application_repeat1] = STATE(3494), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4059), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4061), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4741] = { - [sym__application] = STATE(4050), - [sym__expr2] = STATE(1270), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [aux_sym__application_repeat1] = STATE(4956), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(5279), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(5279), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5485), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), - }, - [4742] = { - [sym_semi] = STATE(4957), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4958), - [sym_literal] = ACTIONS(1048), - [sym_set_n] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(1048), - [sym_qualified_name] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1048), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_where] = ACTIONS(1048), - [anon_sym_forall] = ACTIONS(1048), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_in] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_Prop] = ACTIONS(1048), - [anon_sym_Set] = ACTIONS(1048), - [anon_sym_quote] = ACTIONS(1048), - [anon_sym_quoteTerm] = ACTIONS(1048), - [anon_sym_unquote] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_LPAREN_PIPE] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - }, - [4743] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(5279), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(5279), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5485), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), - }, - [4744] = { - [sym_expr] = STATE(4040), - [sym__expr1] = STATE(4718), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4719), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4720), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3493), - [aux_sym__application_repeat1] = STATE(3494), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4059), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4061), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4745] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4241), - [sym__declaration] = STATE(4959), - [sym_function_clause] = STATE(1085), - [sym__declarations1] = STATE(3033), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(670), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_where] = ACTIONS(670), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_module] = ACTIONS(670), - }, - [4746] = { - [sym_anonymous_name] = STATE(4960), - [sym_name] = ACTIONS(5487), - [anon_sym__] = ACTIONS(676), - [sym_comment] = ACTIONS(18), - }, - [4747] = { - [sym_where_clause] = STATE(3035), - [sym_literal] = ACTIONS(678), - [sym_set_n] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [sym_name_at] = ACTIONS(678), - [sym_qualified_name] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(678), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_BSLASH] = ACTIONS(678), - [anon_sym_where] = ACTIONS(5287), - [anon_sym_forall] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_in] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(678), - [anon_sym_Prop] = ACTIONS(678), - [anon_sym_Set] = ACTIONS(678), - [anon_sym_quote] = ACTIONS(678), - [anon_sym_quoteTerm] = ACTIONS(678), - [anon_sym_unquote] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LPAREN_PIPE] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(678), - [anon_sym_module] = ACTIONS(5289), - }, - [4748] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4241), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(4748), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4071), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4074), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(4077), - [anon_sym_let] = ACTIONS(4080), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_module] = ACTIONS(680), - }, - [4749] = { - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), - }, - [4750] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - }, - [4751] = { - [sym_semi] = STATE(4247), - [aux_sym__declarations1_repeat1] = STATE(4751), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - }, - [4752] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - }, - [4753] = { - [sym_semi] = STATE(4250), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4753), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3624), - [sym_comment] = ACTIONS(86), - }, - [4754] = { - [sym_expr] = STATE(4749), - [sym__expr1] = STATE(4252), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4253), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4254), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3114), - [aux_sym__application_repeat1] = STATE(3115), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(3614), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3618), - [anon_sym_forall] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4755] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2517), - [sym__declaration] = STATE(4750), - [sym_function_clause] = STATE(1512), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4756] = { - [sym_semi] = STATE(4755), - [aux_sym__declarations1_repeat1] = STATE(4961), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - }, - [4757] = { - [sym__expr1] = STATE(770), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2517), - [sym__declaration] = STATE(4255), - [sym_function_clause] = STATE(1512), - [sym__declarations1] = STATE(4752), - [aux_sym__expr1_repeat1] = STATE(775), - [aux_sym__application_repeat1] = STATE(776), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(978), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_forall] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_RPAREN] = ACTIONS(5648), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4758] = { - [sym_expr] = STATE(4260), - [sym__expr1] = STATE(4257), - [sym__application] = STATE(1427), - [sym__expr2] = STATE(1428), - [sym__atomic_exprs1] = STATE(4258), - [sym_atomic_expr] = STATE(2147), - [sym__atomic_expr_curly] = STATE(2148), - [sym__atomic_expr_no_curly] = STATE(2148), - [sym_tele_arrow] = STATE(4259), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3269), - [aux_sym__application_repeat1] = STATE(3961), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2642), - [sym_set_n] = ACTIONS(2642), - [sym_name_at] = ACTIONS(4641), - [sym_qualified_name] = ACTIONS(2642), - [anon_sym__] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2650), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3813), - [anon_sym_forall] = ACTIONS(3815), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(2642), - [anon_sym_Prop] = ACTIONS(2642), - [anon_sym_Set] = ACTIONS(2642), - [anon_sym_quote] = ACTIONS(2642), - [anon_sym_quoteTerm] = ACTIONS(2642), - [anon_sym_unquote] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LPAREN_PIPE] = ACTIONS(2654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2642), + [5112] = { + [sym__layout_semicolon] = ACTIONS(1611), + [sym__layout_close_brace] = ACTIONS(1611), + [sym_literal] = ACTIONS(186), + [sym_set_n] = ACTIONS(186), + [anon_sym_SEMI] = ACTIONS(186), + [sym_name_at] = ACTIONS(186), + [sym_qualified_name] = ACTIONS(186), + [anon_sym__] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(186), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_BSLASH] = ACTIONS(186), + [anon_sym_where] = ACTIONS(186), + [anon_sym_forall] = ACTIONS(186), + [anon_sym_let] = ACTIONS(186), + [anon_sym_in] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(186), + [anon_sym_Prop] = ACTIONS(186), + [anon_sym_Set] = ACTIONS(186), + [anon_sym_quote] = ACTIONS(186), + [anon_sym_quoteTerm] = ACTIONS(186), + [anon_sym_unquote] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(186), + [anon_sym_LPAREN_PIPE] = ACTIONS(186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(186), + [anon_sym_module] = ACTIONS(186), }, - [4759] = { - [sym_expr] = STATE(657), - [sym__expr1] = STATE(4265), - [sym__application] = STATE(39), + [5113] = { + [sym_expr] = STATE(5117), + [sym__expr1] = STATE(38), + [sym__application] = STATE(538), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(4266), + [sym__atomic_exprs1] = STATE(41), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(4267), + [sym_tele_arrow] = STATE(44), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2563), - [aux_sym__application_repeat1] = STATE(2564), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(173), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), + [sym_name_at] = ACTIONS(208), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(210), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(5646), [anon_sym_LBRACE_LBRACE] = ACTIONS(216), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), + [anon_sym_BSLASH] = ACTIONS(218), + [anon_sym_forall] = ACTIONS(220), + [anon_sym_let] = ACTIONS(222), [anon_sym_QMARK] = ACTIONS(206), [anon_sym_Prop] = ACTIONS(206), [anon_sym_Set] = ACTIONS(206), @@ -154011,1995 +158293,802 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(226), [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [4760] = { - [sym_expr] = STATE(4205), - [sym__expr1] = STATE(4272), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4273), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4274), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3482), - [aux_sym__application_repeat1] = STATE(4275), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4871), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), + [5114] = { + [sym_expr] = STATE(5118), + [sym__expr1] = STATE(60), + [sym__application] = STATE(539), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(186), + [sym__atomic_expr_curly] = STATE(187), + [sym__atomic_expr_no_curly] = STATE(187), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(188), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(230), + [sym_set_n] = ACTIONS(230), + [sym_name_at] = ACTIONS(232), + [sym_qualified_name] = ACTIONS(230), + [anon_sym__] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(234), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_LBRACE_LBRACE] = ACTIONS(238), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5648), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(242), + [anon_sym_forall] = ACTIONS(244), + [anon_sym_let] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_Prop] = ACTIONS(230), + [anon_sym_Set] = ACTIONS(230), + [anon_sym_quote] = ACTIONS(230), + [anon_sym_quoteTerm] = ACTIONS(230), + [anon_sym_unquote] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_LPAREN_PIPE] = ACTIONS(250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(230), }, - [4761] = { - [sym_expr] = STATE(2511), - [sym__expr1] = STATE(4265), - [sym__application] = STATE(39), + [5115] = { + [sym_expr] = STATE(5119), + [sym__expr1] = STATE(110), + [sym__application] = STATE(540), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(4266), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(171), [sym__atomic_expr_curly] = STATE(172), [sym__atomic_expr_no_curly] = STATE(172), - [sym_tele_arrow] = STATE(4267), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2563), - [aux_sym__application_repeat1] = STATE(2564), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(214), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(206), [sym_set_n] = ACTIONS(206), - [sym_name_at] = ACTIONS(3073), + [sym_name_at] = ACTIONS(268), [sym_qualified_name] = ACTIONS(206), [anon_sym__] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(270), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(216), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3077), - [anon_sym_forall] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(206), - [anon_sym_Prop] = ACTIONS(206), - [anon_sym_Set] = ACTIONS(206), - [anon_sym_quote] = ACTIONS(206), - [anon_sym_quoteTerm] = ACTIONS(206), - [anon_sym_unquote] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_LPAREN_PIPE] = ACTIONS(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(206), - }, - [4762] = { - [sym_semi] = STATE(4278), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4762), - [anon_sym_SEMI] = ACTIONS(3626), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3624), - [anon_sym_COLON] = ACTIONS(3624), - }, - [4763] = { - [sym_expr] = STATE(3952), - [sym__expr1] = STATE(4281), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4282), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4283), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2613), - [aux_sym__application_repeat1] = STATE(2620), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(3129), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3123), - [anon_sym_forall] = ACTIONS(3125), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4764] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3524), - [sym__declaration] = STATE(3953), - [sym_function_clause] = STATE(579), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4765] = { - [sym_semi] = STATE(4764), - [aux_sym__declarations1_repeat1] = STATE(4962), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - }, - [4766] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3524), - [sym__declaration] = STATE(4284), - [sym_function_clause] = STATE(579), - [sym__declarations1] = STATE(3955), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), - }, - [4767] = { - [sym_semi] = STATE(4288), - [aux_sym__declarations1_repeat1] = STATE(4767), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_rewrite] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), - }, - [4768] = { - [sym_expr] = STATE(4610), - [sym__expr1] = STATE(4726), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4727), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4728), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3476), - [aux_sym__application_repeat1] = STATE(4729), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5269), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5271), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4769] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(4885), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5489), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - }, - [4770] = { - [sym__application] = STATE(3139), - [sym__expr2] = STATE(1235), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [sym_non_absurd_lambda_clause] = STATE(3142), - [sym_absurd_lambda_clause] = STATE(3142), - [sym_lambda_clause] = STATE(4612), - [aux_sym__application_repeat1] = STATE(4295), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(4885), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(4885), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4887), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - [sym_catchall_pragma] = ACTIONS(4889), - }, - [4771] = { - [sym_semi] = STATE(4770), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4964), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_with] = ACTIONS(2001), - }, - [4772] = { - [sym_expr] = STATE(4543), - [sym__expr1] = STATE(4299), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4300), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4301), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2607), - [aux_sym__application_repeat1] = STATE(4302), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4893), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4895), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3115), - [anon_sym_forall] = ACTIONS(3117), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4773] = { - [sym_semi] = STATE(4965), - [aux_sym__declarations1_repeat1] = STATE(4966), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_with] = ACTIONS(1376), - }, - [4774] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5491), - }, - [4775] = { - [sym_expr] = STATE(4626), - [sym__expr1] = STATE(4735), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4736), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4737), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3482), - [aux_sym__application_repeat1] = STATE(4275), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4871), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4776] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(4905), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5493), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - }, - [4777] = { - [sym__application] = STATE(3180), - [sym__expr2] = STATE(1251), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [sym_non_absurd_lambda_clause] = STATE(3183), - [sym_absurd_lambda_clause] = STATE(3183), - [sym_lambda_clause] = STATE(4628), - [aux_sym__application_repeat1] = STATE(4314), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(4905), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(4905), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4907), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - [sym_catchall_pragma] = ACTIONS(4909), - }, - [4778] = { - [sym_semi] = STATE(4777), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4969), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - }, - [4779] = { - [sym_semi] = STATE(4970), - [aux_sym__declarations1_repeat1] = STATE(4971), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - }, - [4780] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5495), - }, - [4781] = { - [sym_expr] = STATE(3985), - [sym__expr1] = STATE(4344), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4345), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4346), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3588), - [aux_sym__application_repeat1] = STATE(4347), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4925), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4927), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4782] = { - [sym__expr1] = STATE(2906), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1236), - [sym__atomic_expr_curly] = STATE(1237), - [sym__atomic_expr_no_curly] = STATE(1237), - [aux_sym__expr1_repeat1] = STATE(3588), - [aux_sym__application_repeat1] = STATE(3589), - [sym_literal] = ACTIONS(1538), - [sym_set_n] = ACTIONS(1538), - [sym_name_at] = ACTIONS(4183), - [sym_qualified_name] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1544), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_Prop] = ACTIONS(1538), - [anon_sym_Set] = ACTIONS(1538), - [anon_sym_quote] = ACTIONS(1538), - [anon_sym_quoteTerm] = ACTIONS(1538), - [anon_sym_unquote] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LPAREN_PIPE] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - }, - [4783] = { - [sym_with_expressions] = STATE(2907), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(5329), - }, - [4784] = { - [sym_expr] = STATE(2915), - [sym__expr1] = STATE(4344), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4345), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4346), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3588), - [aux_sym__application_repeat1] = STATE(4347), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4925), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4927), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4785] = { - [sym__expr1] = STATE(4325), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4326), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(4785), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4209), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4212), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(4215), - [anon_sym_let] = ACTIONS(4218), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), - }, - [4786] = { - [sym_expr] = STATE(4016), - [sym__expr1] = STATE(4062), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4063), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4064), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3594), - [aux_sym__application_repeat1] = STATE(4065), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4725), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4727), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4787] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4331), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(4787), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4209), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4212), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(4215), - [anon_sym_let] = ACTIONS(4218), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - }, - [4788] = { - [sym_expr] = STATE(4040), - [sym__expr1] = STATE(3601), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3602), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3603), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3604), - [aux_sym__application_repeat1] = STATE(3605), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4199), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4789] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4336), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(4789), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(1171), - [sym_set_n] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4209), - [sym_qualified_name] = ACTIONS(1171), - [anon_sym__] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1180), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4212), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(4215), - [anon_sym_let] = ACTIONS(4218), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_Prop] = ACTIONS(1171), - [anon_sym_Set] = ACTIONS(1171), - [anon_sym_quote] = ACTIONS(1171), - [anon_sym_quoteTerm] = ACTIONS(1171), - [anon_sym_unquote] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_LPAREN_PIPE] = ACTIONS(1195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1171), - [anon_sym_module] = ACTIONS(680), - }, - [4790] = { - [sym_expr] = STATE(4543), - [sym__expr1] = STATE(4344), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4345), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4346), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3588), - [aux_sym__application_repeat1] = STATE(4347), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4925), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4927), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4791] = { - [sym_expr] = STATE(4909), - [sym__expr1] = STATE(4344), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4345), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4346), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3588), - [aux_sym__application_repeat1] = STATE(4347), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(4925), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(4927), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4185), - [anon_sym_forall] = ACTIONS(4187), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4792] = { - [sym_semi] = STATE(4350), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4792), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - }, - [4793] = { - [sym__expr1] = STATE(4325), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4326), - [sym__declaration] = STATE(4544), - [sym_function_clause] = STATE(1038), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4794] = { - [sym_semi] = STATE(4793), - [aux_sym__declarations1_repeat1] = STATE(4973), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_RPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_with] = ACTIONS(2550), - }, - [4795] = { - [sym__expr1] = STATE(4325), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4326), - [sym__declaration] = STATE(4353), - [sym_function_clause] = STATE(1038), - [sym__declarations1] = STATE(4546), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(2552), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - [anon_sym_with] = ACTIONS(2552), - }, - [4796] = { - [sym_expr] = STATE(4915), - [sym__expr1] = STATE(4062), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4063), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4064), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3594), - [aux_sym__application_repeat1] = STATE(4065), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4725), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4727), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4193), - [anon_sym_forall] = ACTIONS(4195), - [anon_sym_let] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4797] = { - [sym_semi] = STATE(4357), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4797), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [4798] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4331), - [sym__declaration] = STATE(4570), - [sym_function_clause] = STATE(1059), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4799] = { - [sym_semi] = STATE(4798), - [aux_sym__declarations1_repeat1] = STATE(4974), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_RPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - }, - [4800] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4331), - [sym__declaration] = STATE(4359), - [sym_function_clause] = STATE(1059), - [sym__declarations1] = STATE(4572), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(2552), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - }, - [4801] = { - [sym_expr] = STATE(4921), - [sym__expr1] = STATE(3601), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(3602), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(3603), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3604), - [aux_sym__application_repeat1] = STATE(3605), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4199), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4203), - [anon_sym_forall] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4802] = { - [sym_semi] = STATE(4363), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4802), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [4803] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4336), - [sym__declaration] = STATE(4594), - [sym_function_clause] = STATE(1085), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4804] = { - [sym_semi] = STATE(4803), - [aux_sym__declarations1_repeat1] = STATE(4975), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_RPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - }, - [4805] = { - [sym__expr1] = STATE(1688), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4336), - [sym__declaration] = STATE(4365), - [sym_function_clause] = STATE(1085), - [sym__declarations1] = STATE(4596), - [aux_sym__expr1_repeat1] = STATE(1691), - [aux_sym__application_repeat1] = STATE(1692), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(2109), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(2552), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_module] = ACTIONS(2552), - }, - [4806] = { - [sym_expr] = STATE(4400), - [sym__expr1] = STATE(4409), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(4410), - [sym_atomic_expr] = STATE(3737), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_tele_arrow] = STATE(4411), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3662), - [aux_sym__application_repeat1] = STATE(4412), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4965), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4389), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), - }, - [4807] = { - [sym__expr1] = STATE(4436), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(1835), - [sym__atomic_expr_curly] = STATE(1836), - [sym__atomic_expr_no_curly] = STATE(1836), - [aux_sym__expr1_repeat1] = STATE(3662), - [aux_sym__application_repeat1] = STATE(3663), - [sym_literal] = ACTIONS(2265), - [sym_set_n] = ACTIONS(2265), - [sym_name_at] = ACTIONS(4281), - [sym_qualified_name] = ACTIONS(2265), - [anon_sym__] = ACTIONS(2265), - [anon_sym_DOT] = ACTIONS(4281), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2271), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(2265), - [anon_sym_Prop] = ACTIONS(2265), - [anon_sym_Set] = ACTIONS(2265), - [anon_sym_quote] = ACTIONS(2265), - [anon_sym_quoteTerm] = ACTIONS(2265), - [anon_sym_unquote] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_LPAREN_PIPE] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2265), - }, - [4808] = { - [sym_with_expressions] = STATE(4437), - [sym_literal] = ACTIONS(646), - [sym_set_n] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [sym_name_at] = ACTIONS(646), - [sym_qualified_name] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(646), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(646), - [anon_sym_where] = ACTIONS(646), - [anon_sym_forall] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_in] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_Prop] = ACTIONS(646), - [anon_sym_Set] = ACTIONS(646), - [anon_sym_quote] = ACTIONS(646), - [anon_sym_quoteTerm] = ACTIONS(646), - [anon_sym_unquote] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_LPAREN_PIPE] = ACTIONS(646), - [anon_sym_PIPE_RPAREN] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_module] = ACTIONS(646), - [anon_sym_with] = ACTIONS(5355), + [anon_sym_LBRACE_LBRACE] = ACTIONS(216), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(272), + [anon_sym_forall] = ACTIONS(274), + [anon_sym_let] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(206), + [anon_sym_Prop] = ACTIONS(206), + [anon_sym_Set] = ACTIONS(206), + [anon_sym_quote] = ACTIONS(206), + [anon_sym_quoteTerm] = ACTIONS(206), + [anon_sym_unquote] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(5648), + [anon_sym_LPAREN_PIPE] = ACTIONS(226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(206), }, - [4809] = { - [sym_expr] = STATE(4438), - [sym__expr1] = STATE(4409), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(4410), - [sym_atomic_expr] = STATE(3737), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_tele_arrow] = STATE(4411), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3662), - [aux_sym__application_repeat1] = STATE(4412), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4965), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4389), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), + [5116] = { + [sym__layout_semicolon] = ACTIONS(1613), + [sym__layout_close_brace] = ACTIONS(1613), + [sym_literal] = ACTIONS(228), + [sym_set_n] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [sym_name_at] = ACTIONS(228), + [sym_qualified_name] = ACTIONS(228), + [anon_sym__] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_LBRACE_LBRACE] = ACTIONS(228), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_BSLASH] = ACTIONS(228), + [anon_sym_where] = ACTIONS(228), + [anon_sym_forall] = ACTIONS(228), + [anon_sym_let] = ACTIONS(228), + [anon_sym_in] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_Prop] = ACTIONS(228), + [anon_sym_Set] = ACTIONS(228), + [anon_sym_quote] = ACTIONS(228), + [anon_sym_quoteTerm] = ACTIONS(228), + [anon_sym_unquote] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_LPAREN_PIPE] = ACTIONS(228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_module] = ACTIONS(228), }, - [4810] = { - [sym__expr1] = STATE(4370), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4371), - [sym__declaration] = STATE(2785), - [sym_function_clause] = STATE(2786), - [aux_sym_source_file_repeat1] = STATE(4810), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(2323), - [sym_set_n] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4307), - [sym_qualified_name] = ACTIONS(2323), - [anon_sym__] = ACTIONS(2323), - [anon_sym_DOT] = ACTIONS(4307), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2332), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4310), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(4313), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(2323), - [anon_sym_Prop] = ACTIONS(2323), - [anon_sym_Set] = ACTIONS(2323), - [anon_sym_quote] = ACTIONS(2323), - [anon_sym_quoteTerm] = ACTIONS(2323), - [anon_sym_unquote] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_LPAREN_PIPE] = ACTIONS(2347), - [anon_sym_PIPE_RPAREN] = ACTIONS(680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2323), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), - [anon_sym_with] = ACTIONS(680), + [5117] = { + [anon_sym_RBRACE] = ACTIONS(5780), + [sym_comment] = ACTIONS(86), + }, + [5118] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5782), + [sym_comment] = ACTIONS(86), + }, + [5119] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5782), + }, + [5120] = { + [sym_comment] = ACTIONS(86), + [anon_sym_PIPE_RPAREN] = ACTIONS(5782), + }, + [5121] = { + [sym_expr] = STATE(5255), + [sym__expr1] = STATE(4805), + [sym__application] = STATE(3436), + [sym__expr2] = STATE(3437), + [sym__atomic_exprs1] = STATE(4806), + [sym_atomic_expr] = STATE(4807), + [sym__atomic_expr_curly] = STATE(4808), + [sym__atomic_expr_no_curly] = STATE(4808), + [sym_tele_arrow] = STATE(4809), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(3440), + [aux_sym__application_repeat1] = STATE(4810), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(5332), + [sym_set_n] = ACTIONS(5332), + [sym_name_at] = ACTIONS(5334), + [sym_qualified_name] = ACTIONS(5332), + [anon_sym__] = ACTIONS(5332), + [anon_sym_DOT] = ACTIONS(5336), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(5338), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5340), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(3987), + [anon_sym_forall] = ACTIONS(3989), + [anon_sym_let] = ACTIONS(3991), + [anon_sym_QMARK] = ACTIONS(5332), + [anon_sym_Prop] = ACTIONS(5332), + [anon_sym_Set] = ACTIONS(5332), + [anon_sym_quote] = ACTIONS(5332), + [anon_sym_quoteTerm] = ACTIONS(5332), + [anon_sym_unquote] = ACTIONS(5332), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_LPAREN_PIPE] = ACTIONS(5344), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5332), + }, + [5122] = { + [sym__layout_semicolon] = ACTIONS(781), + [sym__layout_close_brace] = ACTIONS(781), + [sym_literal] = ACTIONS(1931), + [sym_set_n] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1931), + [sym_name_at] = ACTIONS(1931), + [sym_qualified_name] = ACTIONS(1931), + [anon_sym__] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1931), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1931), + [anon_sym_forall] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_Prop] = ACTIONS(1931), + [anon_sym_Set] = ACTIONS(1931), + [anon_sym_quote] = ACTIONS(1931), + [anon_sym_quoteTerm] = ACTIONS(1931), + [anon_sym_unquote] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LPAREN_PIPE] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + }, + [5123] = { + [anon_sym_RBRACE] = ACTIONS(5784), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5786), + }, + [5124] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5784), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5788), + }, + [5125] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5784), + }, + [5126] = { + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5790), + }, + [5127] = { + [sym__layout_semicolon] = ACTIONS(1925), + [sym__layout_close_brace] = ACTIONS(1925), + [sym_literal] = ACTIONS(1759), + [sym_set_n] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1759), + [sym_name_at] = ACTIONS(1759), + [sym_qualified_name] = ACTIONS(1759), + [anon_sym__] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym_BSLASH] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_forall] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_Prop] = ACTIONS(1759), + [anon_sym_Set] = ACTIONS(1759), + [anon_sym_quote] = ACTIONS(1759), + [anon_sym_quoteTerm] = ACTIONS(1759), + [anon_sym_unquote] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LPAREN_PIPE] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + }, + [5128] = { + [sym_expr] = STATE(5260), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4811] = { - [sym_expr] = STATE(4449), - [sym__expr1] = STATE(4458), - [sym__application] = STATE(1849), - [sym__expr2] = STATE(1850), - [sym__atomic_exprs1] = STATE(4459), - [sym_atomic_expr] = STATE(3787), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_tele_arrow] = STATE(4460), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3668), - [aux_sym__application_repeat1] = STATE(4461), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(5007), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4449), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), + [5129] = { + [sym__layout_semicolon] = ACTIONS(2366), + [sym__layout_close_brace] = ACTIONS(2366), + [sym_literal] = ACTIONS(1773), + [sym_set_n] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [sym_name_at] = ACTIONS(1773), + [sym_qualified_name] = ACTIONS(1773), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1773), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(1773), + [anon_sym_BSLASH] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_forall] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_QMARK] = ACTIONS(1773), + [anon_sym_Prop] = ACTIONS(1773), + [anon_sym_Set] = ACTIONS(1773), + [anon_sym_quote] = ACTIONS(1773), + [anon_sym_quoteTerm] = ACTIONS(1773), + [anon_sym_unquote] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LPAREN_PIPE] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + }, + [5130] = { + [sym_expr] = STATE(5261), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4812] = { - [sym_expr] = STATE(4485), - [sym__expr1] = STATE(4458), - [sym__application] = STATE(1849), - [sym__expr2] = STATE(1850), - [sym__atomic_exprs1] = STATE(4459), - [sym_atomic_expr] = STATE(3787), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_tele_arrow] = STATE(4460), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3668), - [aux_sym__application_repeat1] = STATE(4461), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(5007), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4449), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), + [5131] = { + [sym_vclose] = STATE(5262), + [sym__layout_close_brace] = ACTIONS(5722), + [sym_comment] = ACTIONS(86), }, - [4813] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4376), - [sym__declaration] = STATE(2805), - [sym_function_clause] = STATE(2806), - [aux_sym_source_file_repeat1] = STATE(4813), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(2323), - [sym_set_n] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4307), - [sym_qualified_name] = ACTIONS(2323), - [anon_sym__] = ACTIONS(2323), - [anon_sym_DOT] = ACTIONS(4307), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2332), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4310), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(4313), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(2323), - [anon_sym_Prop] = ACTIONS(2323), - [anon_sym_Set] = ACTIONS(2323), - [anon_sym_quote] = ACTIONS(2323), - [anon_sym_quoteTerm] = ACTIONS(2323), - [anon_sym_unquote] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_LPAREN_PIPE] = ACTIONS(2347), - [anon_sym_PIPE_RPAREN] = ACTIONS(680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2323), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_module] = ACTIONS(680), + [5132] = { + [sym_expr] = STATE(5263), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4814] = { - [sym_expr] = STATE(4496), - [sym__expr1] = STATE(3675), - [sym__application] = STATE(1868), - [sym__expr2] = STATE(1869), - [sym__atomic_exprs1] = STATE(3676), - [sym_atomic_expr] = STATE(1871), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_tele_arrow] = STATE(3677), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3678), - [aux_sym__application_repeat1] = STATE(3679), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(4297), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2309), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), + [5133] = { + [anon_sym_RBRACE] = ACTIONS(5654), + [sym_comment] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(5656), + }, + [5134] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [5135] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), }, - [4815] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4381), - [sym__declaration] = STATE(2831), - [sym_function_clause] = STATE(2832), - [aux_sym_source_file_repeat1] = STATE(4815), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(2323), - [sym_set_n] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(680), - [sym_name_at] = ACTIONS(4307), - [sym_qualified_name] = ACTIONS(2323), - [anon_sym__] = ACTIONS(2323), - [anon_sym_DOT] = ACTIONS(4307), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2332), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_BSLASH] = ACTIONS(4310), - [anon_sym_where] = ACTIONS(680), - [anon_sym_forall] = ACTIONS(4313), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(2323), - [anon_sym_Prop] = ACTIONS(2323), - [anon_sym_Set] = ACTIONS(2323), - [anon_sym_quote] = ACTIONS(2323), - [anon_sym_quoteTerm] = ACTIONS(2323), - [anon_sym_unquote] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_LPAREN_PIPE] = ACTIONS(2347), - [anon_sym_PIPE_RPAREN] = ACTIONS(680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2323), - [anon_sym_module] = ACTIONS(680), + [5136] = { + [anon_sym_RBRACE] = ACTIONS(5792), + [sym_comment] = ACTIONS(86), }, - [4816] = { - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_PIPE_RPAREN] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_COLON] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - [anon_sym_rewrite] = ACTIONS(4821), - [anon_sym_with] = ACTIONS(4821), + [5137] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5792), + [sym_comment] = ACTIONS(86), }, - [4817] = { - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_PIPE_RPAREN] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), - [anon_sym_with] = ACTIONS(2934), + [5138] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5792), }, - [4818] = { - [sym_expr] = STATE(4976), + [5139] = { + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_PIPE_RPAREN] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + [anon_sym_with] = ACTIONS(3863), + }, + [5140] = { + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_PIPE_RPAREN] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + }, + [5141] = { + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_PIPE_RPAREN] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + }, + [5142] = { + [anon_sym_RBRACE] = ACTIONS(5794), + [sym_comment] = ACTIONS(86), + }, + [5143] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5794), + [sym_comment] = ACTIONS(86), + }, + [5144] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5794), + }, + [5145] = { + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_PIPE_RPAREN] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + }, + [5146] = { + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_PIPE_RPAREN] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + }, + [5147] = { + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_PIPE_RPAREN] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + }, + [5148] = { + [anon_sym_RBRACE] = ACTIONS(5796), + [sym_comment] = ACTIONS(86), + }, + [5149] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5796), + [sym_comment] = ACTIONS(86), + }, + [5150] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5796), + }, + [5151] = { + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_PIPE_RPAREN] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + }, + [5152] = { + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_PIPE_RPAREN] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + }, + [5153] = { + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_PIPE_RPAREN] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + }, + [5154] = { + [sym__layout_semicolon] = ACTIONS(4392), + [sym__layout_close_brace] = ACTIONS(4392), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4392), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4392), + [anon_sym_EQ] = ACTIONS(4392), + [anon_sym_where] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(4392), + [anon_sym_module] = ACTIONS(4392), + [anon_sym_rewrite] = ACTIONS(4392), + [anon_sym_with] = ACTIONS(4392), + }, + [5155] = { + [sym__layout_semicolon] = ACTIONS(3011), + [sym__layout_close_brace] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_DOT_DOT] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3011), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_where] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3011), + [anon_sym_module] = ACTIONS(3011), + [anon_sym_with] = ACTIONS(3011), + }, + [5156] = { + [sym_expr] = STATE(5267), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -156035,8 +159124,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4819] = { - [sym_expr] = STATE(4977), + [5157] = { + [sym_expr] = STATE(5268), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -156072,8 +159161,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4820] = { - [sym_expr] = STATE(4978), + [5158] = { + [sym_expr] = STATE(5269), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -156109,494 +159198,1501 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4821] = { - [anon_sym_RBRACE] = ACTIONS(5497), + [5159] = { + [anon_sym_RBRACE] = ACTIONS(5798), [sym_comment] = ACTIONS(86), }, - [4822] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5497), + [5160] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5798), [sym_comment] = ACTIONS(86), }, - [4823] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_PIPE_RPAREN] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), + [5161] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym__layout_close_brace] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3439), + [anon_sym_where] = ACTIONS(3439), + [anon_sym_COLON] = ACTIONS(3439), + [anon_sym_module] = ACTIONS(3439), + [anon_sym_with] = ACTIONS(3439), }, - [4824] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_PIPE_RPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), + [5162] = { + [sym__layout_semicolon] = ACTIONS(3441), + [sym__layout_close_brace] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3441), + [anon_sym_where] = ACTIONS(3441), + [anon_sym_COLON] = ACTIONS(3441), + [anon_sym_module] = ACTIONS(3441), + [anon_sym_with] = ACTIONS(3441), + }, + [5163] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5798), + }, + [5164] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [5165] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [5166] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym__layout_close_brace] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_where] = ACTIONS(1444), + [anon_sym_COLON] = ACTIONS(1444), + [anon_sym_module] = ACTIONS(1444), + [anon_sym_with] = ACTIONS(1444), + }, + [5167] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym__layout_close_brace] = ACTIONS(3439), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_with] = ACTIONS(2244), + }, + [5168] = { + [sym__layout_semicolon] = ACTIONS(4670), + [sym__layout_close_brace] = ACTIONS(4670), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + [anon_sym_with] = ACTIONS(2262), + }, + [5169] = { + [sym_vclose] = STATE(5271), + [sym__layout_close_brace] = ACTIONS(5690), + [sym_comment] = ACTIONS(86), + }, + [5170] = { + [sym_vopen] = STATE(4917), + [sym_declarations] = STATE(4918), + [sym__declarations0] = STATE(5272), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [5171] = { + [sym__layout_semicolon] = ACTIONS(3011), + [sym__layout_close_brace] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_DOT_DOT] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3011), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_where] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3011), + [anon_sym_module] = ACTIONS(3011), + }, + [5172] = { + [sym_expr] = STATE(5273), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4825] = { - [sym_expr] = STATE(4833), - [sym__expr1] = STATE(4409), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(4410), - [sym_atomic_expr] = STATE(3737), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_tele_arrow] = STATE(4411), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3662), - [aux_sym__application_repeat1] = STATE(4412), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4965), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4389), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), + [5173] = { + [sym_expr] = STATE(5274), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4826] = { - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_RPAREN] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), + [5174] = { + [sym_expr] = STATE(5275), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4827] = { - [sym_expr] = STATE(4980), - [sym__expr1] = STATE(4409), - [sym__application] = STATE(1833), - [sym__expr2] = STATE(1834), - [sym__atomic_exprs1] = STATE(4410), - [sym_atomic_expr] = STATE(3737), - [sym__atomic_expr_curly] = STATE(3738), - [sym__atomic_expr_no_curly] = STATE(3738), - [sym_tele_arrow] = STATE(4411), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3662), - [aux_sym__application_repeat1] = STATE(4412), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4381), - [sym_set_n] = ACTIONS(4381), - [sym_name_at] = ACTIONS(4965), - [sym_qualified_name] = ACTIONS(4381), - [anon_sym__] = ACTIONS(4381), - [anon_sym_DOT] = ACTIONS(4967), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4389), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4283), - [anon_sym_forall] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_Prop] = ACTIONS(4381), - [anon_sym_Set] = ACTIONS(4381), - [anon_sym_quote] = ACTIONS(4381), - [anon_sym_quoteTerm] = ACTIONS(4381), - [anon_sym_unquote] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_LPAREN_PIPE] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4381), + [5175] = { + [anon_sym_RBRACE] = ACTIONS(5800), + [sym_comment] = ACTIONS(86), }, - [4828] = { - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_PIPE_RPAREN] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), + [5176] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5800), + [sym_comment] = ACTIONS(86), }, - [4829] = { - [sym_semi] = STATE(4418), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4829), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_PIPE_RPAREN] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), + [5177] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym__layout_close_brace] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3439), + [anon_sym_where] = ACTIONS(3439), + [anon_sym_COLON] = ACTIONS(3439), + [anon_sym_module] = ACTIONS(3439), }, - [4830] = { + [5178] = { + [sym__layout_semicolon] = ACTIONS(3441), + [sym__layout_close_brace] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5497), + [anon_sym_EQ] = ACTIONS(3441), + [anon_sym_where] = ACTIONS(3441), + [anon_sym_COLON] = ACTIONS(3441), + [anon_sym_module] = ACTIONS(3441), + }, + [5179] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5800), + }, + [5180] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [5181] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [5182] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym__layout_close_brace] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_where] = ACTIONS(1444), + [anon_sym_COLON] = ACTIONS(1444), + [anon_sym_module] = ACTIONS(1444), + }, + [5183] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym__layout_close_brace] = ACTIONS(3439), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + }, + [5184] = { + [sym__layout_semicolon] = ACTIONS(4670), + [sym__layout_close_brace] = ACTIONS(4670), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + }, + [5185] = { + [sym_vclose] = STATE(5277), + [sym__layout_close_brace] = ACTIONS(5708), + [sym_comment] = ACTIONS(86), + }, + [5186] = { + [sym_vopen] = STATE(4948), + [sym_declarations] = STATE(4949), + [sym__declarations0] = STATE(5278), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [5187] = { + [sym__layout_semicolon] = ACTIONS(3011), + [sym__layout_close_brace] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_DOT_DOT] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3011), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_where] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_module] = ACTIONS(3011), + }, + [5188] = { + [sym_expr] = STATE(5279), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4831] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_PIPE_RPAREN] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), + [5189] = { + [sym_expr] = STATE(5280), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4832] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_PIPE_RPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_with] = ACTIONS(960), + [5190] = { + [sym_expr] = STATE(5281), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4833] = { - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_PIPE_RPAREN] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), - [anon_sym_with] = ACTIONS(3153), + [5191] = { + [anon_sym_RBRACE] = ACTIONS(5802), + [sym_comment] = ACTIONS(86), + }, + [5192] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5802), + [sym_comment] = ACTIONS(86), + }, + [5193] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym__layout_close_brace] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3439), + [anon_sym_where] = ACTIONS(3439), + [anon_sym_module] = ACTIONS(3439), + }, + [5194] = { + [sym__layout_semicolon] = ACTIONS(3441), + [sym__layout_close_brace] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(3441), + [anon_sym_where] = ACTIONS(3441), + [anon_sym_module] = ACTIONS(3441), + }, + [5195] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5802), + }, + [5196] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym__layout_close_brace] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [sym_comment] = ACTIONS(86), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_where] = ACTIONS(1444), + [anon_sym_module] = ACTIONS(1444), + }, + [5197] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym__layout_close_brace] = ACTIONS(3439), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + }, + [5198] = { + [sym__layout_semicolon] = ACTIONS(4670), + [sym__layout_close_brace] = ACTIONS(4670), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + }, + [5199] = { + [sym_vclose] = STATE(5283), + [sym__layout_close_brace] = ACTIONS(5722), + [sym_comment] = ACTIONS(86), + }, + [5200] = { + [sym_vopen] = STATE(4966), + [sym_declarations] = STATE(4967), + [sym__declarations0] = STATE(5284), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [5201] = { + [ts_builtin_sym_end] = ACTIONS(4512), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_RPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + [anon_sym_with] = ACTIONS(4512), + }, + [5202] = { + [ts_builtin_sym_end] = ACTIONS(4512), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_RPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + }, + [5203] = { + [ts_builtin_sym_end] = ACTIONS(4512), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_RPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + }, + [5204] = { + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + [anon_sym_with] = ACTIONS(4512), + }, + [5205] = { + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + }, + [5206] = { + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + }, + [5207] = { + [sym__layout_semicolon] = ACTIONS(3011), + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), }, - [4834] = { - [sym__expr1] = STATE(4370), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4371), - [sym__declaration] = STATE(4981), - [sym_function_clause] = STATE(2786), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [5208] = { + [sym_expr] = STATE(5285), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4835] = { - [sym_semi] = STATE(4834), - [aux_sym__declarations1_repeat1] = STATE(4982), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_PIPE_RPAREN] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_with] = ACTIONS(2550), + [5209] = { + [sym_expr] = STATE(5286), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4836] = { - [sym__expr1] = STATE(4370), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4371), - [sym__declaration] = STATE(4439), - [sym_function_clause] = STATE(2786), - [sym__declarations1] = STATE(4983), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_PIPE_RPAREN] = ACTIONS(2552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - [anon_sym_with] = ACTIONS(2552), + [5210] = { + [sym_expr] = STATE(5287), + [sym__expr1] = STATE(110), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(111), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(112), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(120), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4837] = { - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_PIPE_RPAREN] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), + [5211] = { + [anon_sym_RBRACE] = ACTIONS(5804), + [sym_comment] = ACTIONS(86), + }, + [5212] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5804), + [sym_comment] = ACTIONS(86), + }, + [5213] = { + [sym__layout_semicolon] = ACTIONS(3439), + [sym_literal] = ACTIONS(2244), + [sym_set_n] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [sym_name_at] = ACTIONS(2244), + [sym_qualified_name] = ACTIONS(2244), + [anon_sym__] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2244), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_where] = ACTIONS(2244), + [anon_sym_forall] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_Prop] = ACTIONS(2244), + [anon_sym_Set] = ACTIONS(2244), + [anon_sym_quote] = ACTIONS(2244), + [anon_sym_quoteTerm] = ACTIONS(2244), + [anon_sym_unquote] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LPAREN_PIPE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + }, + [5214] = { + [sym__layout_semicolon] = ACTIONS(3441), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + }, + [5215] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5804), + }, + [5216] = { + [sym__layout_semicolon] = ACTIONS(4670), + [sym_literal] = ACTIONS(2262), + [sym_set_n] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [sym_name_at] = ACTIONS(2262), + [sym_qualified_name] = ACTIONS(2262), + [anon_sym__] = ACTIONS(2262), + [anon_sym_DOT] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2262), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_BSLASH] = ACTIONS(2262), + [anon_sym_where] = ACTIONS(2262), + [anon_sym_forall] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2262), + [anon_sym_QMARK] = ACTIONS(2262), + [anon_sym_Prop] = ACTIONS(2262), + [anon_sym_Set] = ACTIONS(2262), + [anon_sym_quote] = ACTIONS(2262), + [anon_sym_quoteTerm] = ACTIONS(2262), + [anon_sym_unquote] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LPAREN_PIPE] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2262), + }, + [5217] = { + [sym_vclose] = STATE(5289), + [sym__layout_close_brace] = ACTIONS(5746), + [sym_comment] = ACTIONS(86), + }, + [5218] = { + [sym_vopen] = STATE(5015), + [sym_declarations] = STATE(5016), + [sym__declarations0] = STATE(5290), + [sym__layout_open_brace] = ACTIONS(636), + [sym_comment] = ACTIONS(86), + }, + [5219] = { + [sym__layout_semicolon] = ACTIONS(4392), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4392), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4392), + [anon_sym_EQ] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(4392), + }, + [5220] = { + [anon_sym_RBRACE] = ACTIONS(5806), + [sym_comment] = ACTIONS(86), + }, + [5221] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5806), + [sym_comment] = ACTIONS(86), + }, + [5222] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5806), + }, + [5223] = { + [sym__layout_semicolon] = ACTIONS(3409), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [anon_sym_SEMI] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_RBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + [anon_sym_with] = ACTIONS(3863), + }, + [5224] = { + [sym__layout_semicolon] = ACTIONS(5216), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + }, + [5225] = { + [sym__layout_semicolon] = ACTIONS(5218), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + }, + [5226] = { + [anon_sym_RBRACE] = ACTIONS(5808), + [sym_comment] = ACTIONS(86), + }, + [5227] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5808), + [sym_comment] = ACTIONS(86), + }, + [5228] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5808), + }, + [5229] = { + [sym__layout_semicolon] = ACTIONS(3409), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [anon_sym_SEMI] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_RBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + }, + [5230] = { + [sym__layout_semicolon] = ACTIONS(5216), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + }, + [5231] = { + [sym__layout_semicolon] = ACTIONS(5218), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + }, + [5232] = { + [sym__layout_semicolon] = ACTIONS(4392), + [sym__layout_close_brace] = ACTIONS(4392), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4392), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4392), + [anon_sym_EQ] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + }, + [5233] = { + [sym__layout_semicolon] = ACTIONS(4392), + [sym__layout_close_brace] = ACTIONS(4392), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [anon_sym_SEMI] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + [anon_sym_rewrite] = ACTIONS(4512), + [anon_sym_with] = ACTIONS(4512), + }, + [5234] = { + [sym__layout_semicolon] = ACTIONS(3011), + [sym__layout_close_brace] = ACTIONS(3011), + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), }, - [4838] = { - [sym_expr] = STATE(4984), + [5235] = { + [sym_expr] = STATE(5293), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -156632,8 +160728,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4839] = { - [sym_expr] = STATE(4985), + [5236] = { + [sym_expr] = STATE(5294), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -156669,8 +160765,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4840] = { - [sym_expr] = STATE(4986), + [5237] = { + [sym_expr] = STATE(5295), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -156706,483 +160802,185 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4841] = { - [anon_sym_RBRACE] = ACTIONS(5499), - [sym_comment] = ACTIONS(86), - }, - [4842] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5499), - [sym_comment] = ACTIONS(86), - }, - [4843] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_PIPE_RPAREN] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [4844] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_PIPE_RPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - }, - [4845] = { - [sym_expr] = STATE(4853), - [sym__expr1] = STATE(4458), - [sym__application] = STATE(1849), - [sym__expr2] = STATE(1850), - [sym__atomic_exprs1] = STATE(4459), - [sym_atomic_expr] = STATE(3787), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_tele_arrow] = STATE(4460), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3668), - [aux_sym__application_repeat1] = STATE(4461), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(5007), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4449), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), - }, - [4846] = { - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_RPAREN] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - }, - [4847] = { - [sym_expr] = STATE(4988), - [sym__expr1] = STATE(4458), - [sym__application] = STATE(1849), - [sym__expr2] = STATE(1850), - [sym__atomic_exprs1] = STATE(4459), - [sym_atomic_expr] = STATE(3787), - [sym__atomic_expr_curly] = STATE(3788), - [sym__atomic_expr_no_curly] = STATE(3788), - [sym_tele_arrow] = STATE(4460), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3668), - [aux_sym__application_repeat1] = STATE(4461), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(4441), - [sym_set_n] = ACTIONS(4441), - [sym_name_at] = ACTIONS(5007), - [sym_qualified_name] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(4447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4449), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4291), - [anon_sym_forall] = ACTIONS(4293), - [anon_sym_let] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_Prop] = ACTIONS(4441), - [anon_sym_Set] = ACTIONS(4441), - [anon_sym_quote] = ACTIONS(4441), - [anon_sym_quoteTerm] = ACTIONS(4441), - [anon_sym_unquote] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_LPAREN_PIPE] = ACTIONS(4453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4441), - }, - [4848] = { - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_PIPE_RPAREN] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [4849] = { - [sym_semi] = STATE(4467), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4849), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_PIPE_RPAREN] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [4850] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5499), - }, - [4851] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_PIPE_RPAREN] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [4852] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_PIPE_RPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - }, - [4853] = { - [sym_literal] = ACTIONS(3153), - [sym_set_n] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [sym_name_at] = ACTIONS(3153), - [sym_qualified_name] = ACTIONS(3153), - [anon_sym__] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3153), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_BSLASH] = ACTIONS(3153), - [anon_sym_where] = ACTIONS(3153), - [anon_sym_forall] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_Prop] = ACTIONS(3153), - [anon_sym_Set] = ACTIONS(3153), - [anon_sym_quote] = ACTIONS(3153), - [anon_sym_quoteTerm] = ACTIONS(3153), - [anon_sym_unquote] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LPAREN_PIPE] = ACTIONS(3153), - [anon_sym_PIPE_RPAREN] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_module] = ACTIONS(3153), - }, - [4854] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4376), - [sym__declaration] = STATE(4989), - [sym_function_clause] = STATE(2806), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - }, - [4855] = { - [sym_semi] = STATE(4854), - [aux_sym__declarations1_repeat1] = STATE(4990), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_PIPE_RPAREN] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - }, - [4856] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4376), - [sym__declaration] = STATE(4486), - [sym_function_clause] = STATE(2806), - [sym__declarations1] = STATE(4991), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_PIPE_RPAREN] = ACTIONS(2552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - }, - [4857] = { - [sym_literal] = ACTIONS(2934), - [sym_set_n] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [sym_name_at] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2934), - [anon_sym__] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2934), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym_BSLASH] = ACTIONS(2934), - [anon_sym_where] = ACTIONS(2934), - [anon_sym_forall] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_Prop] = ACTIONS(2934), - [anon_sym_Set] = ACTIONS(2934), - [anon_sym_quote] = ACTIONS(2934), - [anon_sym_quoteTerm] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LPAREN_PIPE] = ACTIONS(2934), - [anon_sym_PIPE_RPAREN] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), + [5238] = { + [anon_sym_RBRACE] = ACTIONS(5810), + [sym_comment] = ACTIONS(86), + }, + [5239] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5810), + [sym_comment] = ACTIONS(86), + }, + [5240] = { + [sym__layout_semicolon] = ACTIONS(3441), + [sym__layout_close_brace] = ACTIONS(3441), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + [anon_sym_with] = ACTIONS(2965), + }, + [5241] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5810), + }, + [5242] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_with] = ACTIONS(779), + }, + [5243] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + }, + [5244] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym__layout_close_brace] = ACTIONS(1444), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + [anon_sym_with] = ACTIONS(3017), + }, + [5245] = { + [sym__layout_semicolon] = ACTIONS(3011), + [sym__layout_close_brace] = ACTIONS(3011), + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), }, - [4858] = { - [sym_expr] = STATE(4992), + [5246] = { + [sym_expr] = STATE(5297), [sym__expr1] = STATE(38), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -157218,8 +161016,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4859] = { - [sym_expr] = STATE(4993), + [5247] = { + [sym_expr] = STATE(5298), [sym__expr1] = STATE(60), [sym__application] = STATE(61), [sym__expr2] = STATE(62), @@ -157255,8 +161053,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(76), [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4860] = { - [sym_expr] = STATE(4994), + [5248] = { + [sym_expr] = STATE(5299), [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), @@ -157292,2257 +161090,279 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4861] = { - [anon_sym_RBRACE] = ACTIONS(5501), - [sym_comment] = ACTIONS(86), - }, - [4862] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5501), - [sym_comment] = ACTIONS(86), - }, - [4863] = { - [sym_literal] = ACTIONS(845), - [sym_set_n] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_name_at] = ACTIONS(845), - [sym_qualified_name] = ACTIONS(845), - [anon_sym__] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_LBRACE_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(845), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_forall] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_Prop] = ACTIONS(845), - [anon_sym_Set] = ACTIONS(845), - [anon_sym_quote] = ACTIONS(845), - [anon_sym_quoteTerm] = ACTIONS(845), - [anon_sym_unquote] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_LPAREN_PIPE] = ACTIONS(845), - [anon_sym_PIPE_RPAREN] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - }, - [4864] = { - [sym_literal] = ACTIONS(960), - [sym_set_n] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [sym_name_at] = ACTIONS(960), - [sym_qualified_name] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACE_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_forall] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_in] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_Prop] = ACTIONS(960), - [anon_sym_Set] = ACTIONS(960), - [anon_sym_quote] = ACTIONS(960), - [anon_sym_quoteTerm] = ACTIONS(960), - [anon_sym_unquote] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LPAREN_PIPE] = ACTIONS(960), - [anon_sym_PIPE_RPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - }, - [4865] = { - [sym_literal] = ACTIONS(3066), - [sym_set_n] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [sym_name_at] = ACTIONS(3066), - [sym_qualified_name] = ACTIONS(3066), - [anon_sym__] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3066), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_BSLASH] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_forall] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_Prop] = ACTIONS(3066), - [anon_sym_Set] = ACTIONS(3066), - [anon_sym_quote] = ACTIONS(3066), - [anon_sym_quoteTerm] = ACTIONS(3066), - [anon_sym_unquote] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_LPAREN_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_RPAREN] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - }, - [4866] = { - [sym_expr] = STATE(4996), - [sym__expr1] = STATE(3675), - [sym__application] = STATE(1868), - [sym__expr2] = STATE(1869), - [sym__atomic_exprs1] = STATE(3676), - [sym_atomic_expr] = STATE(1871), - [sym__atomic_expr_curly] = STATE(1872), - [sym__atomic_expr_no_curly] = STATE(1872), - [sym_tele_arrow] = STATE(3677), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3678), - [aux_sym__application_repeat1] = STATE(3679), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2301), - [sym_set_n] = ACTIONS(2301), - [sym_name_at] = ACTIONS(4297), - [sym_qualified_name] = ACTIONS(2301), - [anon_sym__] = ACTIONS(2301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2309), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4301), - [anon_sym_forall] = ACTIONS(4303), - [anon_sym_let] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(2301), - [anon_sym_Prop] = ACTIONS(2301), - [anon_sym_Set] = ACTIONS(2301), - [anon_sym_quote] = ACTIONS(2301), - [anon_sym_quoteTerm] = ACTIONS(2301), - [anon_sym_unquote] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LPAREN_PIPE] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), - }, - [4867] = { - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_PIPE_RPAREN] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [4868] = { - [sym_semi] = STATE(4508), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4868), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_PIPE_RPAREN] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [4869] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5501), - }, - [4870] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4381), - [sym__declaration] = STATE(4997), - [sym_function_clause] = STATE(2832), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - }, - [4871] = { - [sym_semi] = STATE(4870), - [aux_sym__declarations1_repeat1] = STATE(4998), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_PIPE_RPAREN] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - }, - [4872] = { - [sym__expr1] = STATE(1760), - [sym__application] = STATE(455), - [sym__expr2] = STATE(456), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(457), - [sym__atomic_expr_curly] = STATE(458), - [sym__atomic_expr_no_curly] = STATE(458), - [sym_lhs] = STATE(4381), - [sym__declaration] = STATE(4512), - [sym_function_clause] = STATE(2832), - [sym__declarations1] = STATE(4999), - [aux_sym__expr1_repeat1] = STATE(1763), - [aux_sym__application_repeat1] = STATE(1764), - [sym_literal] = ACTIONS(578), - [sym_set_n] = ACTIONS(578), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(2191), - [sym_qualified_name] = ACTIONS(578), - [anon_sym__] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(584), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2193), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_Prop] = ACTIONS(578), - [anon_sym_Set] = ACTIONS(578), - [anon_sym_quote] = ACTIONS(578), - [anon_sym_quoteTerm] = ACTIONS(578), - [anon_sym_unquote] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LPAREN_PIPE] = ACTIONS(594), - [anon_sym_PIPE_RPAREN] = ACTIONS(2552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_module] = ACTIONS(2552), - }, - [4873] = { - [ts_builtin_sym_end] = ACTIONS(4821), - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_COLON] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - [anon_sym_with] = ACTIONS(4821), - }, - [4874] = { - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5503), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [4875] = { - [sym_lambda_bindings] = STATE(3127), - [sym_untyped_bindings] = STATE(4875), - [sym_typed_bindings] = STATE(4875), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3667), - [anon_sym_DOT_DOT] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3669), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3671), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - [anon_sym_with] = ACTIONS(464), - }, - [4876] = { - [sym_expr] = STATE(3144), - [sym__expr1] = STATE(4530), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4531), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4532), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4526), - [aux_sym__application_repeat1] = STATE(4533), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5069), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4877] = { - [sym__expr1] = STATE(2874), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2875), - [sym__declaration] = STATE(1037), - [sym_function_clause] = STATE(1038), - [aux_sym_source_file_repeat1] = STATE(3854), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - }, - [4878] = { - [sym_expr] = STATE(4543), - [sym__expr1] = STATE(4530), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4531), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4532), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4526), - [aux_sym__application_repeat1] = STATE(4533), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5069), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4879] = { - [sym_expr] = STATE(4610), - [sym__expr1] = STATE(4530), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4531), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4532), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4526), - [aux_sym__application_repeat1] = STATE(4533), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5069), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4880] = { - [sym__expr2] = STATE(2195), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(5073), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5505), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - }, - [4881] = { - [sym__application] = STATE(3139), - [sym__expr2] = STATE(1235), - [sym_atomic_expr] = STATE(3140), - [sym__atomic_expr_curly] = STATE(3141), - [sym__atomic_expr_no_curly] = STATE(3141), - [sym_non_absurd_lambda_clause] = STATE(3142), - [sym_absurd_lambda_clause] = STATE(3142), - [sym_lambda_clause] = STATE(4612), - [aux_sym__application_repeat1] = STATE(4539), - [sym_literal] = ACTIONS(3649), - [sym_set_n] = ACTIONS(3649), - [sym_name_at] = ACTIONS(5073), - [sym_qualified_name] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3649), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3655), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5075), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(3649), - [anon_sym_Prop] = ACTIONS(3649), - [anon_sym_Set] = ACTIONS(3649), - [anon_sym_quote] = ACTIONS(3649), - [anon_sym_quoteTerm] = ACTIONS(3649), - [anon_sym_unquote] = ACTIONS(3649), - [anon_sym_LPAREN] = ACTIONS(3659), - [anon_sym_LPAREN_PIPE] = ACTIONS(3661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - [sym_catchall_pragma] = ACTIONS(5077), - }, - [4882] = { - [sym_semi] = STATE(4881), - [aux_sym_lambda_where_clauses_repeat1] = STATE(5002), - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_with] = ACTIONS(2001), - }, - [4883] = { - [ts_builtin_sym_end] = ACTIONS(4821), - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_COLON] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - }, - [4884] = { - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5507), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [4885] = { - [sym_lambda_bindings] = STATE(3168), - [sym_untyped_bindings] = STATE(4885), - [sym_typed_bindings] = STATE(4885), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3717), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3721), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3723), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - }, - [4886] = { - [sym_expr] = STATE(3185), - [sym__expr1] = STATE(4559), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4560), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4561), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4555), - [aux_sym__application_repeat1] = STATE(4562), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(5095), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4887] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(2949), - [sym__declaration] = STATE(1058), - [sym_function_clause] = STATE(1059), - [aux_sym_source_file_repeat1] = STATE(3898), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [4888] = { - [sym_expr] = STATE(3952), - [sym__expr1] = STATE(4559), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4560), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4561), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4555), - [aux_sym__application_repeat1] = STATE(4562), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(5095), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4889] = { - [sym_expr] = STATE(4626), - [sym__expr1] = STATE(4559), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4560), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4561), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4555), - [aux_sym__application_repeat1] = STATE(4562), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(5095), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4890] = { - [sym__expr2] = STATE(2213), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(5099), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5509), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - }, - [4891] = { - [sym__application] = STATE(3180), - [sym__expr2] = STATE(1251), - [sym_atomic_expr] = STATE(3181), - [sym__atomic_expr_curly] = STATE(3182), - [sym__atomic_expr_no_curly] = STATE(3182), - [sym_non_absurd_lambda_clause] = STATE(3183), - [sym_absurd_lambda_clause] = STATE(3183), - [sym_lambda_clause] = STATE(4628), - [aux_sym__application_repeat1] = STATE(4568), - [sym_literal] = ACTIONS(3699), - [sym_set_n] = ACTIONS(3699), - [sym_name_at] = ACTIONS(5099), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3699), - [anon_sym_DOT] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3705), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5101), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_Prop] = ACTIONS(3699), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_quote] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_unquote] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3709), - [anon_sym_LPAREN_PIPE] = ACTIONS(3711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3699), - [sym_catchall_pragma] = ACTIONS(5103), - }, - [4892] = { - [sym_semi] = STATE(4891), - [aux_sym_lambda_where_clauses_repeat1] = STATE(5005), - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_COLON] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - }, - [4893] = { - [ts_builtin_sym_end] = ACTIONS(4821), - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - }, - [4894] = { - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5511), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [4895] = { - [sym_lambda_bindings] = STATE(3200), - [sym_untyped_bindings] = STATE(4895), - [sym_typed_bindings] = STATE(4895), - [ts_builtin_sym_end] = ACTIONS(464), - [sym_literal] = ACTIONS(464), - [sym_set_n] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [sym_name_at] = ACTIONS(464), - [sym_qualified_name] = ACTIONS(464), - [anon_sym__] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(3759), - [anon_sym_DOT_DOT] = ACTIONS(3759), - [anon_sym_LBRACE] = ACTIONS(3761), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3763), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_forall] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_in] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_Prop] = ACTIONS(464), - [anon_sym_Set] = ACTIONS(464), - [anon_sym_quote] = ACTIONS(464), - [anon_sym_quoteTerm] = ACTIONS(464), - [anon_sym_unquote] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(3765), - [anon_sym_LPAREN_PIPE] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(464), - [anon_sym_module] = ACTIONS(464), - }, - [4896] = { - [sym_expr] = STATE(3217), - [sym__expr1] = STATE(4582), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4583), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4584), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4585), - [aux_sym__application_repeat1] = STATE(4586), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(5109), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(5111), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4897] = { - [sym__expr1] = STATE(2948), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3009), - [sym__declaration] = STATE(1084), - [sym_function_clause] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(3927), - [aux_sym__expr1_repeat1] = STATE(836), - [aux_sym__application_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(460), - [sym_literal] = ACTIONS(460), - [sym_set_n] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [sym_name_at] = ACTIONS(460), - [sym_qualified_name] = ACTIONS(460), - [anon_sym__] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_LBRACE_LBRACE] = ACTIONS(460), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_forall] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_in] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_Prop] = ACTIONS(460), - [anon_sym_Set] = ACTIONS(460), - [anon_sym_quote] = ACTIONS(460), - [anon_sym_quoteTerm] = ACTIONS(460), - [anon_sym_unquote] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_LPAREN_PIPE] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(460), - [anon_sym_module] = ACTIONS(460), - }, - [4898] = { - [sym_expr] = STATE(3227), - [sym__expr1] = STATE(4582), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4583), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4584), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4585), - [aux_sym__application_repeat1] = STATE(4586), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(5109), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(5111), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4899] = { - [sym_atomic_expr] = STATE(3228), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(5453), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(5453), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - }, - [4900] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(2245), - [sym__atomic_expr_curly] = STATE(2246), - [sym__atomic_expr_no_curly] = STATE(2246), - [aux_sym__application_repeat1] = STATE(147), - [sym_literal] = ACTIONS(2752), - [sym_set_n] = ACTIONS(2752), - [sym_name_at] = ACTIONS(5453), - [sym_qualified_name] = ACTIONS(2752), - [anon_sym__] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(5453), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(18), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_Prop] = ACTIONS(2752), - [anon_sym_Set] = ACTIONS(2752), - [anon_sym_quote] = ACTIONS(2752), - [anon_sym_quoteTerm] = ACTIONS(2752), - [anon_sym_unquote] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LPAREN_PIPE] = ACTIONS(2762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - }, - [4901] = { - [sym_expr] = STATE(4642), - [sym__expr1] = STATE(4582), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4583), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4584), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4585), - [aux_sym__application_repeat1] = STATE(4586), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(5109), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(5111), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4902] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(5119), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5513), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), - }, - [4903] = { - [sym__application] = STATE(3212), - [sym__expr2] = STATE(1270), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [sym_non_absurd_lambda_clause] = STATE(3215), - [sym_absurd_lambda_clause] = STATE(3215), - [sym_lambda_clause] = STATE(4644), - [aux_sym__application_repeat1] = STATE(4592), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(5119), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5121), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), - [sym_catchall_pragma] = ACTIONS(5123), - }, - [4904] = { - [sym_semi] = STATE(4903), - [aux_sym_lambda_where_clauses_repeat1] = STATE(5008), - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - }, - [4905] = { - [anon_sym_RBRACE] = ACTIONS(5515), - [sym_comment] = ACTIONS(86), - }, - [4906] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5515), - [sym_comment] = ACTIONS(86), - }, - [4907] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5515), - }, - [4908] = { - [ts_builtin_sym_end] = ACTIONS(4085), - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_RBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_RPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_COLON] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), - [anon_sym_with] = ACTIONS(4085), - }, - [4909] = { - [ts_builtin_sym_end] = ACTIONS(4121), - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_RBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_RPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), - [anon_sym_with] = ACTIONS(4121), - }, - [4910] = { - [sym_semi] = STATE(4615), - [aux_sym__declarations1_repeat1] = STATE(4910), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), - }, - [4911] = { - [anon_sym_RBRACE] = ACTIONS(5517), - [sym_comment] = ACTIONS(86), - }, - [4912] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5517), - [sym_comment] = ACTIONS(86), - }, - [4913] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5517), - }, - [4914] = { - [ts_builtin_sym_end] = ACTIONS(4085), - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_RBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_RPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_COLON] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), - }, - [4915] = { - [ts_builtin_sym_end] = ACTIONS(4121), - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_RBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_RPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), - }, - [4916] = { - [sym_semi] = STATE(4631), - [aux_sym__declarations1_repeat1] = STATE(4916), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - }, - [4917] = { - [anon_sym_RBRACE] = ACTIONS(5519), - [sym_comment] = ACTIONS(86), - }, - [4918] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5519), - [sym_comment] = ACTIONS(86), - }, - [4919] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5519), - }, - [4920] = { - [ts_builtin_sym_end] = ACTIONS(4085), - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_RBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_RPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), - }, - [4921] = { - [ts_builtin_sym_end] = ACTIONS(4121), - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_RBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_RPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), - }, - [4922] = { - [sym_semi] = STATE(4647), - [aux_sym__declarations1_repeat1] = STATE(4922), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - }, - [4923] = { - [anon_sym_RBRACE] = ACTIONS(5521), - [sym_comment] = ACTIONS(86), - }, - [4924] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5521), - [sym_comment] = ACTIONS(86), - }, - [4925] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5521), - }, - [4926] = { - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_COLON] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), - [anon_sym_with] = ACTIONS(4085), - }, - [4927] = { - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), - [anon_sym_with] = ACTIONS(4121), - }, - [4928] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), - }, - [4929] = { - [sym_semi] = STATE(4678), - [aux_sym__declarations1_repeat1] = STATE(4929), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), - }, - [4930] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_where] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - }, - [4931] = { - [anon_sym_RBRACE] = ACTIONS(5523), - [sym_comment] = ACTIONS(86), - }, - [4932] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5523), - [sym_comment] = ACTIONS(86), - }, - [4933] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5523), - }, - [4934] = { - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_COLON] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), - }, - [4935] = { - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), - }, - [4936] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - }, - [4937] = { - [sym_semi] = STATE(4694), - [aux_sym__declarations1_repeat1] = STATE(4937), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - }, - [4938] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_where] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - }, - [4939] = { - [anon_sym_RBRACE] = ACTIONS(5525), - [sym_comment] = ACTIONS(86), - }, - [4940] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5525), - [sym_comment] = ACTIONS(86), - }, - [4941] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5525), - }, - [4942] = { - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), - }, - [4943] = { - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), - }, - [4944] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), + [5249] = { + [anon_sym_RBRACE] = ACTIONS(5812), + [sym_comment] = ACTIONS(86), + }, + [5250] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5812), + [sym_comment] = ACTIONS(86), + }, + [5251] = { + [sym__layout_semicolon] = ACTIONS(3441), + [sym__layout_close_brace] = ACTIONS(3441), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + }, + [5252] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5812), + }, + [5253] = { + [sym__layout_semicolon] = ACTIONS(2590), + [sym__layout_close_brace] = ACTIONS(2590), + [sym_literal] = ACTIONS(779), + [sym_set_n] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_name_at] = ACTIONS(779), + [sym_qualified_name] = ACTIONS(779), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_LBRACE_LBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_BSLASH] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_forall] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(779), + [anon_sym_Prop] = ACTIONS(779), + [anon_sym_Set] = ACTIONS(779), + [anon_sym_quote] = ACTIONS(779), + [anon_sym_quoteTerm] = ACTIONS(779), + [anon_sym_unquote] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LPAREN_PIPE] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + }, + [5254] = { + [sym__layout_semicolon] = ACTIONS(2592), + [sym__layout_close_brace] = ACTIONS(2592), + [sym_literal] = ACTIONS(872), + [sym_set_n] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(872), + [sym_name_at] = ACTIONS(872), + [sym_qualified_name] = ACTIONS(872), + [anon_sym__] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE_LBRACE] = ACTIONS(872), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(872), + [anon_sym_EQ] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_BSLASH] = ACTIONS(872), + [anon_sym_where] = ACTIONS(872), + [anon_sym_forall] = ACTIONS(872), + [anon_sym_let] = ACTIONS(872), + [anon_sym_in] = ACTIONS(872), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_Prop] = ACTIONS(872), + [anon_sym_Set] = ACTIONS(872), + [anon_sym_quote] = ACTIONS(872), + [anon_sym_quoteTerm] = ACTIONS(872), + [anon_sym_unquote] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN_PIPE] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_module] = ACTIONS(872), + }, + [5255] = { + [sym__layout_semicolon] = ACTIONS(1444), + [sym__layout_close_brace] = ACTIONS(1444), + [sym_literal] = ACTIONS(3017), + [sym_set_n] = ACTIONS(3017), + [anon_sym_SEMI] = ACTIONS(3017), + [sym_name_at] = ACTIONS(3017), + [sym_qualified_name] = ACTIONS(3017), + [anon_sym__] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3017), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_BSLASH] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3017), + [anon_sym_forall] = ACTIONS(3017), + [anon_sym_let] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_Prop] = ACTIONS(3017), + [anon_sym_Set] = ACTIONS(3017), + [anon_sym_quote] = ACTIONS(3017), + [anon_sym_quoteTerm] = ACTIONS(3017), + [anon_sym_unquote] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LPAREN_PIPE] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_module] = ACTIONS(3017), + }, + [5256] = { + [sym__layout_semicolon] = ACTIONS(3011), + [sym__layout_close_brace] = ACTIONS(3011), + [sym_literal] = ACTIONS(2588), + [sym_set_n] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [sym_name_at] = ACTIONS(2588), + [sym_qualified_name] = ACTIONS(2588), + [anon_sym__] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2588), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2588), + [anon_sym_BSLASH] = ACTIONS(2588), + [anon_sym_where] = ACTIONS(2588), + [anon_sym_forall] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_in] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_Prop] = ACTIONS(2588), + [anon_sym_Set] = ACTIONS(2588), + [anon_sym_quote] = ACTIONS(2588), + [anon_sym_quoteTerm] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), }, - [4945] = { - [sym_semi] = STATE(4710), - [aux_sym__declarations1_repeat1] = STATE(4945), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), + [5257] = { + [sym_expr] = STATE(5301), + [sym__expr1] = STATE(38), + [sym__application] = STATE(39), + [sym__expr2] = STATE(40), + [sym__atomic_exprs1] = STATE(41), + [sym_atomic_expr] = STATE(42), + [sym__atomic_expr_curly] = STATE(43), + [sym__atomic_expr_no_curly] = STATE(43), + [sym_tele_arrow] = STATE(44), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(46), + [aux_sym__application_repeat1] = STATE(47), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(32), + [sym_set_n] = ACTIONS(32), + [sym_name_at] = ACTIONS(34), + [sym_qualified_name] = ACTIONS(32), + [anon_sym__] = ACTIONS(32), + [anon_sym_DOT] = ACTIONS(36), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(40), + [anon_sym_LBRACE_LBRACE] = ACTIONS(44), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(46), + [anon_sym_forall] = ACTIONS(48), + [anon_sym_let] = ACTIONS(50), + [anon_sym_QMARK] = ACTIONS(32), + [anon_sym_Prop] = ACTIONS(32), + [anon_sym_Set] = ACTIONS(32), + [anon_sym_quote] = ACTIONS(32), + [anon_sym_quoteTerm] = ACTIONS(32), + [anon_sym_unquote] = ACTIONS(32), + [anon_sym_LPAREN] = ACTIONS(52), + [anon_sym_LPAREN_PIPE] = ACTIONS(54), + [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4946] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_where] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), + [5258] = { + [sym_expr] = STATE(5302), + [sym__expr1] = STATE(60), + [sym__application] = STATE(61), + [sym__expr2] = STATE(62), + [sym__atomic_exprs1] = STATE(63), + [sym_atomic_expr] = STATE(64), + [sym__atomic_expr_curly] = STATE(65), + [sym__atomic_expr_no_curly] = STATE(65), + [sym_tele_arrow] = STATE(66), + [sym_typed_bindings] = STATE(45), + [aux_sym__expr1_repeat1] = STATE(67), + [aux_sym__application_repeat1] = STATE(68), + [aux_sym_tele_arrow_repeat1] = STATE(48), + [sym_literal] = ACTIONS(56), + [sym_set_n] = ACTIONS(56), + [sym_name_at] = ACTIONS(58), + [sym_qualified_name] = ACTIONS(56), + [anon_sym__] = ACTIONS(56), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_DOT_DOT] = ACTIONS(38), + [anon_sym_LBRACE] = ACTIONS(62), + [anon_sym_LBRACE_LBRACE] = ACTIONS(64), + [sym_comment] = ACTIONS(18), + [anon_sym_BSLASH] = ACTIONS(68), + [anon_sym_forall] = ACTIONS(70), + [anon_sym_let] = ACTIONS(72), + [anon_sym_QMARK] = ACTIONS(56), + [anon_sym_Prop] = ACTIONS(56), + [anon_sym_Set] = ACTIONS(56), + [anon_sym_quote] = ACTIONS(56), + [anon_sym_quoteTerm] = ACTIONS(56), + [anon_sym_unquote] = ACTIONS(56), + [anon_sym_LPAREN] = ACTIONS(74), + [anon_sym_LPAREN_PIPE] = ACTIONS(76), + [anon_sym_DOT_DOT_DOT] = ACTIONS(56), }, - [4947] = { - [sym_expr] = STATE(2511), - [sym__expr1] = STATE(4217), + [5259] = { + [sym_expr] = STATE(5303), + [sym__expr1] = STATE(110), [sym__application] = STATE(39), [sym__expr2] = STATE(40), - [sym__atomic_exprs1] = STATE(4218), + [sym__atomic_exprs1] = STATE(111), [sym_atomic_expr] = STATE(42), [sym__atomic_expr_curly] = STATE(43), [sym__atomic_expr_no_curly] = STATE(43), - [sym_tele_arrow] = STATE(4219), + [sym_tele_arrow] = STATE(112), [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(2494), - [aux_sym__application_repeat1] = STATE(2495), + [aux_sym__expr1_repeat1] = STATE(113), + [aux_sym__application_repeat1] = STATE(114), [aux_sym_tele_arrow_repeat1] = STATE(48), [sym_literal] = ACTIONS(32), [sym_set_n] = ACTIONS(32), - [sym_name_at] = ACTIONS(2996), + [sym_name_at] = ACTIONS(120), [sym_qualified_name] = ACTIONS(32), [anon_sym__] = ACTIONS(32), - [anon_sym_DOT] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(122), [anon_sym_DOT_DOT] = ACTIONS(38), [anon_sym_LBRACE] = ACTIONS(40), [anon_sym_LBRACE_LBRACE] = ACTIONS(44), [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3000), - [anon_sym_forall] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3004), + [anon_sym_BSLASH] = ACTIONS(124), + [anon_sym_forall] = ACTIONS(126), + [anon_sym_let] = ACTIONS(128), [anon_sym_QMARK] = ACTIONS(32), [anon_sym_Prop] = ACTIONS(32), [anon_sym_Set] = ACTIONS(32), @@ -159553,2301 +161373,895 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_PIPE] = ACTIONS(54), [anon_sym_DOT_DOT_DOT] = ACTIONS(32), }, - [4948] = { - [sym_semi] = STATE(4715), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4948), - [anon_sym_SEMI] = ACTIONS(3626), - [sym_comment] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(3624), - }, - [4949] = { - [sym_expr] = STATE(3227), - [sym__expr1] = STATE(4718), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4719), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4720), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3493), - [aux_sym__application_repeat1] = STATE(3494), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4059), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4061), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4950] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3455), - [sym__declaration] = STATE(3234), - [sym_function_clause] = STATE(203), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4951] = { - [sym_semi] = STATE(4950), - [aux_sym__declarations1_repeat1] = STATE(5015), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - }, - [4952] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(3455), - [sym__declaration] = STATE(4721), - [sym_function_clause] = STATE(203), - [sym__declarations1] = STATE(3236), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4953] = { - [sym_expr] = STATE(4543), - [sym__expr1] = STATE(4726), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4727), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4728), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3476), - [aux_sym__application_repeat1] = STATE(4729), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5269), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5271), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4954] = { - [sym_expr] = STATE(3952), - [sym__expr1] = STATE(4735), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4736), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4737), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3482), - [aux_sym__application_repeat1] = STATE(4275), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4871), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4955] = { - [sym_expr] = STATE(4642), - [sym__expr1] = STATE(4718), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4719), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4720), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3493), - [aux_sym__application_repeat1] = STATE(3494), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4059), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4061), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [4956] = { - [sym__expr2] = STATE(2248), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [aux_sym__application_repeat1] = STATE(798), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(5279), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(5279), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5527), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), - }, - [4957] = { - [sym__application] = STATE(3212), - [sym__expr2] = STATE(1270), - [sym_atomic_expr] = STATE(3213), - [sym__atomic_expr_curly] = STATE(3214), - [sym__atomic_expr_no_curly] = STATE(3214), - [sym_non_absurd_lambda_clause] = STATE(3215), - [sym_absurd_lambda_clause] = STATE(3215), - [sym_lambda_clause] = STATE(4644), - [aux_sym__application_repeat1] = STATE(4743), - [sym_literal] = ACTIONS(3741), - [sym_set_n] = ACTIONS(3741), - [sym_name_at] = ACTIONS(5279), - [sym_qualified_name] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - [anon_sym_DOT] = ACTIONS(5279), - [anon_sym_LBRACE] = ACTIONS(3745), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3747), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(5281), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(3741), - [anon_sym_Prop] = ACTIONS(3741), - [anon_sym_Set] = ACTIONS(3741), - [anon_sym_quote] = ACTIONS(3741), - [anon_sym_quoteTerm] = ACTIONS(3741), - [anon_sym_unquote] = ACTIONS(3741), - [anon_sym_LPAREN] = ACTIONS(3751), - [anon_sym_LPAREN_PIPE] = ACTIONS(3753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3741), - [sym_catchall_pragma] = ACTIONS(5283), - }, - [4958] = { - [sym_semi] = STATE(4957), - [aux_sym_lambda_where_clauses_repeat1] = STATE(5017), - [sym_literal] = ACTIONS(2001), - [sym_set_n] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1050), - [sym_name_at] = ACTIONS(2001), - [sym_qualified_name] = ACTIONS(2001), - [anon_sym__] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2001), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2001), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_where] = ACTIONS(2001), - [anon_sym_forall] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_QMARK] = ACTIONS(2001), - [anon_sym_Prop] = ACTIONS(2001), - [anon_sym_Set] = ACTIONS(2001), - [anon_sym_quote] = ACTIONS(2001), - [anon_sym_quoteTerm] = ACTIONS(2001), - [anon_sym_unquote] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LPAREN_PIPE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - }, - [4959] = { - [sym_semi] = STATE(5018), - [aux_sym__declarations1_repeat1] = STATE(5019), - [sym_literal] = ACTIONS(1376), - [sym_set_n] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(1376), - [sym_qualified_name] = ACTIONS(1376), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1376), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_where] = ACTIONS(1376), - [anon_sym_forall] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_Prop] = ACTIONS(1376), - [anon_sym_Set] = ACTIONS(1376), - [anon_sym_quote] = ACTIONS(1376), - [anon_sym_quoteTerm] = ACTIONS(1376), - [anon_sym_unquote] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LPAREN_PIPE] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - }, - [4960] = { - [sym_comment] = ACTIONS(86), - [anon_sym_where] = ACTIONS(5529), - }, - [4961] = { - [sym_semi] = STATE(4755), - [aux_sym__declarations1_repeat1] = STATE(4961), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - }, - [4962] = { - [sym_semi] = STATE(4764), - [aux_sym__declarations1_repeat1] = STATE(4962), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - }, - [4963] = { - [sym_expr] = STATE(4909), - [sym__expr1] = STATE(4726), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4727), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4728), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3476), - [aux_sym__application_repeat1] = STATE(4729), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5269), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5271), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4045), - [anon_sym_forall] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [4964] = { - [sym_semi] = STATE(4770), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4964), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - }, - [4965] = { - [sym__expr1] = STATE(4229), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4230), - [sym__declaration] = STATE(4544), - [sym_function_clause] = STATE(1038), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4966] = { - [sym_semi] = STATE(4965), - [aux_sym__declarations1_repeat1] = STATE(5021), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_with] = ACTIONS(2550), - }, - [4967] = { - [sym__expr1] = STATE(4229), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4230), - [sym__declaration] = STATE(4773), - [sym_function_clause] = STATE(1038), - [sym__declarations1] = STATE(4546), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - [anon_sym_with] = ACTIONS(2552), - }, - [4968] = { - [sym_expr] = STATE(4915), - [sym__expr1] = STATE(4735), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4736), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4737), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3482), - [aux_sym__application_repeat1] = STATE(4275), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(4871), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4053), - [anon_sym_forall] = ACTIONS(4055), - [anon_sym_let] = ACTIONS(4057), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [4969] = { - [sym_semi] = STATE(4777), - [aux_sym_lambda_where_clauses_repeat1] = STATE(4969), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [4970] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4235), - [sym__declaration] = STATE(4570), - [sym_function_clause] = STATE(1059), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [4971] = { - [sym_semi] = STATE(4970), - [aux_sym__declarations1_repeat1] = STATE(5022), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - }, - [4972] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4235), - [sym__declaration] = STATE(4779), - [sym_function_clause] = STATE(1059), - [sym__declarations1] = STATE(4572), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_COLON] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - }, - [4973] = { - [sym_semi] = STATE(4793), - [aux_sym__declarations1_repeat1] = STATE(4973), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), - }, - [4974] = { - [sym_semi] = STATE(4798), - [aux_sym__declarations1_repeat1] = STATE(4974), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - }, - [4975] = { - [sym_semi] = STATE(4803), - [aux_sym__declarations1_repeat1] = STATE(4975), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - }, - [4976] = { - [anon_sym_RBRACE] = ACTIONS(5531), - [sym_comment] = ACTIONS(86), - }, - [4977] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5531), - [sym_comment] = ACTIONS(86), - }, - [4978] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5531), - }, - [4979] = { - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_PIPE_RPAREN] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_COLON] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), - [anon_sym_with] = ACTIONS(4085), - }, - [4980] = { - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_PIPE_RPAREN] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), - [anon_sym_with] = ACTIONS(4121), - }, - [4981] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_PIPE_RPAREN] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), - }, - [4982] = { - [sym_semi] = STATE(4834), - [aux_sym__declarations1_repeat1] = STATE(4982), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_PIPE_RPAREN] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), - }, - [4983] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_where] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_PIPE_RPAREN] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - }, - [4984] = { - [anon_sym_RBRACE] = ACTIONS(5533), - [sym_comment] = ACTIONS(86), - }, - [4985] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5533), - [sym_comment] = ACTIONS(86), - }, - [4986] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5533), - }, - [4987] = { - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_PIPE_RPAREN] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_COLON] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), - }, - [4988] = { - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_PIPE_RPAREN] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_COLON] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), - }, - [4989] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_PIPE_RPAREN] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - }, - [4990] = { - [sym_semi] = STATE(4854), - [aux_sym__declarations1_repeat1] = STATE(4990), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_PIPE_RPAREN] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - }, - [4991] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_where] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_PIPE_RPAREN] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - }, - [4992] = { - [anon_sym_RBRACE] = ACTIONS(5535), - [sym_comment] = ACTIONS(86), - }, - [4993] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(5535), - [sym_comment] = ACTIONS(86), - }, - [4994] = { - [sym_comment] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(5535), - }, - [4995] = { - [sym_literal] = ACTIONS(4085), - [sym_set_n] = ACTIONS(4085), - [anon_sym_SEMI] = ACTIONS(4085), - [sym_name_at] = ACTIONS(4085), - [sym_qualified_name] = ACTIONS(4085), - [anon_sym__] = ACTIONS(4085), - [anon_sym_DOT] = ACTIONS(4085), - [anon_sym_DOT_DOT] = ACTIONS(4085), - [anon_sym_LBRACE] = ACTIONS(4085), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4085), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4085), - [anon_sym_EQ] = ACTIONS(4085), - [anon_sym_BSLASH] = ACTIONS(4085), - [anon_sym_where] = ACTIONS(4085), - [anon_sym_forall] = ACTIONS(4085), - [anon_sym_let] = ACTIONS(4085), - [anon_sym_in] = ACTIONS(4085), - [anon_sym_QMARK] = ACTIONS(4085), - [anon_sym_Prop] = ACTIONS(4085), - [anon_sym_Set] = ACTIONS(4085), - [anon_sym_quote] = ACTIONS(4085), - [anon_sym_quoteTerm] = ACTIONS(4085), - [anon_sym_unquote] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4085), - [anon_sym_LPAREN_PIPE] = ACTIONS(4085), - [anon_sym_PIPE_RPAREN] = ACTIONS(4085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4085), - [anon_sym_module] = ACTIONS(4085), - }, - [4996] = { - [sym_literal] = ACTIONS(4121), - [sym_set_n] = ACTIONS(4121), - [anon_sym_SEMI] = ACTIONS(4121), - [sym_name_at] = ACTIONS(4121), - [sym_qualified_name] = ACTIONS(4121), - [anon_sym__] = ACTIONS(4121), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4121), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(4121), - [anon_sym_BSLASH] = ACTIONS(4121), - [anon_sym_where] = ACTIONS(4121), - [anon_sym_forall] = ACTIONS(4121), - [anon_sym_let] = ACTIONS(4121), - [anon_sym_in] = ACTIONS(4121), - [anon_sym_QMARK] = ACTIONS(4121), - [anon_sym_Prop] = ACTIONS(4121), - [anon_sym_Set] = ACTIONS(4121), - [anon_sym_quote] = ACTIONS(4121), - [anon_sym_quoteTerm] = ACTIONS(4121), - [anon_sym_unquote] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4121), - [anon_sym_PIPE_RPAREN] = ACTIONS(4121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4121), - [anon_sym_module] = ACTIONS(4121), - }, - [4997] = { - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3519), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_PIPE_RPAREN] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - }, - [4998] = { - [sym_semi] = STATE(4870), - [aux_sym__declarations1_repeat1] = STATE(4998), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_PIPE_RPAREN] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - }, - [4999] = { - [sym_literal] = ACTIONS(3524), - [sym_set_n] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [sym_name_at] = ACTIONS(3524), - [sym_qualified_name] = ACTIONS(3524), - [anon_sym__] = ACTIONS(3524), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3524), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_BSLASH] = ACTIONS(3524), - [anon_sym_where] = ACTIONS(3524), - [anon_sym_forall] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_Prop] = ACTIONS(3524), - [anon_sym_Set] = ACTIONS(3524), - [anon_sym_quote] = ACTIONS(3524), - [anon_sym_quoteTerm] = ACTIONS(3524), - [anon_sym_unquote] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [anon_sym_PIPE_RPAREN] = ACTIONS(3524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - }, - [5000] = { - [sym_expr] = STATE(3985), - [sym__expr1] = STATE(4530), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4531), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4532), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4526), - [aux_sym__application_repeat1] = STATE(4533), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5069), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [5001] = { - [sym_expr] = STATE(4909), - [sym__expr1] = STATE(4530), - [sym__application] = STATE(1234), - [sym__expr2] = STATE(1235), - [sym__atomic_exprs1] = STATE(4531), - [sym_atomic_expr] = STATE(2918), - [sym__atomic_expr_curly] = STATE(2919), - [sym__atomic_expr_no_curly] = STATE(2919), - [sym_tele_arrow] = STATE(4532), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4526), - [aux_sym__application_repeat1] = STATE(4533), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(3407), - [sym_set_n] = ACTIONS(3407), - [sym_name_at] = ACTIONS(5069), - [sym_qualified_name] = ACTIONS(3407), - [anon_sym__] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3415), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5063), - [anon_sym_forall] = ACTIONS(5065), - [anon_sym_let] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_Prop] = ACTIONS(3407), - [anon_sym_Set] = ACTIONS(3407), - [anon_sym_quote] = ACTIONS(3407), - [anon_sym_quoteTerm] = ACTIONS(3407), - [anon_sym_unquote] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - }, - [5002] = { - [sym_semi] = STATE(4881), - [aux_sym_lambda_where_clauses_repeat1] = STATE(5002), - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - }, - [5003] = { - [sym_expr] = STATE(4016), - [sym__expr1] = STATE(4559), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4560), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4561), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4555), - [aux_sym__application_repeat1] = STATE(4562), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(5095), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [5004] = { - [sym_expr] = STATE(4915), - [sym__expr1] = STATE(4559), - [sym__application] = STATE(1250), - [sym__expr2] = STATE(1251), - [sym__atomic_exprs1] = STATE(4560), - [sym_atomic_expr] = STATE(2096), - [sym__atomic_expr_curly] = STATE(2097), - [sym__atomic_expr_no_curly] = STATE(2097), - [sym_tele_arrow] = STATE(4561), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4555), - [aux_sym__application_repeat1] = STATE(4562), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(2600), - [sym_set_n] = ACTIONS(2600), - [sym_name_at] = ACTIONS(5095), - [sym_qualified_name] = ACTIONS(2600), - [anon_sym__] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2608), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_forall] = ACTIONS(5091), - [anon_sym_let] = ACTIONS(5093), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_Prop] = ACTIONS(2600), - [anon_sym_Set] = ACTIONS(2600), - [anon_sym_quote] = ACTIONS(2600), - [anon_sym_quoteTerm] = ACTIONS(2600), - [anon_sym_unquote] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LPAREN_PIPE] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2600), - }, - [5005] = { - [sym_semi] = STATE(4891), - [aux_sym_lambda_where_clauses_repeat1] = STATE(5005), - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [5006] = { - [sym_expr] = STATE(4040), - [sym__expr1] = STATE(4582), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4583), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4584), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4585), - [aux_sym__application_repeat1] = STATE(4586), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(5109), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(5111), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [5007] = { - [sym_expr] = STATE(4921), - [sym__expr1] = STATE(4582), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4583), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4584), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(4585), - [aux_sym__application_repeat1] = STATE(4586), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(5109), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(5111), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_forall] = ACTIONS(5115), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [5008] = { - [sym_semi] = STATE(4903), - [aux_sym_lambda_where_clauses_repeat1] = STATE(5008), - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [5009] = { - [ts_builtin_sym_end] = ACTIONS(4821), - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_RBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_RPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_COLON] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - [anon_sym_with] = ACTIONS(4821), - }, - [5010] = { - [ts_builtin_sym_end] = ACTIONS(4821), - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_RBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_RPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_COLON] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - }, - [5011] = { - [ts_builtin_sym_end] = ACTIONS(4821), - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_RBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_RPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - }, - [5012] = { - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_COLON] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - [anon_sym_with] = ACTIONS(4821), - }, - [5013] = { - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_COLON] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - }, - [5014] = { - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - }, - [5015] = { - [sym_semi] = STATE(4950), - [aux_sym__declarations1_repeat1] = STATE(5015), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - }, - [5016] = { - [sym_expr] = STATE(4921), - [sym__expr1] = STATE(4718), - [sym__application] = STATE(1269), - [sym__expr2] = STATE(1270), - [sym__atomic_exprs1] = STATE(4719), - [sym_atomic_expr] = STATE(1272), - [sym__atomic_expr_curly] = STATE(1273), - [sym__atomic_expr_no_curly] = STATE(1273), - [sym_tele_arrow] = STATE(4720), - [sym_typed_bindings] = STATE(45), - [aux_sym__expr1_repeat1] = STATE(3493), - [aux_sym__application_repeat1] = STATE(3494), - [aux_sym_tele_arrow_repeat1] = STATE(48), - [sym_literal] = ACTIONS(1574), - [sym_set_n] = ACTIONS(1574), - [sym_name_at] = ACTIONS(4059), - [sym_qualified_name] = ACTIONS(1574), - [anon_sym__] = ACTIONS(1574), - [anon_sym_DOT] = ACTIONS(4061), - [anon_sym_DOT_DOT] = ACTIONS(38), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1582), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(4063), - [anon_sym_forall] = ACTIONS(4065), - [anon_sym_let] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_Prop] = ACTIONS(1574), - [anon_sym_Set] = ACTIONS(1574), - [anon_sym_quote] = ACTIONS(1574), - [anon_sym_quoteTerm] = ACTIONS(1574), - [anon_sym_unquote] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LPAREN_PIPE] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1574), - }, - [5017] = { - [sym_semi] = STATE(4957), - [aux_sym_lambda_where_clauses_repeat1] = STATE(5017), - [sym_literal] = ACTIONS(3068), - [sym_set_n] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3070), - [sym_name_at] = ACTIONS(3068), - [sym_qualified_name] = ACTIONS(3068), - [anon_sym__] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym_BSLASH] = ACTIONS(3068), - [anon_sym_where] = ACTIONS(3068), - [anon_sym_forall] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_Prop] = ACTIONS(3068), - [anon_sym_Set] = ACTIONS(3068), - [anon_sym_quote] = ACTIONS(3068), - [anon_sym_quoteTerm] = ACTIONS(3068), - [anon_sym_unquote] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_LPAREN_PIPE] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - }, - [5018] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4241), - [sym__declaration] = STATE(4594), - [sym_function_clause] = STATE(1085), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - }, - [5019] = { - [sym_semi] = STATE(5018), - [aux_sym__declarations1_repeat1] = STATE(5026), - [sym_literal] = ACTIONS(2550), - [sym_set_n] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(1378), - [sym_name_at] = ACTIONS(2550), - [sym_qualified_name] = ACTIONS(2550), - [anon_sym__] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2550), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_where] = ACTIONS(2550), - [anon_sym_forall] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_QMARK] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2550), - [anon_sym_Set] = ACTIONS(2550), - [anon_sym_quote] = ACTIONS(2550), - [anon_sym_quoteTerm] = ACTIONS(2550), - [anon_sym_unquote] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LPAREN_PIPE] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - }, - [5020] = { - [sym__expr1] = STATE(1509), - [sym__application] = STATE(94), - [sym__expr2] = STATE(95), - [sym__atomic_exprs1] = STATE(15), - [sym_atomic_expr] = STATE(96), - [sym__atomic_expr_curly] = STATE(97), - [sym__atomic_expr_no_curly] = STATE(97), - [sym_lhs] = STATE(4241), - [sym__declaration] = STATE(4959), - [sym_function_clause] = STATE(1085), - [sym__declarations1] = STATE(4596), - [aux_sym__expr1_repeat1] = STATE(1514), - [aux_sym__application_repeat1] = STATE(1515), - [sym_literal] = ACTIONS(102), - [sym_set_n] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(2552), - [sym_name_at] = ACTIONS(1879), - [sym_qualified_name] = ACTIONS(102), - [anon_sym__] = ACTIONS(102), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(106), - [anon_sym_LBRACE_LBRACE] = ACTIONS(108), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(1881), - [anon_sym_where] = ACTIONS(2552), - [anon_sym_forall] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(102), - [anon_sym_Prop] = ACTIONS(102), - [anon_sym_Set] = ACTIONS(102), - [anon_sym_quote] = ACTIONS(102), - [anon_sym_quoteTerm] = ACTIONS(102), - [anon_sym_unquote] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LPAREN_PIPE] = ACTIONS(118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(102), - [anon_sym_module] = ACTIONS(2552), - }, - [5021] = { - [sym_semi] = STATE(4965), - [aux_sym__declarations1_repeat1] = STATE(5021), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - [anon_sym_with] = ACTIONS(3519), - }, - [5022] = { - [sym_semi] = STATE(4970), - [aux_sym__declarations1_repeat1] = STATE(5022), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_COLON] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), - }, - [5023] = { - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_PIPE_RPAREN] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_COLON] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - [anon_sym_with] = ACTIONS(4821), - }, - [5024] = { - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_PIPE_RPAREN] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_COLON] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - }, - [5025] = { - [sym_literal] = ACTIONS(4821), - [sym_set_n] = ACTIONS(4821), - [anon_sym_SEMI] = ACTIONS(4821), - [sym_name_at] = ACTIONS(4821), - [sym_qualified_name] = ACTIONS(4821), - [anon_sym__] = ACTIONS(4821), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_DOT_DOT] = ACTIONS(4821), - [anon_sym_LBRACE] = ACTIONS(4821), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4821), - [sym_comment] = ACTIONS(18), - [anon_sym_DASH_GT] = ACTIONS(4821), - [anon_sym_EQ] = ACTIONS(4821), - [anon_sym_BSLASH] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4821), - [anon_sym_forall] = ACTIONS(4821), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_Prop] = ACTIONS(4821), - [anon_sym_Set] = ACTIONS(4821), - [anon_sym_quote] = ACTIONS(4821), - [anon_sym_quoteTerm] = ACTIONS(4821), - [anon_sym_unquote] = ACTIONS(4821), - [anon_sym_LPAREN] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4821), - [anon_sym_PIPE_RPAREN] = ACTIONS(4821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4821), - [anon_sym_module] = ACTIONS(4821), - }, - [5026] = { - [sym_semi] = STATE(5018), - [aux_sym__declarations1_repeat1] = STATE(5026), - [sym_literal] = ACTIONS(3519), - [sym_set_n] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [sym_name_at] = ACTIONS(3519), - [sym_qualified_name] = ACTIONS(3519), - [anon_sym__] = ACTIONS(3519), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3519), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3519), - [sym_comment] = ACTIONS(18), - [anon_sym_EQ] = ACTIONS(3519), - [anon_sym_BSLASH] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_forall] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_in] = ACTIONS(3519), - [anon_sym_QMARK] = ACTIONS(3519), - [anon_sym_Prop] = ACTIONS(3519), - [anon_sym_Set] = ACTIONS(3519), - [anon_sym_quote] = ACTIONS(3519), - [anon_sym_quoteTerm] = ACTIONS(3519), - [anon_sym_unquote] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), - [anon_sym_module] = ACTIONS(3519), + [5260] = { + [anon_sym_RBRACE] = ACTIONS(5814), + [sym_comment] = ACTIONS(86), + }, + [5261] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5814), + [sym_comment] = ACTIONS(86), + }, + [5262] = { + [sym__layout_semicolon] = ACTIONS(3441), + [sym__layout_close_brace] = ACTIONS(3441), + [sym_literal] = ACTIONS(2965), + [sym_set_n] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2965), + [sym_name_at] = ACTIONS(2965), + [sym_qualified_name] = ACTIONS(2965), + [anon_sym__] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2965), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_BSLASH] = ACTIONS(2965), + [anon_sym_where] = ACTIONS(2965), + [anon_sym_forall] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_Prop] = ACTIONS(2965), + [anon_sym_Set] = ACTIONS(2965), + [anon_sym_quote] = ACTIONS(2965), + [anon_sym_quoteTerm] = ACTIONS(2965), + [anon_sym_unquote] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LPAREN_PIPE] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_module] = ACTIONS(2965), + }, + [5263] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5814), + }, + [5264] = { + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_PIPE_RPAREN] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + [anon_sym_with] = ACTIONS(4512), + }, + [5265] = { + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_PIPE_RPAREN] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + }, + [5266] = { + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_PIPE_RPAREN] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + }, + [5267] = { + [anon_sym_RBRACE] = ACTIONS(5816), + [sym_comment] = ACTIONS(86), + }, + [5268] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5816), + [sym_comment] = ACTIONS(86), + }, + [5269] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5816), + }, + [5270] = { + [sym__layout_semicolon] = ACTIONS(3409), + [sym__layout_close_brace] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(3407), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3409), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3409), + [anon_sym_EQ] = ACTIONS(3409), + [anon_sym_where] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_COLON] = ACTIONS(3409), + [anon_sym_module] = ACTIONS(3409), + [anon_sym_with] = ACTIONS(3409), + }, + [5271] = { + [sym__layout_semicolon] = ACTIONS(5216), + [sym__layout_close_brace] = ACTIONS(5216), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + }, + [5272] = { + [sym__layout_semicolon] = ACTIONS(5218), + [sym__layout_close_brace] = ACTIONS(5218), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + }, + [5273] = { + [anon_sym_RBRACE] = ACTIONS(5818), + [sym_comment] = ACTIONS(86), + }, + [5274] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5818), + [sym_comment] = ACTIONS(86), + }, + [5275] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5818), + }, + [5276] = { + [sym__layout_semicolon] = ACTIONS(3409), + [sym__layout_close_brace] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(3407), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3409), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3409), + [anon_sym_EQ] = ACTIONS(3409), + [anon_sym_where] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_COLON] = ACTIONS(3409), + [anon_sym_module] = ACTIONS(3409), + }, + [5277] = { + [sym__layout_semicolon] = ACTIONS(5216), + [sym__layout_close_brace] = ACTIONS(5216), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + }, + [5278] = { + [sym__layout_semicolon] = ACTIONS(5218), + [sym__layout_close_brace] = ACTIONS(5218), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + }, + [5279] = { + [anon_sym_RBRACE] = ACTIONS(5820), + [sym_comment] = ACTIONS(86), + }, + [5280] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5820), + [sym_comment] = ACTIONS(86), + }, + [5281] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5820), + }, + [5282] = { + [sym__layout_semicolon] = ACTIONS(3409), + [sym__layout_close_brace] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(3407), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3409), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(3409), + [anon_sym_EQ] = ACTIONS(3409), + [anon_sym_where] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_module] = ACTIONS(3409), + }, + [5283] = { + [sym__layout_semicolon] = ACTIONS(5216), + [sym__layout_close_brace] = ACTIONS(5216), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + }, + [5284] = { + [sym__layout_semicolon] = ACTIONS(5218), + [sym__layout_close_brace] = ACTIONS(5218), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + }, + [5285] = { + [anon_sym_RBRACE] = ACTIONS(5822), + [sym_comment] = ACTIONS(86), + }, + [5286] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5822), + [sym_comment] = ACTIONS(86), + }, + [5287] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5822), + }, + [5288] = { + [sym__layout_semicolon] = ACTIONS(3409), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [anon_sym_SEMI] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_RBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + }, + [5289] = { + [sym__layout_semicolon] = ACTIONS(5216), + [sym_literal] = ACTIONS(3373), + [sym_set_n] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [sym_name_at] = ACTIONS(3373), + [sym_qualified_name] = ACTIONS(3373), + [anon_sym__] = ACTIONS(3373), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3373), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_BSLASH] = ACTIONS(3373), + [anon_sym_where] = ACTIONS(3373), + [anon_sym_forall] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_in] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_Prop] = ACTIONS(3373), + [anon_sym_Set] = ACTIONS(3373), + [anon_sym_quote] = ACTIONS(3373), + [anon_sym_quoteTerm] = ACTIONS(3373), + [anon_sym_unquote] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LPAREN_PIPE] = ACTIONS(3373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + }, + [5290] = { + [sym__layout_semicolon] = ACTIONS(5218), + [sym_literal] = ACTIONS(3375), + [sym_set_n] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [sym_name_at] = ACTIONS(3375), + [sym_qualified_name] = ACTIONS(3375), + [anon_sym__] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [sym_comment] = ACTIONS(18), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_BSLASH] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_forall] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_in] = ACTIONS(3375), + [anon_sym_QMARK] = ACTIONS(3375), + [anon_sym_Prop] = ACTIONS(3375), + [anon_sym_Set] = ACTIONS(3375), + [anon_sym_quote] = ACTIONS(3375), + [anon_sym_quoteTerm] = ACTIONS(3375), + [anon_sym_unquote] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_LPAREN_PIPE] = ACTIONS(3375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + }, + [5291] = { + [sym__layout_semicolon] = ACTIONS(4392), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [anon_sym_SEMI] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + [anon_sym_with] = ACTIONS(4512), + }, + [5292] = { + [sym__layout_semicolon] = ACTIONS(4392), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [anon_sym_SEMI] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + }, + [5293] = { + [anon_sym_RBRACE] = ACTIONS(5824), + [sym_comment] = ACTIONS(86), + }, + [5294] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5824), + [sym_comment] = ACTIONS(86), + }, + [5295] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5824), + }, + [5296] = { + [sym__layout_semicolon] = ACTIONS(3409), + [sym__layout_close_brace] = ACTIONS(3409), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [anon_sym_SEMI] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + [anon_sym_with] = ACTIONS(3863), + }, + [5297] = { + [anon_sym_RBRACE] = ACTIONS(5826), + [sym_comment] = ACTIONS(86), + }, + [5298] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5826), + [sym_comment] = ACTIONS(86), + }, + [5299] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5826), + }, + [5300] = { + [sym__layout_semicolon] = ACTIONS(3409), + [sym__layout_close_brace] = ACTIONS(3409), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [anon_sym_SEMI] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + }, + [5301] = { + [anon_sym_RBRACE] = ACTIONS(5828), + [sym_comment] = ACTIONS(86), + }, + [5302] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(5828), + [sym_comment] = ACTIONS(86), + }, + [5303] = { + [sym_comment] = ACTIONS(86), + [anon_sym_RPAREN] = ACTIONS(5828), + }, + [5304] = { + [sym__layout_semicolon] = ACTIONS(3409), + [sym__layout_close_brace] = ACTIONS(3409), + [sym_literal] = ACTIONS(3863), + [sym_set_n] = ACTIONS(3863), + [anon_sym_SEMI] = ACTIONS(3863), + [sym_name_at] = ACTIONS(3863), + [sym_qualified_name] = ACTIONS(3863), + [anon_sym__] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3863), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3863), + [anon_sym_BSLASH] = ACTIONS(3863), + [anon_sym_where] = ACTIONS(3863), + [anon_sym_forall] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_in] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_Prop] = ACTIONS(3863), + [anon_sym_Set] = ACTIONS(3863), + [anon_sym_quote] = ACTIONS(3863), + [anon_sym_quoteTerm] = ACTIONS(3863), + [anon_sym_unquote] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + }, + [5305] = { + [sym__layout_semicolon] = ACTIONS(4392), + [sym__layout_close_brace] = ACTIONS(4392), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4392), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4392), + [anon_sym_EQ] = ACTIONS(4392), + [anon_sym_where] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(4392), + [anon_sym_module] = ACTIONS(4392), + [anon_sym_with] = ACTIONS(4392), + }, + [5306] = { + [sym__layout_semicolon] = ACTIONS(4392), + [sym__layout_close_brace] = ACTIONS(4392), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4392), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4392), + [anon_sym_EQ] = ACTIONS(4392), + [anon_sym_where] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COLON] = ACTIONS(4392), + [anon_sym_module] = ACTIONS(4392), + }, + [5307] = { + [sym__layout_semicolon] = ACTIONS(4392), + [sym__layout_close_brace] = ACTIONS(4392), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4392), + [sym_comment] = ACTIONS(86), + [anon_sym_DASH_GT] = ACTIONS(4392), + [anon_sym_EQ] = ACTIONS(4392), + [anon_sym_where] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_module] = ACTIONS(4392), + }, + [5308] = { + [sym__layout_semicolon] = ACTIONS(4392), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [anon_sym_SEMI] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + }, + [5309] = { + [sym__layout_semicolon] = ACTIONS(4392), + [sym__layout_close_brace] = ACTIONS(4392), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [anon_sym_SEMI] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + [anon_sym_with] = ACTIONS(4512), + }, + [5310] = { + [sym__layout_semicolon] = ACTIONS(4392), + [sym__layout_close_brace] = ACTIONS(4392), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [anon_sym_SEMI] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_COLON] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + }, + [5311] = { + [sym__layout_semicolon] = ACTIONS(4392), + [sym__layout_close_brace] = ACTIONS(4392), + [sym_literal] = ACTIONS(4512), + [sym_set_n] = ACTIONS(4512), + [anon_sym_SEMI] = ACTIONS(4512), + [sym_name_at] = ACTIONS(4512), + [sym_qualified_name] = ACTIONS(4512), + [anon_sym__] = ACTIONS(4512), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_DOT_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4512), + [sym_comment] = ACTIONS(18), + [anon_sym_DASH_GT] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4512), + [anon_sym_BSLASH] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4512), + [anon_sym_forall] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_Prop] = ACTIONS(4512), + [anon_sym_Set] = ACTIONS(4512), + [anon_sym_quote] = ACTIONS(4512), + [anon_sym_quoteTerm] = ACTIONS(4512), + [anon_sym_unquote] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_LPAREN_PIPE] = ACTIONS(4512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), }, }; @@ -161928,7 +162342,7 @@ static TSParseActionEntry ts_parse_actions[] = { [146] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(123), [148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(124), [150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), - [152] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_lhs, 1, .fragile = true), + [152] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_lhs, 1), [154] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(133), [156] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(134), [158] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expr1, 1), @@ -161937,7 +162351,7 @@ static TSParseActionEntry ts_parse_actions[] = { [164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expr2, 1, .fragile = true), [166] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 1), [168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_atomic_expr, 1), - [170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_clause, 1, .fragile = true), + [170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_clause, 1), [172] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(138), [174] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(139), [176] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(140), @@ -162056,2512 +162470,2666 @@ static TSParseActionEntry ts_parse_actions[] = { [402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(302), [404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(303), [406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(304), - [408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(312), - [410] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(313), - [412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(314), - [414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(315), - [416] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(316), - [418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(317), - [420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(318), - [422] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(319), - [424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(320), - [426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(325), - [428] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(326), - [430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(327), - [432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(328), - [434] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(329), - [436] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(330), - [438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(331), - [440] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(332), - [442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(333), - [444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(334), - [446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(335), - [448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(343), - [450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(344), - [452] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(345), - [454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(346), - [456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(347), - [458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(348), - [460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expr2, 2), - [462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(352), - [464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_lambda_bindings, 1, .fragile = true), - [466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(69), - [468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(353), - [470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(71), - [472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(73), - [474] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(354), - [476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(355), - [478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(356), - [480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(357), - [482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(358), - [484] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(359), - [486] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(360), - [488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(361), - [490] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(362), - [492] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(363), - [494] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(364), - [496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(365), - [498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(373), - [500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(374), - [502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(375), - [504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(376), - [506] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(377), - [508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(378), - [510] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(379), - [512] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 1), - [514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 1), - [516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), - [518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_typed_untyped_bindings1, 1), - [520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(389), - [522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(388), - [524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(392), - [526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(392), - [528] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(393), - [530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), - [532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(395), - [534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(396), - [536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(403), - [538] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(404), - [540] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(407), - [542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(408), - [544] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(409), - [546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(415), - [548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(419), - [550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(420), - [552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(421), - [554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(422), - [556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(428), - [558] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(429), - [560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(431), - [562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(432), - [564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(433), - [566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(435), - [568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(436), - [570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(437), - [572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(438), - [574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(434), - [576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(441), - [578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(445), - [580] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(446), - [582] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(447), - [584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(448), - [586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(449), - [588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(450), - [590] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(451), - [592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(452), - [594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(453), - [596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), - [598] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(468), - [600] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(469), - [602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(470), - [604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(471), - [606] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(472), - [608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(473), - [610] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(477), - [612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(478), - [614] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(479), - [616] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(480), - [618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(481), - [620] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(482), - [622] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(483), - [624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(484), - [626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(485), - [628] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(493), - [630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(494), - [632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(495), - [634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(496), - [636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(497), - [638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(498), - [640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(499), - [642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(500), - [644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(501), - [646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_lhs, 2, .fragile = true), - [648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__expr1_repeat1, 2), - [650] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(510), - [652] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(511), - [654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(512), - [656] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(513), - [658] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(514), - [660] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(515), - [662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(516), - [664] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(517), - [666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(518), - [668] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(519), - [670] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_where_clause, 1, .fragile = true), - [672] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(530), - [674] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(537), - [676] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(538), - [678] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_clause, 2, .fragile = true), - [680] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), - [682] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2), - [685] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3), - [688] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4), - [691] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5), - [694] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), - [697] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(7), - [700] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(8), - [703] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9), - [706] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(10), - [709] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expr1, 2), - [711] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__expr1_repeat1, 2), SHIFT_REPEAT(540), - [714] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__expr1_repeat1, 2), SHIFT_REPEAT(541), - [717] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__expr1_repeat1, 2), SHIFT_REPEAT(542), - [720] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__expr1_repeat1, 2), SHIFT_REPEAT(543), - [723] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__expr1_repeat1, 2), SHIFT_REPEAT(544), - [726] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__expr1_repeat1, 2), SHIFT_REPEAT(545), - [729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__application, 2), - [731] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(549), - [734] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(550), - [737] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(551), - [740] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(552), - [743] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), - [745] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(553), - [748] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(554), - [751] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(563), - [753] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(564), - [755] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(565), - [757] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(567), - [759] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(568), - [761] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(569), - [763] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(570), - [765] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(566), - [767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573), - [769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), - [771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), - [773] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(585), - [775] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(586), - [777] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(587), - [779] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(589), - [781] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(590), - [783] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(591), - [785] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(592), - [787] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(588), - [789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), - [791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), - [793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(606), - [795] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(607), - [797] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(610), - [799] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(611), - [801] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(612), - [803] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(613), - [805] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(614), - [807] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(615), - [809] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(616), - [811] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(617), - [813] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(618), - [815] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(619), - [817] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(620), - [819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expr2, 2), - [821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(628), - [823] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(629), - [825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_bindings, 1, .fragile = true), - [827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633), - [829] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(640), - [831] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(641), - [833] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(644), - [835] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(645), - [837] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(646), - [839] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(628), - [841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), - [843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(656), - [845] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__atomic_expr_curly, 3), - [847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expr, 2), - [849] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(659), - [851] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(658), - [853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expr1, 2), - [855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__application, 2), - [857] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(664), - [860] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(665), - [863] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(666), - [866] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(667), - [869] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(668), - [872] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(669), - [875] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_tele_arrow, 2), - [877] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_tele_arrow_repeat1, 2), SHIFT_REPEAT(28), - [880] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tele_arrow_repeat1, 2), SHIFT_REPEAT(28), - [883] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_tele_arrow_repeat1, 2), SHIFT_REPEAT(231), - [886] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tele_arrow_repeat1, 2), SHIFT_REPEAT(232), - [889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tele_arrow_repeat1, 2), - [891] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tele_arrow_repeat1, 2), SHIFT_REPEAT(234), - [894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674), - [896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(675), - [898] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(676), - [900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(677), - [902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), - [904] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(679), - [906] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(683), - [908] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(684), - [910] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(685), - [912] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(686), - [914] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(687), - [916] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(688), - [918] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(689), - [920] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(690), - [922] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(691), - [924] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(692), - [926] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(693), - [928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(703), - [930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(704), - [932] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(709), - [934] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(708), - [936] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(712), - [938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(712), - [940] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(713), - [942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(714), - [944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(715), - [946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(716), - [948] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(727), - [950] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(728), - [952] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(731), - [954] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(732), - [956] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(733), - [958] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(703), - [960] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__atomic_expr_no_curly, 3), - [962] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(741), - [964] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(740), - [966] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(751), - [968] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_lambda_bindings, 2), - [970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(750), - [972] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(754), - [974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(755), - [976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(762), - [978] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(766), - [980] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(767), - [982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(768), - [984] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(769), - [986] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(779), - [988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(780), - [990] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(781), - [992] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(782), - [994] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(783), - [996] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(784), - [998] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(785), - [1000] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(786), - [1002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(787), - [1004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(788), - [1006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_absurd_lambda_clause, 1), - [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(793), - [1010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), - [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_clauses, 1), - [1014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(795), - [1016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(797), - [1018] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(800), - [1020] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(799), - [1022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), - [1024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(813), - [1026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(816), - [1028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(815), - [1030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(819), - [1032] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(820), - [1034] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(829), - [1036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(830), - [1038] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(831), - [1040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(832), - [1042] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(840), - [1044] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_absurd_lambda_clause, 1), - [1046] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_lambda_clause, 1), - [1048] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_lambda_where_clauses, 1, .fragile = true), - [1050] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(795), - [1052] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expr2, 3), - [1054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_binding_name, 1), - [1056] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_binding_name, 1), - [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), - [1060] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(849), - [1062] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(850), - [1064] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(851), - [1066] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(852), - [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(858), - [1070] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(864), - [1072] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(863), - [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), - [1076] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(875), - [1078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(876), - [1080] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(877), - [1082] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(879), - [1084] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(880), - [1086] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(881), - [1088] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(882), - [1090] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(878), - [1092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expr, 1), - [1094] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(887), - [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(887), - [1098] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_forall_bindings, 2), - [1100] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 2), SHIFT_REPEAT(76), - [1103] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 2), SHIFT_REPEAT(76), - [1106] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 2), SHIFT_REPEAT(77), - [1109] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 2), SHIFT_REPEAT(78), - [1112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 2), - [1114] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 2), SHIFT_REPEAT(79), - [1117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(889), - [1119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(890), - [1121] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(891), - [1123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), - [1125] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(893), - [1127] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(894), - [1129] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(898), - [1131] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(899), - [1133] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(900), - [1135] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(901), - [1137] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(902), - [1139] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(903), - [1141] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(904), - [1143] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(905), - [1145] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(915), - [1147] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(392), - [1149] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(916), - [1151] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(394), - [1153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(396), - [1155] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(917), - [1157] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(918), - [1159] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(919), - [1161] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(920), - [1163] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(921), - [1165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(922), - [1167] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(923), - [1169] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(936), - [1171] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(84), - [1174] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(85), - [1177] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(86), - [1180] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(87), - [1183] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(88), - [1186] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(89), - [1189] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(90), - [1192] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(91), - [1195] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(92), - [1198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(938), - [1200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(939), - [1202] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(940), - [1204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(941), - [1206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(942), - [1208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(943), - [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), - [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), - [1214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(957), - [1216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(958), - [1218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(960), - [1220] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(961), - [1222] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(962), - [1224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(946), - [1226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), - [1228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), - [1230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(967), - [1232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(968), - [1234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(969), - [1236] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(970), - [1238] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(971), - [1240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(972), - [1242] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(973), - [1244] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(974), - [1246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(975), - [1248] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(976), - [1250] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(977), - [1252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(982), - [1254] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(987), - [1256] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(986), - [1258] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(990), - [1260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), - [1262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(991), - [1264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), - [1266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), - [1268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), - [1270] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1005), - [1272] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1006), - [1274] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1009), - [1276] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1010), - [1278] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1011), - [1280] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(982), - [1282] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1018), - [1284] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1017), - [1286] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1024), - [1288] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1023), - [1290] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1027), - [1292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), - [1294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1028), - [1296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), - [1298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), - [1300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031), - [1302] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_rewrite_equations, 2), - [1304] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1045), - [1306] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1044), - [1308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1048), - [1310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), - [1312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1049), - [1314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), - [1316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1051), - [1318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052), - [1320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_with_expressions, 2), - [1322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_lhs, 3), - [1324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1065), - [1326] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1066), - [1328] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1067), - [1330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1069), - [1332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1070), - [1334] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1071), - [1336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1072), - [1338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1068), - [1340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1075), - [1342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075), - [1344] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1076), - [1346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077), - [1348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1078), - [1350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1079), - [1352] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_rhs, 2), - [1354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1089), - [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), - [1358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1091), - [1360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1092), - [1362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1093), - [1364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1094), - [1366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1095), - [1368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1096), - [1370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1102), - [1372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1103), - [1374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1105), - [1376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarations1, 1, .fragile = true), - [1378] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1106), - [1380] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_where_clause, 2), - [1382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), - [1384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_anonymous_name, 1), - [1386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_clause, 3), - [1388] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(540), - [1390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(541), - [1392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(542), - [1394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(543), - [1396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(544), - [1398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(545), - [1400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1111), - [1402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1110), - [1404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(549), - [1406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(550), - [1408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(551), - [1410] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(552), - [1412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(553), - [1414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(554), - [1416] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1118), - [1418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1117), - [1420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1123), - [1422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1124), - [1424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1125), - [1426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), - [1428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127), - [1430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1128), - [1432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1129), - [1434] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1130), - [1436] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1131), - [1438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1132), - [1440] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1133), - [1442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1134), - [1444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1135), - [1446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1136), - [1448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1137), - [1450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1138), - [1452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1143), - [1454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1148), - [1456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1149), - [1458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1150), - [1460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1143), - [1462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1155), - [1464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1156), - [1466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1157), - [1468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1158), - [1470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1159), - [1472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1160), - [1474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1161), - [1476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1162), - [1478] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1163), - [1480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1164), - [1482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1165), - [1484] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1166), - [1486] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1167), - [1488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1172), - [1490] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1177), - [1492] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1178), - [1494] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1179), - [1496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1172), - [1498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_bindings, 2), - [1500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1184), - [1502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1186), - [1504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1185), - [1506] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1199), - [1508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_clause, 1), - [1510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_where_clauses, 1, .fragile = true), - [1512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expr2, 3), - [1514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1203), - [1516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1204), - [1518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1205), - [1520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1206), - [1522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1209), - [1524] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1210), - [1526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1211), - [1528] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1216), - [1530] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1217), - [1532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1219), - [1534] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1220), - [1536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1221), - [1538] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1224), - [1540] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1225), - [1542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1226), - [1544] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1227), - [1546] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1228), - [1548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1229), - [1550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1230), - [1552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1231), - [1554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1232), - [1556] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1240), - [1558] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1241), - [1560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1242), - [1562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1243), - [1564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1244), - [1566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1245), - [1568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1246), - [1570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1247), - [1572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1248), - [1574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1257), - [1576] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1258), - [1578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1259), - [1580] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1260), - [1582] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1261), - [1584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1262), - [1586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1263), - [1588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1264), - [1590] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1265), - [1592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1266), - [1594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1279), - [1596] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(196), - [1599] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(197), - [1602] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(198), - [1605] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(199), - [1608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1281), - [1610] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1282), - [1612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1283), - [1614] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1284), - [1616] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1285), - [1618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1286), - [1620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), - [1622] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1294), - [1624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1295), - [1626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1296), - [1628] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1289), - [1630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expr, 3), - [1632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), - [1634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301), - [1636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(664), - [1638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(665), - [1640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(666), - [1642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(667), - [1644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(668), - [1646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(669), - [1648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1303), - [1650] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1302), - [1652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1312), - [1654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1313), - [1656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1314), - [1658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1315), - [1660] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1317), - [1662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1316), - [1664] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1320), - [1666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1321), - [1668] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1331), - [1670] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1332), - [1672] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1333), - [1674] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1334), - [1676] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1342), - [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1347), - [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1349), - [1682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1350), - [1684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1351), - [1686] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1352), - [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1353), - [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1354), - [1692] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1355), - [1694] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1359), - [1696] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1360), - [1698] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1361), - [1700] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1362), - [1702] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1363), - [1704] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1364), - [1706] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1365), - [1708] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1366), - [1710] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1376), - [1712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(712), - [1714] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1377), - [1716] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(714), - [1718] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(716), - [1720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1378), - [1722] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1379), - [1724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1380), - [1726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1381), - [1728] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1382), - [1730] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1383), - [1732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1384), - [1734] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1391), - [1736] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1392), - [1738] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1395), - [1740] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1396), - [1742] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1397), - [1744] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1401), - [1746] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1402), - [1748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1403), - [1750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1404), - [1752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1405), - [1754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1406), - [1756] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1407), - [1758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1408), - [1760] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1409), - [1762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1417), - [1764] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1418), - [1766] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1419), - [1768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1420), - [1770] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1421), - [1772] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1422), - [1774] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1423), - [1776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1424), - [1778] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1425), - [1780] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1434), - [1782] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1435), - [1784] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1436), - [1786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1437), - [1788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1438), - [1790] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1439), - [1792] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1440), - [1794] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1441), - [1796] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1442), - [1798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1443), - [1800] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1456), - [1802] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(254), - [1805] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(255), - [1808] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(256), - [1811] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(257), - [1814] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(258), - [1817] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(259), - [1820] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(260), - [1823] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(261), - [1826] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(262), - [1829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1458), - [1831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1459), - [1833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1460), - [1835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1461), - [1837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1462), - [1839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1463), - [1841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1464), - [1843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1465), - [1845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_non_absurd_lambda_clause, 2), - [1847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1466), - [1849] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1467), - [1851] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1469), - [1853] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1470), - [1855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1473), - [1857] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1474), - [1859] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1475), - [1861] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1487), - [1863] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1488), - [1865] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1490), - [1867] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1491), - [1869] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1492), - [1871] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1473), - [1873] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1497), + [408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(313), + [410] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(314), + [412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(315), + [414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(316), + [416] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(317), + [418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(318), + [420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(319), + [422] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(320), + [424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(321), + [426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(326), + [428] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(328), + [430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(329), + [432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(330), + [434] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(331), + [436] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(332), + [438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(333), + [440] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expr2, 2), + [442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(337), + [444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_lambda_bindings, 1, .fragile = true), + [446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(69), + [448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(338), + [450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(71), + [452] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(73), + [454] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(339), + [456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(340), + [458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), + [460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(342), + [462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(343), + [464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(344), + [466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(345), + [468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(346), + [470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(347), + [472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(348), + [474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(349), + [476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(350), + [478] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(358), + [480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(359), + [482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(360), + [484] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(361), + [486] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(362), + [488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(363), + [490] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(364), + [492] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 1), + [494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 1), + [496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(372), + [498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_typed_untyped_bindings1, 1), + [500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(375), + [502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(374), + [504] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(378), + [506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(378), + [508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(379), + [510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380), + [512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(381), + [514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), + [516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(404), + [518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(405), + [520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(406), + [522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(407), + [524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413), + [526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(414), + [528] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(416), + [530] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(417), + [532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(418), + [534] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(420), + [536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(421), + [538] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(422), + [540] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(423), + [542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(419), + [544] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(429), + [546] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(430), + [548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(431), + [550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(432), + [552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(433), + [554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(434), + [556] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(435), + [558] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(436), + [560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(437), + [562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451), + [564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(452), + [566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(453), + [568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(454), + [570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(455), + [572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(456), + [574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(457), + [576] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(461), + [578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(462), + [580] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(463), + [582] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(464), + [584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(465), + [586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(466), + [588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(467), + [590] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(468), + [592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(469), + [594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(477), + [596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(478), + [598] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(479), + [600] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(480), + [602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(481), + [604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(482), + [606] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(483), + [608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(484), + [610] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(485), + [612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_lhs, 2), + [614] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__expr1_repeat1, 2), + [616] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(494), + [618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(495), + [620] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(496), + [622] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(497), + [624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(498), + [626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(499), + [628] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(500), + [630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(501), + [632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(502), + [634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(503), + [636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), + [638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(518), + [640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(519), + [642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_clause, 2), + [644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), + [646] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2), + [649] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3), + [652] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4), + [655] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5), + [658] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), + [661] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(7), + [664] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(8), + [667] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9), + [670] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(10), + [673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expr1, 2), + [675] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__expr1_repeat1, 2), SHIFT_REPEAT(521), + [678] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__expr1_repeat1, 2), SHIFT_REPEAT(522), + [681] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__expr1_repeat1, 2), SHIFT_REPEAT(523), + [684] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__expr1_repeat1, 2), SHIFT_REPEAT(524), + [687] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__expr1_repeat1, 2), SHIFT_REPEAT(525), + [690] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__expr1_repeat1, 2), SHIFT_REPEAT(526), + [693] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__application, 2), + [695] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(530), + [698] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(531), + [701] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(532), + [704] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(533), + [707] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), + [709] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(534), + [712] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(535), + [715] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(544), + [717] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(545), + [719] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(546), + [721] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(548), + [723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(549), + [725] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(550), + [727] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(551), + [729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(547), + [731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(563), + [733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), + [735] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(565), + [737] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(566), + [739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(567), + [741] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(569), + [743] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(570), + [745] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(571), + [747] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(572), + [749] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(568), + [751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), + [753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(585), + [755] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(586), + [757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expr2, 2), + [759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), + [761] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(591), + [763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_bindings, 1, .fragile = true), + [765] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(600), + [767] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(601), + [769] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(605), + [771] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(604), + [773] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(606), + [775] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(590), + [777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), + [779] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__atomic_expr_curly, 3), + [781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expr, 2), + [783] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(617), + [785] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(616), + [787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expr1, 2), + [789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__application, 2), + [791] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(622), + [794] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(623), + [797] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(624), + [800] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(625), + [803] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(626), + [806] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(627), + [809] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_tele_arrow, 2), + [811] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_tele_arrow_repeat1, 2), SHIFT_REPEAT(28), + [814] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tele_arrow_repeat1, 2), SHIFT_REPEAT(28), + [817] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_tele_arrow_repeat1, 2), SHIFT_REPEAT(231), + [820] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tele_arrow_repeat1, 2), SHIFT_REPEAT(232), + [823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tele_arrow_repeat1, 2), + [825] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tele_arrow_repeat1, 2), SHIFT_REPEAT(234), + [828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(632), + [830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633), + [832] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(634), + [834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(635), + [836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(636), + [838] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(637), + [840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(644), + [842] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(645), + [844] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(651), + [846] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(650), + [848] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(654), + [850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(654), + [852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(655), + [854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(656), + [856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(657), + [858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), + [860] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(669), + [862] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(670), + [864] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(674), + [866] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(673), + [868] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(675), + [870] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(644), + [872] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__atomic_expr_no_curly, 3), + [874] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(683), + [876] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(682), + [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__atomic_expr_no_curly, 1), + [880] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(693), + [882] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_lambda_bindings, 2), + [884] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(692), + [886] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(696), + [888] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(697), + [890] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(698), + [892] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(699), + [894] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(700), + [896] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(701), + [898] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(702), + [900] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(703), + [902] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(704), + [904] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(705), + [906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(716), + [908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(716), + [910] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(717), + [912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), + [914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(719), + [916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(720), + [918] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(724), + [920] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(725), + [922] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(726), + [924] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(727), + [926] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(728), + [928] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(729), + [930] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(730), + [932] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(731), + [934] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(732), + [936] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(746), + [938] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(747), + [940] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(748), + [942] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(749), + [944] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(750), + [946] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(751), + [948] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(752), + [950] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(753), + [952] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(754), + [954] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(755), + [956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_absurd_lambda_clause, 1), + [958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), + [960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(762), + [962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expr2, 1, .fragile = true), + [964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_atomic_expr, 1), + [966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_clauses, 1), + [968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(763), + [970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(765), + [972] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(769), + [974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(768), + [976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781), + [978] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_vopen, 1), + [980] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(783), + [982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(784), + [984] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(785), + [986] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(786), + [988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(787), + [990] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(788), + [992] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(789), + [994] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(790), + [996] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(791), + [998] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(792), + [1000] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(793), + [1002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_binding_name, 1), + [1004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_binding_name, 1), + [1006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(805), + [1008] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(806), + [1010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(807), + [1012] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(808), + [1014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(814), + [1016] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(820), + [1018] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(819), + [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(832), + [1022] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(833), + [1024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(834), + [1026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(835), + [1028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(837), + [1030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(838), + [1032] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(839), + [1034] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(840), + [1036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(836), + [1038] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expr2, 3), + [1040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expr, 1), + [1042] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(845), + [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), + [1046] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_forall_bindings, 2), + [1048] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 2), SHIFT_REPEAT(76), + [1051] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 2), SHIFT_REPEAT(76), + [1054] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 2), SHIFT_REPEAT(77), + [1057] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 2), SHIFT_REPEAT(78), + [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 2), + [1062] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_typed_untyped_bindings1_repeat1, 2), SHIFT_REPEAT(79), + [1065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), + [1067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), + [1069] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(849), + [1071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), + [1073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), + [1075] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(852), + [1077] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(859), + [1079] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(378), + [1081] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(860), + [1083] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(380), + [1085] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(382), + [1087] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(861), + [1089] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(862), + [1091] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(863), + [1093] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(864), + [1095] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(865), + [1097] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(866), + [1099] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(867), + [1101] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(882), + [1103] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(84), + [1106] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(85), + [1109] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(86), + [1112] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(87), + [1115] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(88), + [1118] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(89), + [1121] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(90), + [1124] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(91), + [1127] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(92), + [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), + [1132] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(892), + [1134] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(893), + [1136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(895), + [1138] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(884), + [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), + [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), + [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(899), + [1146] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(904), + [1148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(903), + [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(907), + [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(907), + [1154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(908), + [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), + [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(910), + [1160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), + [1162] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(922), + [1164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(923), + [1166] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(927), + [1168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(926), + [1170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(928), + [1172] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(899), + [1174] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(935), + [1176] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(934), + [1178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(941), + [1180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(940), + [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(944), + [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(944), + [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(945), + [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), + [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), + [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), + [1194] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_rewrite_equations, 2), + [1196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(962), + [1198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(961), + [1200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(965), + [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), + [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(966), + [1206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), + [1208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(968), + [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(969), + [1212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_with_expressions, 2), + [1214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_lhs, 3), + [1216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(982), + [1218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(983), + [1220] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(984), + [1222] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(986), + [1224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(987), + [1226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(988), + [1228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(989), + [1230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(985), + [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(992), + [1234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), + [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(993), + [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), + [1240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), + [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996), + [1244] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_rhs, 2), + [1246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1006), + [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1006), + [1250] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1008), + [1252] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1009), + [1254] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1010), + [1256] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1011), + [1258] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1012), + [1260] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1013), + [1262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_vopen, 1), + [1264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1019), + [1266] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1020), + [1268] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1021), + [1270] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1022), + [1272] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1023), + [1274] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1024), + [1276] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1025), + [1278] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1026), + [1280] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1027), + [1282] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1028), + [1284] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarations0, 1), + [1286] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_where_clause, 2), + [1288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1041), + [1290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_anonymous_name, 1), + [1292] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_clause, 3), + [1294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(521), + [1296] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(522), + [1298] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(523), + [1300] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(524), + [1302] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(525), + [1304] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(526), + [1306] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1043), + [1308] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1042), + [1310] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(530), + [1312] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(531), + [1314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(532), + [1316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(533), + [1318] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(534), + [1320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(535), + [1322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1050), + [1324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1049), + [1326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1055), + [1328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), + [1330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1057), + [1332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1058), + [1334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1059), + [1336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1060), + [1338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1066), + [1340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1067), + [1342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1060), + [1344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1072), + [1346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), + [1348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), + [1350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1080), + [1352] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1081), + [1354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1074), + [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_bindings, 2), + [1358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), + [1360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expr2, 3), + [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), + [1364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1089), + [1366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1090), + [1368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1091), + [1370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1100), + [1372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1101), + [1374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1102), + [1376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1103), + [1378] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1104), + [1380] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1105), + [1382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1106), + [1384] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1107), + [1386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1108), + [1388] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1116), + [1390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1117), + [1392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1118), + [1394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1119), + [1396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1120), + [1398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1121), + [1400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1122), + [1402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1123), + [1404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1124), + [1406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1133), + [1408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1134), + [1410] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1135), + [1412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1136), + [1414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1137), + [1416] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1138), + [1418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1139), + [1420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1140), + [1422] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1141), + [1424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1142), + [1426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1156), + [1428] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(196), + [1431] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(197), + [1434] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(198), + [1437] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(199), + [1440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1158), + [1442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1158), + [1444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expr, 3), + [1446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1166), + [1448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), + [1450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(622), + [1452] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(623), + [1454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(624), + [1456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(625), + [1458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(626), + [1460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(627), + [1462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1169), + [1464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1168), + [1466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1178), + [1468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), + [1470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1180), + [1472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1181), + [1474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), + [1476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), + [1478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), + [1480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), + [1482] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1188), + [1484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), + [1486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), + [1488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1191), + [1490] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1198), + [1492] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(654), + [1494] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1199), + [1496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(656), + [1498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(658), + [1500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1200), + [1502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1201), + [1504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1202), + [1506] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1203), + [1508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1204), + [1510] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1205), + [1512] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1206), + [1514] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1224), + [1516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1225), + [1518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1226), + [1520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1227), + [1522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1228), + [1524] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1229), + [1526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1230), + [1528] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1231), + [1530] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1232), + [1532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1240), + [1534] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1241), + [1536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1242), + [1538] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1243), + [1540] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1244), + [1542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1245), + [1544] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1246), + [1546] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1247), + [1548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1248), + [1550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1257), + [1552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1258), + [1554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1259), + [1556] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1260), + [1558] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1261), + [1560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1262), + [1562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1263), + [1564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1264), + [1566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1265), + [1568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1266), + [1570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1280), + [1572] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(254), + [1575] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(255), + [1578] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(256), + [1581] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(257), + [1584] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(258), + [1587] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(259), + [1590] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(260), + [1593] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(261), + [1596] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(262), + [1599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), + [1601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1283), + [1603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1284), + [1605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), + [1607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1286), + [1609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), + [1611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__atomic_expr_no_curly, 2), + [1613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__atomic_expr_curly, 2), + [1615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288), + [1617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), + [1619] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1290), + [1621] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1291), + [1623] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1292), + [1625] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1294), + [1627] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1295), + [1629] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1296), + [1631] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1297), + [1633] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1293), + [1635] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1300), + [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), + [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1301), + [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302), + [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1303), + [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1304), + [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_non_absurd_lambda_clause, 2), + [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1314), + [1651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1316), + [1653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1317), + [1655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1318), + [1657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1319), + [1659] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1320), + [1661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1321), + [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1327), + [1665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1328), + [1667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1329), + [1669] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1330), + [1671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1337), + [1673] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1338), + [1675] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1339), + [1677] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1340), + [1679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1341), + [1681] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1342), + [1683] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1343), + [1685] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1344), + [1687] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1345), + [1689] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1346), + [1691] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1347), + [1693] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1348), + [1695] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1360), + [1697] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1359), + [1699] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1363), + [1701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1363), + [1703] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1364), + [1705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1365), + [1707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1366), + [1709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), + [1711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lhs, 1), + [1713] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1378), + [1715] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1379), + [1717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_clause, 1), + [1719] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1382), + [1721] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1383), + [1723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1384), + [1725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 1), + [1727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declaration, 1), + [1729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1337), + [1731] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1391), + [1733] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1390), + [1735] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1395), + [1737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1395), + [1739] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1396), + [1741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1397), + [1743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1398), + [1745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1399), + [1747] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1403), + [1749] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1404), + [1751] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1405), + [1753] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1406), + [1755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_absurd_lambda_clause, 2), + [1757] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1416), + [1759] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_untyped_bindings, 3), + [1761] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_semi, 1), + [1763] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1419), + [1765] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1420), + [1767] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1421), + [1769] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1422), + [1771] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1423), + [1773] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expr2, 4), + [1775] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1428), + [1778] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1429), + [1781] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1430), + [1784] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1431), + [1787] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1432), + [1790] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1433), + [1793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1436), + [1795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1437), + [1797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1438), + [1799] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1442), + [1801] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1443), + [1803] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1444), + [1805] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1438), + [1807] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1449), + [1810] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1450), + [1813] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1451), + [1816] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1452), + [1819] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1453), + [1822] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1454), + [1825] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1458), + [1827] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1457), + [1829] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1461), + [1831] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1462), + [1833] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1463), + [1835] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1464), + [1837] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1465), + [1839] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1466), + [1841] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1467), + [1843] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1468), + [1845] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1469), + [1847] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1470), + [1849] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1481), + [1851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1481), + [1853] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1482), + [1855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1483), + [1857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1484), + [1859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485), + [1861] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1489), + [1863] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1490), + [1865] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1491), + [1867] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1492), + [1869] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1493), + [1871] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1494), + [1873] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1495), [1875] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1496), - [1877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1501), - [1879] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1505), - [1881] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1506), - [1883] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1507), - [1885] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1508), - [1887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_absurd_lambda_clause, 2), - [1889] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1518), - [1891] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_untyped_bindings, 3), - [1893] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_semi, 1), - [1895] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1520), - [1897] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1521), - [1899] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1522), - [1901] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1523), - [1903] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1524), - [1905] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expr2, 4), - [1907] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(779), - [1910] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1527), - [1913] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(781), - [1916] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(782), - [1919] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(787), - [1922] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(788), - [1925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1529), - [1927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1530), - [1929] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1531), - [1931] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1532), - [1933] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1533), - [1935] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1534), - [1937] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1535), - [1939] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1536), - [1941] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1537), - [1943] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1538), - [1945] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1539), - [1947] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1540), - [1949] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1541), - [1951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546), - [1953] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1550), - [1955] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1551), - [1957] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1552), - [1959] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1546), - [1961] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1557), - [1964] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1558), - [1967] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1559), - [1970] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1560), - [1973] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1561), - [1976] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(1562), - [1979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1565), - [1981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1566), - [1983] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_non_absurd_lambda_clause, 2), - [1985] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1567), - [1987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1567), - [1989] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1568), - [1991] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1573), - [1993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1574), - [1995] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1576), - [1997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_absurd_lambda_clause, 2), - [1999] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1579), - [2001] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_lambda_where_clauses, 2, .fragile = true), - [2003] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1582), - [2005] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1583), - [2007] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1584), - [2009] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1585), - [2011] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1586), - [2013] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1587), - [2015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1590), - [2017] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1591), - [2019] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1592), - [2021] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1593), - [2023] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1594), - [2025] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1595), - [2027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1601), - [2029] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1608), - [2031] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1609), - [2033] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1611), - [2035] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1612), - [2037] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1613), - [2039] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1590), - [2041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1617), - [2043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1618), - [2045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1619), - [2047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1620), - [2049] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1624), - [2051] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1620), - [2053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_untyped_bindings, 3), - [2055] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_untyped_bindings, 3), - [2057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1626), - [2059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1627), - [2061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expr, 2), - [2063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1633), - [2065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1634), - [2067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1635), - [2069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1636), - [2071] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1638), - [2073] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1637), - [2075] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1641), - [2077] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1642), - [2079] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1650), - [2081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1655), - [2083] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1657), - [2085] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1658), - [2087] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1659), - [2089] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1661), - [2091] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1662), - [2093] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1663), - [2095] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1664), - [2097] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1660), - [2099] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1669), - [2101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1669), - [2103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1673), - [2105] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1674), - [2107] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1675), - [2109] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1684), - [2111] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1685), - [2113] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1686), - [2115] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1687), - [2117] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1693), - [2119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1697), - [2121] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1698), - [2123] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1699), - [2125] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1700), - [2127] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1703), - [2129] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1704), - [2131] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1705), - [2133] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1710), - [2135] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1711), - [2137] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1713), - [2139] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1714), - [2141] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1715), - [2143] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1718), - [2145] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1719), - [2147] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1720), - [2149] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1721), - [2151] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1724), - [2153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1725), - [2155] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1726), - [2157] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1727), - [2159] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1730), - [2161] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1731), - [2163] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1732), - [2165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1733), - [2167] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1734), - [2169] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1741), - [2171] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(419), - [2174] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(420), - [2177] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(421), - [2180] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(422), - [2183] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1743), - [2185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1742), - [2187] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1746), - [2189] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1747), - [2191] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1756), - [2193] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1757), - [2195] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1758), - [2197] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1759), - [2199] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1767), - [2201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1771), - [2203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1772), - [2205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1773), - [2207] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1774), - [2209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1775), - [2211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1776), - [2213] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1777), - [2215] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1781), - [2217] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1782), - [2219] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1783), - [2221] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1784), - [2223] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1785), - [2225] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1786), - [2227] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1787), - [2229] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1788), - [2231] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1798), - [2233] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(990), - [2235] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1799), - [2237] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(992), - [2239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(994), - [2241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1800), - [2243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1801), - [2245] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1802), - [2247] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1803), - [2249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1804), - [2251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1805), - [2253] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1806), - [2255] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1813), - [2257] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1814), - [2259] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1817), - [2261] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1818), - [2263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1819), - [2265] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1823), - [2267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1824), - [2269] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1825), - [2271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1826), - [2273] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1827), - [2275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1828), - [2277] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1829), - [2279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1830), - [2281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1831), - [2283] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1839), - [2285] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1840), - [2287] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1841), - [2289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1842), - [2291] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1843), - [2293] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1844), - [2295] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1845), - [2297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1846), - [2299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1847), - [2301] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1856), - [2303] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1857), - [2305] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1858), - [2307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1859), - [2309] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1860), - [2311] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1861), - [2313] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1862), - [2315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1863), - [2317] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1864), - [2319] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1865), - [2321] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1878), - [2323] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(445), - [2326] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(446), - [2329] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(447), - [2332] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(448), - [2335] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(449), - [2338] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(450), - [2341] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(451), - [2344] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(452), - [2347] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(453), - [2350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1880), - [2352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1881), - [2354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1882), - [2356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1883), - [2358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1884), - [2360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1885), - [2362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1886), - [2364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1887), - [2366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1891), - [2368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1892), - [2370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1893), - [2372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1894), - [2374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1895), - [2376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1896), - [2378] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1897), - [2380] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1898), - [2382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1899), - [2384] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1900), - [2386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1901), - [2388] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1911), - [2390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1027), - [2392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1912), - [2394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1029), - [2396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1031), - [2398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1913), - [2400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1914), - [2402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1915), - [2404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1916), - [2406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1917), - [2408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1918), - [2410] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1919), - [2412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1926), - [2414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1927), - [2416] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1930), - [2418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1931), - [2420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1932), - [2422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1936), - [2424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1937), - [2426] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1938), - [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1939), - [2430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1940), - [2432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1941), - [2434] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1945), - [2436] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1946), - [2438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1947), - [2440] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1948), - [2442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1949), - [2444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1950), - [2446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1951), - [2448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1952), - [2450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1953), - [2452] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1954), - [2454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1955), - [2456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1965), - [2458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1048), - [2460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1966), - [2462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1050), - [2464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1052), - [2466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1967), - [2468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1968), - [2470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1969), - [2472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1970), - [2474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1971), - [2476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1972), - [2478] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1973), - [2480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1980), - [2482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1982), - [2484] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1983), - [2486] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1984), - [2488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1988), - [2490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1989), - [2492] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1990), - [2494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1991), - [2496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1992), - [2498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1993), - [2500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1997), - [2502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1998), - [2504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1999), - [2506] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2000), - [2508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2001), - [2510] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2002), - [2512] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2003), - [2514] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2004), - [2516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2005), - [2518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2006), - [2520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2007), - [2522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2017), - [2524] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1075), - [2526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2018), - [2528] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1077), - [2530] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1079), - [2532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2022), - [2534] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2023), - [2536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2024), - [2538] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2030), - [2540] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2029), - [2542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2035), - [2544] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2038), - [2546] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2041), - [2548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2042), - [2550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarations1, 2, .fragile = true), - [2552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_where_clause, 3, .fragile = true), - [2554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2051), - [2556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2052), - [2558] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(540), - [2561] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(541), - [2564] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(542), - [2567] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(543), - [2570] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(544), - [2573] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(545), - [2576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2053), - [2578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2054), - [2580] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2059), - [2582] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2058), - [2584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2072), - [2586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2076), - [2588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2077), - [2590] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2078), - [2592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2079), - [2594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2080), - [2596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2081), - [2598] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2082), - [2600] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2086), - [2602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2087), - [2604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2088), - [2606] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2089), - [2608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2090), - [2610] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2091), - [2612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2092), - [2614] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2102), - [2616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2104), - [2618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2106), - [2620] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2105), - [2622] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2109), - [2624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2110), - [2626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2123), - [2628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2127), - [2630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2128), - [2632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2129), - [2634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2130), - [2636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2131), - [2638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2132), - [2640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2133), - [2642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2137), - [2644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2138), - [2646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2139), - [2648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2140), - [2650] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2141), - [2652] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2142), - [2654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2143), - [2656] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2153), - [2658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expr2, 4), - [2660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2155), - [2662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2156), - [2664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2157), - [2666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2158), - [2668] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2159), - [2670] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2158), - [2672] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2161), - [2674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_where_clauses, 2, .fragile = true), - [2676] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2164), - [2678] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2165), - [2680] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2170), - [2682] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2174), - [2684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2174), - [2686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2176), - [2688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2178), - [2690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2177), - [2692] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2181), - [2694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2181), - [2696] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2182), - [2698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2183), - [2700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2184), - [2702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2185), - [2704] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2197), - [2706] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2196), - [2708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2200), - [2710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2200), - [2712] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2201), - [2714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2202), - [2716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2203), - [2718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2204), - [2720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2214), - [2722] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2215), - [2724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2216), - [2726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2218), - [2728] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2219), - [2730] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2220), - [2732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2221), - [2734] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2217), - [2736] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2224), - [2738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2224), - [2740] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2225), - [2742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2226), - [2744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2227), - [2746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2228), - [2748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2236), - [2750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2236), - [2752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2238), - [2754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2239), - [2756] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2240), - [2758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2241), - [2760] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2242), - [2762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2243), - [2764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2251), - [2766] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2252), - [2768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2253), - [2770] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2264), - [2772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2268), - [2774] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2269), - [2776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2271), - [2778] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2272), - [2780] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2278), - [2782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2279), - [2784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2280), - [2786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2281), - [2788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2282), - [2790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2283), - [2792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2284), - [2794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2287), - [2796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2288), - [2798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2289), - [2800] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2290), - [2802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2292), - [2804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2299), - [2806] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2300), - [2808] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2302), - [2810] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2292), - [2812] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2305), - [2814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2313), - [2816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2314), - [2818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2315), - [2820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2316), - [2822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2318), - [2824] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2317), - [2826] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2321), - [2828] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2322), - [2830] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2330), - [2832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2335), - [2834] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2337), - [2836] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2338), - [2838] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2339), - [2840] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2341), - [2842] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2342), - [2844] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2343), - [2846] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2344), - [2848] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2340), - [2850] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2349), - [2852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2349), - [2854] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2357), - [2856] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2360), - [2858] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2359), - [2860] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2363), - [2862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2363), - [2864] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2364), - [2866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2365), - [2868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2366), - [2870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2367), - [2872] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2381), - [2874] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2380), - [2876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2384), - [2878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2384), - [2880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2385), - [2882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2386), - [2884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2387), - [2886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2388), - [2888] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2400), - [2890] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2401), - [2892] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2402), - [2894] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2404), - [2896] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2405), - [2898] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2406), - [2900] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2407), - [2902] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2403), - [2904] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2410), - [2906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2410), - [2908] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2411), - [2910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2412), - [2912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2413), - [2914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2414), - [2916] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2424), - [2918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2424), - [2920] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2426), - [2922] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2427), - [2924] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2428), - [2926] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2429), - [2928] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2430), - [2930] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2431), - [2932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2439), - [2934] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_untyped_bindings, 4), - [2936] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2443), - [2938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2447), - [2940] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2448), - [2942] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2450), - [2944] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2451), - [2946] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2452), - [2948] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2454), - [2950] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2456), - [2952] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2457), - [2954] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2458), - [2956] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2459), - [2958] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2462), - [2960] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2463), - [2962] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2464), - [2964] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2465), - [2966] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2468), - [2968] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2469), - [2970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2477), - [2972] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(766), - [2975] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(767), - [2978] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(768), - [2981] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(769), - [2984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2479), - [2986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2480), - [2988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_non_absurd_lambda_clause, 3), - [2990] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2481), - [2992] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2482), - [2994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2485), - [2996] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2486), - [2998] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2487), - [3000] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2488), - [3002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2489), - [3004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2490), - [3006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2502), - [3008] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2503), - [3010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2505), - [3012] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2506), - [3014] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2507), - [3016] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2485), - [3018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2512), - [3020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2513), - [3022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_clauses, 3), - [3024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1527), - [3026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2521), - [3028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2520), - [3030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2534), - [3032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2538), - [3034] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2545), - [3036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1557), - [3038] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1558), - [3040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1559), - [3042] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1560), - [3044] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1561), - [3046] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1562), - [3048] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2548), - [3050] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2547), - [3052] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2553), - [3054] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(829), - [3057] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(830), - [3060] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(831), - [3063] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(832), - [3066] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_non_absurd_lambda_clause, 3), - [3068] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_lambda_where_clauses_repeat1, 2), - [3070] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_lambda_where_clauses_repeat1, 2), SHIFT_REPEAT(795), - [3073] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2555), - [3075] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2556), - [3077] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2557), - [3079] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2558), - [3081] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2559), - [3083] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2570), - [3085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2574), - [3087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2580), - [3089] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2581), - [3091] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2583), - [3093] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2584), - [3095] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2585), - [3097] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2588), - [3099] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2589), - [3101] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2590), - [3103] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2595), - [3105] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2596), - [3107] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2598), - [3109] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2599), - [3111] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2600), - [3113] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2603), - [3115] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2604), - [3117] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2605), - [3119] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2606), - [3121] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2609), - [3123] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2610), - [3125] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2611), - [3127] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2612), - [3129] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2615), - [3131] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2616), - [3133] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2622), - [3135] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(849), - [3138] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(850), - [3141] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(851), - [3144] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(852), - [3147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_untyped_bindings, 4), - [3149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_untyped_bindings, 4), - [3151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2623), - [3153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expr, 3), - [3155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2627), - [3157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2628), - [3159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2629), - [3161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2630), - [3163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2633), - [3165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2634), - [3167] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2635), - [3169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2635), - [3171] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2637), - [3173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2641), - [3175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2642), - [3177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2647), - [3179] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2648), - [3181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2650), - [3183] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2657), - [3185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2658), - [3187] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2660), - [3189] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2650), - [3191] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2662), - [3193] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2664), - [3195] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2665), - [3197] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2670), - [3199] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2674), - [3201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2674), - [3203] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2676), - [3205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2677), - [3207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2684), - [3209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2690), - [3211] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2696), - [3213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2696), - [3215] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2697), - [3217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2701), - [3219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2702), - [3221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2703), - [3223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2704), - [3225] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2705), - [3227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2707), - [3229] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2714), - [3231] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2715), - [3233] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2717), - [3235] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2707), - [3237] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2719), - [3239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2725), - [3241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2726), - [3243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2727), - [3245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2728), - [3247] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2730), - [3249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2729), - [3251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2733), - [3253] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2734), - [3255] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2742), - [3257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2747), - [3259] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2749), - [3261] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2750), - [3263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2751), - [3265] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2753), - [3267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2754), - [3269] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2755), - [3271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2756), - [3273] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2752), - [3275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2761), - [3277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2761), - [3279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2769), - [3281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2772), - [3283] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2771), - [3285] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2775), - [3287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2775), - [3289] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2776), - [3291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2777), - [3293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2778), - [3295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2779), - [3297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2793), + [1877] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1497), + [1879] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1511), + [1881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_clause, 1), + [1883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_where_clauses, 1), + [1885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1516), + [1887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1519), + [1889] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1520), + [1891] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1521), + [1893] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1522), + [1895] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1523), + [1897] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1524), + [1899] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1534), + [1901] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1535), + [1903] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1537), + [1905] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1519), + [1907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1540), + [1909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1541), + [1911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1542), + [1913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1543), + [1915] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1547), + [1917] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1548), + [1919] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1549), + [1921] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1543), + [1923] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_untyped_bindings, 3), + [1925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_untyped_bindings, 3), + [1927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1553), + [1929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1554), + [1931] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expr, 2), + [1933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1560), + [1935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1561), + [1937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1562), + [1939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1563), + [1941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1565), + [1943] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1567), + [1945] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1568), + [1947] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1569), + [1949] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1571), + [1951] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1572), + [1953] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1573), + [1955] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1574), + [1957] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1570), + [1959] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1579), + [1961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1579), + [1963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1581), + [1965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1584), + [1967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1585), + [1969] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1586), + [1971] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1587), + [1973] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1588), + [1975] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1597), + [1977] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1598), + [1979] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1599), + [1981] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1600), + [1983] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1603), + [1985] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1604), + [1987] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1605), + [1989] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1606), + [1991] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1609), + [1993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1610), + [1995] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1611), + [1997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1612), + [1999] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1613), + [2001] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(404), + [2004] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(405), + [2007] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(406), + [2010] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(407), + [2013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1619), + [2015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1620), + [2017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1621), + [2019] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1622), + [2021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1623), + [2023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1624), + [2025] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1625), + [2027] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1632), + [2029] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(907), + [2031] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1633), + [2033] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(909), + [2035] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(911), + [2037] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1634), + [2039] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1635), + [2041] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1636), + [2043] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1637), + [2045] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1638), + [2047] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1639), + [2049] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1640), + [2051] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1658), + [2053] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1659), + [2055] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1660), + [2057] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1661), + [2059] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1662), + [2061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1663), + [2063] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1664), + [2065] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1665), + [2067] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1666), + [2069] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1674), + [2071] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1675), + [2073] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1676), + [2075] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1677), + [2077] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1678), + [2079] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1679), + [2081] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1680), + [2083] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1681), + [2085] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1682), + [2087] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1691), + [2089] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1692), + [2091] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1693), + [2093] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1694), + [2095] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1695), + [2097] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1696), + [2099] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1697), + [2101] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1698), + [2103] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1699), + [2105] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1700), + [2107] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1714), + [2109] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(429), + [2112] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(430), + [2115] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(431), + [2118] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(432), + [2121] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(433), + [2124] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(434), + [2127] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(435), + [2130] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(436), + [2133] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(437), + [2136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1716), + [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1717), + [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1718), + [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1719), + [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1720), + [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1721), + [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1722), + [2150] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1723), + [2152] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1730), + [2154] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(944), + [2156] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1731), + [2158] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(946), + [2160] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(948), + [2162] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1732), + [2164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1733), + [2166] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1734), + [2168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1735), + [2170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1736), + [2172] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1737), + [2174] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1738), + [2176] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1746), + [2178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1756), + [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1757), + [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1758), + [2184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1759), + [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1760), + [2188] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1761), + [2190] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1768), + [2192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(965), + [2194] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1769), + [2196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(967), + [2198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(969), + [2200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1770), + [2202] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1771), + [2204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1772), + [2206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1773), + [2208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1774), + [2210] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1775), + [2212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1776), + [2214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1784), + [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1792), + [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1793), + [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1794), + [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1795), + [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1796), + [2226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1797), + [2228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1804), + [2230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(992), + [2232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1805), + [2234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(994), + [2236] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(996), + [2238] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1810), + [2240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1818), + [2242] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1817), + [2244] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_vclose, 1), + [2246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1824), + [2248] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1823), + [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1827), + [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1827), + [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1828), + [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1829), + [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1830), + [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1831), + [2262] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__declarations0, 2), + [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1842), + [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1843), + [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1846), + [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1847), + [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1848), + [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1851), + [2276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarations1, 1), + [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1858), + [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1859), + [2282] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(521), + [2285] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(522), + [2288] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(523), + [2291] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(524), + [2294] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(525), + [2297] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__application_repeat1, 2), SHIFT_REPEAT(526), + [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1860), + [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1861), + [2304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1865), + [2306] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1866), + [2308] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1867), + [2310] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1868), + [2312] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1869), + [2314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1870), + [2316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1871), + [2318] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1875), + [2320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1876), + [2322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1877), + [2324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1878), + [2326] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1879), + [2328] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1880), + [2330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1881), + [2332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1892), + [2334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1894), + [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1895), + [2338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1896), + [2340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1897), + [2342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1898), + [2344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1899), + [2346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1900), + [2348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1901), + [2350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1905), + [2352] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1906), + [2354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1907), + [2356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1908), + [2358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1909), + [2360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1910), + [2362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1911), + [2364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1922), + [2366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expr2, 4), + [2368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1924), + [2370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1926), + [2372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1926), + [2374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1928), + [2376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1927), + [2378] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1931), + [2380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1931), + [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1932), + [2384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1933), + [2386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1934), + [2388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1935), + [2390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1946), + [2392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1945), + [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1949), + [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1949), + [2398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1950), + [2400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1951), + [2402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1952), + [2404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1953), + [2406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1962), + [2408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1963), + [2410] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1964), + [2412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1966), + [2414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1967), + [2416] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1968), + [2418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1969), + [2420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1965), + [2422] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1972), + [2424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1972), + [2426] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1973), + [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1974), + [2430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1975), + [2432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1976), + [2434] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1984), + [2436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1984), + [2438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1986), + [2440] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1987), + [2442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1988), + [2444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1989), + [2446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1990), + [2448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1991), + [2450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1997), + [2452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2000), + [2454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2001), + [2456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2002), + [2458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2004), + [2460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2005), + [2462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2010), + [2464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2011), + [2466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2012), + [2468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2013), + [2470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2014), + [2472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2015), + [2474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2018), + [2476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2025), + [2478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2026), + [2480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2027), + [2482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2028), + [2484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2030), + [2486] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2032), + [2488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2033), + [2490] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2034), + [2492] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2036), + [2494] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2037), + [2496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2038), + [2498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2039), + [2500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2035), + [2502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2044), + [2504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2044), + [2506] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2053), + [2508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2056), + [2510] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2055), + [2512] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2059), + [2514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2059), + [2516] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2060), + [2518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2061), + [2520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2062), + [2522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2063), + [2524] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2077), + [2526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2076), + [2528] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2080), + [2530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2080), + [2532] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2081), + [2534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2082), + [2536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2083), + [2538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2084), + [2540] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2096), + [2542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2097), + [2544] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2098), + [2546] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2100), + [2548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2101), + [2550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2102), + [2552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2103), + [2554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2099), + [2556] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2106), + [2558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2106), + [2560] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2107), + [2562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2108), + [2564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2109), + [2566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2110), + [2568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2120), + [2570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2120), + [2572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2122), + [2574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2123), + [2576] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2124), + [2578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2125), + [2580] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2126), + [2582] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2127), + [2584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2133), + [2586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2136), + [2588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_untyped_bindings, 4), + [2590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__atomic_expr_curly, 3), + [2592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__atomic_expr_no_curly, 3), + [2594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2140), + [2596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2141), + [2598] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2142), + [2600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2143), + [2602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2144), + [2604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2145), + [2606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2152), + [2608] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2153), + [2610] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2159), + [2612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2158), + [2614] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2160), + [2616] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2152), + [2618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2166), + [2620] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2165), + [2622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2175), + [2624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2176), + [2626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2177), + [2628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2178), + [2630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2180), + [2632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2182), + [2634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2183), + [2636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2184), + [2638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2186), + [2640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2187), + [2642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2188), + [2644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2189), + [2646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2185), + [2648] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2192), + [2650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2192), + [2652] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2193), + [2654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2194), + [2656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2195), + [2658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2196), + [2660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2206), + [2662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2208), + [2664] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2209), + [2666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2210), + [2668] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2211), + [2670] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2212), + [2672] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2213), + [2674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2219), + [2676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2220), + [2678] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2221), + [2680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2222), + [2682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2223), + [2684] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2224), + [2686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2231), + [2688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1363), + [2690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2232), + [2692] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1365), + [2694] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1367), + [2696] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2233), + [2698] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2234), + [2700] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2235), + [2702] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2236), + [2704] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2237), + [2706] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2238), + [2708] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2239), + [2710] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2257), + [2712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2258), + [2714] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2259), + [2716] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2260), + [2718] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2261), + [2720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2262), + [2722] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2263), + [2724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2264), + [2726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2265), + [2728] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2273), + [2730] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2274), + [2732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2275), + [2734] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2276), + [2736] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2277), + [2738] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2278), + [2740] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2279), + [2742] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2280), + [2744] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2281), + [2746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lhs, 2), + [2748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2290), + [2750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2291), + [2752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2292), + [2754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2293), + [2756] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2294), + [2758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2295), + [2760] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2296), + [2762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2307), + [2764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_clause, 2), + [2766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), + [2768] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(724), + [2771] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(725), + [2774] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(726), + [2777] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(727), + [2780] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(728), + [2783] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(729), + [2786] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(730), + [2789] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(731), + [2792] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(732), + [2795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2309), + [2797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2310), + [2799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_non_absurd_lambda_clause, 3), + [2801] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2311), + [2803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2312), + [2805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2313), + [2807] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2314), + [2809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2321), + [2811] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2322), + [2813] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2323), + [2815] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2324), + [2817] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2325), + [2819] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2326), + [2821] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2327), + [2823] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2338), + [2825] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2339), + [2827] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2341), + [2829] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2342), + [2831] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2343), + [2833] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2321), + [2835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2348), + [2837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_clauses, 3), + [2839] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1428), + [2841] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1429), + [2843] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1430), + [2845] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1431), + [2847] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1432), + [2849] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1433), + [2851] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2356), + [2853] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2355), + [2855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2361), + [2857] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2369), + [2859] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1449), + [2861] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1450), + [2863] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1451), + [2865] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1452), + [2867] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1453), + [2869] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1454), + [2871] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2372), + [2873] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2371), + [2875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2377), + [2877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2378), + [2879] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2379), + [2881] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2380), + [2883] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2381), + [2885] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2383), + [2887] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2384), + [2889] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2385), + [2891] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2386), + [2893] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2382), + [2895] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2389), + [2897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2389), + [2899] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2390), + [2901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2391), + [2903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2392), + [2905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2393), + [2907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2403), + [2909] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2405), + [2911] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2406), + [2913] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2407), + [2915] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2408), + [2917] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2409), + [2919] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2410), + [2921] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2416), + [2923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2417), + [2925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2418), + [2927] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2419), + [2929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2426), + [2931] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2427), + [2933] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2430), + [2935] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2429), + [2937] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2433), + [2939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2433), + [2941] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2434), + [2943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2435), + [2945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2436), + [2947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2437), + [2949] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2444), + [2951] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2445), + [2953] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2448), + [2955] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2449), + [2957] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2450), + [2959] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2426), + [2961] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2457), + [2963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_where_clauses, 2), + [2965] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__expr2, 5), + [2967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2464), + [2969] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2465), + [2971] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2467), + [2973] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2468), + [2975] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2469), + [2977] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2478), + [2979] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2479), + [2981] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2480), + [2983] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2481), + [2985] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2484), + [2987] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2485), + [2989] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2486), + [2991] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2487), + [2993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2490), + [2995] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2491), + [2997] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(805), + [3000] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(806), + [3003] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(807), + [3006] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(808), + [3009] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_untyped_bindings, 4), + [3011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_untyped_bindings, 4), + [3013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2496), + [3015] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2504), + [3017] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expr, 3), + [3019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2506), + [3021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2507), + [3023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2508), + [3025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2509), + [3027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2514), + [3029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2515), + [3031] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2519), + [3033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2519), + [3035] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2534), + [3037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2534), + [3039] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2535), + [3041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2541), + [3043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2542), + [3045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2543), + [3047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2544), + [3049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2546), + [3051] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2548), + [3053] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2549), + [3055] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2550), + [3057] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2552), + [3059] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2553), + [3061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2554), + [3063] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2555), + [3065] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2551), + [3067] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2560), + [3069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2560), + [3071] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2569), + [3073] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2572), + [3075] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2571), + [3077] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2575), + [3079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2575), + [3081] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2576), + [3083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2577), + [3085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2578), + [3087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2579), + [3089] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2593), + [3091] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2592), + [3093] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2596), + [3095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2596), + [3097] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2597), + [3099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2598), + [3101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2599), + [3103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2600), + [3105] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2612), + [3107] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2613), + [3109] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2614), + [3111] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2616), + [3113] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2617), + [3115] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2618), + [3117] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2619), + [3119] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2615), + [3121] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2622), + [3123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2622), + [3125] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2623), + [3127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2624), + [3129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2625), + [3131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2626), + [3133] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2636), + [3135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2636), + [3137] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2638), + [3139] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2639), + [3141] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2640), + [3143] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2641), + [3145] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2642), + [3147] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2643), + [3149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2649), + [3151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2652), + [3153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2657), + [3155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2658), + [3157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2659), + [3159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2660), + [3161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2662), + [3163] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2664), + [3165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2665), + [3167] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2666), + [3169] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2668), + [3171] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2669), + [3173] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2670), + [3175] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2671), + [3177] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2667), + [3179] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2676), + [3181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2676), + [3183] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2678), + [3185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2679), + [3187] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2680), + [3189] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2681), + [3191] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2686), + [3193] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2687), + [3195] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2688), + [3197] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2689), + [3199] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2690), + [3201] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2691), + [3203] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2692), + [3205] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2703), + [3207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2709), + [3209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2710), + [3211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2711), + [3213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2712), + [3215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2714), + [3217] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2716), + [3219] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2717), + [3221] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2718), + [3223] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2720), + [3225] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2721), + [3227] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2722), + [3229] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2723), + [3231] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2719), + [3233] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2728), + [3235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2728), + [3237] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2730), + [3239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2731), + [3241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2732), + [3243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2733), + [3245] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2736), + [3247] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2737), + [3249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2745), + [3251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2751), + [3253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2752), + [3255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2753), + [3257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2754), + [3259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2756), + [3261] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2758), + [3263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2758), + [3265] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2760), + [3267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2761), + [3269] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2762), + [3271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2763), + [3273] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2764), + [3275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2773), + [3277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2775), + [3279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2776), + [3281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2777), + [3283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2778), + [3285] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2779), + [3287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2780), + [3289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2781), + [3291] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2782), + [3293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2789), + [3295] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2790), + [3297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2791), [3299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2792), - [3301] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2796), - [3303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2796), - [3305] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2797), - [3307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2798), - [3309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2799), - [3311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2800), - [3313] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2812), - [3315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2813), - [3317] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2814), - [3319] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2816), - [3321] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2817), - [3323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2818), - [3325] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2819), - [3327] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2815), - [3329] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2822), - [3331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2822), - [3333] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2823), - [3335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2824), - [3337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2825), - [3339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2826), + [3301] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2793), + [3303] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2794), + [3305] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2795), + [3307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2796), + [3309] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2797), + [3311] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2789), + [3313] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2815), + [3315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2816), + [3317] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2817), + [3319] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2818), + [3321] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2819), + [3323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2820), + [3325] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2821), + [3327] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2822), + [3329] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2823), + [3331] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2831), + [3333] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2832), + [3335] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2833), + [3337] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2834), + [3339] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2835), [3341] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2836), - [3343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2836), + [3343] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2837), [3345] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2838), [3347] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2839), - [3349] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2840), - [3351] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2841), - [3353] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2842), - [3355] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2843), - [3357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2851), - [3359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2856), - [3361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2857), - [3363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2858), - [3365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2859), - [3367] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2861), - [3369] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2860), - [3371] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2864), - [3373] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2865), - [3375] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2879), - [3377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2884), - [3379] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2886), - [3381] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2887), - [3383] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2888), - [3385] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2890), - [3387] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2891), - [3389] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2892), - [3391] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2893), - [3393] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2889), - [3395] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2898), - [3397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2898), - [3399] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2900), - [3401] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2901), - [3403] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2902), - [3405] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2903), - [3407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2908), - [3409] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2909), - [3411] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2910), - [3413] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2911), - [3415] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2912), - [3417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2913), - [3419] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2914), - [3421] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2924), - [3423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2930), - [3425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2931), - [3427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2932), - [3429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2933), - [3431] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2935), - [3433] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2934), - [3435] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2938), - [3437] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2939), - [3439] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2953), - [3441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2958), - [3443] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2960), - [3445] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2961), - [3447] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2962), - [3449] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2964), - [3451] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2965), - [3453] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2966), - [3455] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2967), - [3457] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2963), - [3459] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2972), - [3461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2972), - [3463] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2974), - [3465] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2975), - [3467] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2976), - [3469] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2977), - [3471] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2980), - [3473] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2981), - [3475] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2988), - [3477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2994), - [3479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2995), - [3481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2996), - [3483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2997), - [3485] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2999), - [3487] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2998), - [3489] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3013), - [3491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3018), - [3493] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3020), - [3495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3020), - [3497] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3022), - [3499] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3023), - [3501] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3024), - [3503] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3025), - [3505] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3026), - [3507] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3034), - [3509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3036), - [3511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3037), - [3513] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3038), - [3515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3038), - [3517] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3039), - [3519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declarations1_repeat1, 2), - [3521] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym__declarations1_repeat1, 2), SHIFT_REPEAT(1106), - [3524] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_where_clause, 4), - [3526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3041), - [3528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3042), - [3530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3043), - [3532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3044), - [3534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3045), - [3536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3046), - [3538] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3045), - [3540] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3048), - [3542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3051), - [3544] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3050), - [3546] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3056), - [3548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3057), - [3550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3058), - [3552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3060), - [3554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3061), - [3556] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3062), - [3558] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3063), - [3560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3059), - [3562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3068), - [3564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3068), - [3566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3072), - [3568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_typed_bindings, 5), - [3570] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_typed_bindings, 5), - [3572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3073), - [3574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3074), - [3576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3075), - [3578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3076), - [3580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3078), - [3582] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3079), - [3584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3078), - [3586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3081), - [3588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3084), - [3590] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3083), - [3592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3089), - [3594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3090), - [3596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3091), - [3598] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3093), - [3600] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3094), - [3602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3095), - [3604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3096), - [3606] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3092), - [3608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3101), - [3610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3101), - [3612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3105), - [3614] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3106), - [3616] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3107), - [3618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3108), - [3620] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3109), - [3622] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3110), - [3624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_lambda_where_clauses_repeat1, 2), - [3626] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_lambda_where_clauses_repeat1, 2), SHIFT_REPEAT(795), - [3629] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3116), - [3631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3116), - [3633] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3117), - [3635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3121), - [3637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3122), - [3639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3123), - [3641] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3124), - [3643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3125), - [3645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3126), - [3647] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3127), - [3649] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3131), - [3651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3132), - [3653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3133), - [3655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3134), - [3657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3135), - [3659] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3136), - [3661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3137), - [3663] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3138), - [3665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3148), - [3667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2181), - [3669] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3149), - [3671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2183), - [3673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2185), - [3675] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3150), - [3677] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3151), - [3679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3156), - [3681] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3158), - [3683] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3159), - [3685] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3160), - [3687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3163), - [3689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3164), - [3691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3165), - [3693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3166), - [3695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3167), - [3697] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3168), - [3699] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3172), - [3701] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3173), - [3703] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3174), - [3705] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3175), - [3707] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3176), - [3709] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3177), - [3711] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3178), - [3713] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3179), - [3715] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3189), - [3717] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2200), - [3719] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3190), - [3721] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2202), - [3723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2204), - [3725] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3191), - [3727] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3192), - [3729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3195), - [3731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3196), - [3733] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3197), - [3735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3198), - [3737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3199), - [3739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3200), - [3741] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3204), - [3743] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3205), - [3745] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3206), - [3747] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3207), - [3749] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3208), - [3751] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3209), - [3753] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3210), - [3755] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3211), - [3757] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3221), - [3759] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2224), - [3761] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3222), - [3763] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2226), - [3765] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2228), - [3767] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3223), - [3769] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3224), - [3771] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3229), - [3773] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3228), - [3775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3237), - [3777] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3238), - [3779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3240), - [3781] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3241), - [3783] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3240), - [3785] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3243), - [3787] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3245), - [3789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3245), - [3791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3248), - [3793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3252), - [3795] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3253), - [3797] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3254), - [3799] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3255), - [3801] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3257), - [3803] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3259), - [3805] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3260), - [3807] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3261), - [3809] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3262), - [3811] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3265), - [3813] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3266), - [3815] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3267), - [3817] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3268), - [3819] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3271), - [3821] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3272), - [3823] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3273), - [3825] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3274), - [3827] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3275), - [3829] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1331), - [3832] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1332), - [3835] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1333), - [3838] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1334), - [3841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3282), - [3843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3283), - [3845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3284), - [3847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3285), - [3849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3288), - [3851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3289), - [3853] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3290), - [3855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3290), - [3857] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3292), - [3859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3296), - [3861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3297), - [3863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3301), - [3865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3302), - [3867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3303), - [3869] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3304), - [3871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3305), - [3873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3306), - [3875] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3307), - [3877] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3311), - [3879] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3312), - [3881] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3313), - [3883] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3314), - [3885] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3315), - [3887] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3316), - [3889] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3317), - [3891] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3318), - [3893] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3328), - [3895] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2363), - [3897] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3329), - [3899] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2365), - [3901] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2367), - [3903] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3330), - [3905] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3331), - [3907] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3332), - [3909] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3333), - [3911] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3334), - [3913] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3335), - [3915] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3336), - [3917] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3343), - [3919] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3346), - [3921] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3347), - [3923] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3348), - [3925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3352), - [3927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3353), - [3929] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3354), - [3931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3355), - [3933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3356), - [3935] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3357), - [3937] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3361), - [3939] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3362), - [3941] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3363), - [3943] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3364), - [3945] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3365), - [3947] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3366), - [3949] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3367), - [3951] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3368), - [3953] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3378), - [3955] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2384), - [3957] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3379), - [3959] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2386), - [3961] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2388), - [3963] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3380), - [3965] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3381), - [3967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3385), - [3969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3386), - [3971] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3387), - [3973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3388), - [3975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3389), - [3977] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3390), - [3979] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3394), - [3981] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3395), - [3983] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3396), - [3985] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3397), - [3987] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3398), - [3989] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3399), - [3991] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3400), - [3993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3401), - [3995] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3411), - [3997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2410), - [3999] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3412), - [4001] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2412), - [4003] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2414), - [4005] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3413), - [4007] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3414), - [4009] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3420), - [4011] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3419), - [4013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3428), - [4015] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3429), - [4017] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3442), - [4019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3442), - [4021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3446), - [4023] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3447), - [4025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3451), - [4027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3457), - [4029] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3458), - [4031] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3460), - [4033] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3461), - [4035] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3462), - [4037] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3467), - [4039] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3468), - [4041] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3470), - [4043] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3472), - [4045] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3473), - [4047] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3474), - [4049] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3475), - [4051] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3478), - [4053] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3479), - [4055] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3480), - [4057] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3481), - [4059] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3484), - [4061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3485), + [3349] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2848), + [3351] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2849), + [3353] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2850), + [3355] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2851), + [3357] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2852), + [3359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2853), + [3361] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2854), + [3363] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2855), + [3365] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2856), + [3367] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2857), + [3369] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2871), + [3371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarations1, 2), + [3373] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declarations, 3), + [3375] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_where_clause, 4), + [3377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2875), + [3379] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2877), + [3381] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2876), + [3383] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2882), + [3385] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2883), + [3387] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2884), + [3389] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2886), + [3391] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2887), + [3393] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2888), + [3395] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2889), + [3397] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2885), + [3399] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2894), + [3401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2894), + [3403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2896), + [3405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2899), + [3407] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_typed_bindings, 5), + [3409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_typed_bindings, 5), + [3411] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2901), + [3413] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2900), + [3415] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2906), + [3417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2907), + [3419] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2908), + [3421] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2910), + [3423] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2911), + [3425] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2912), + [3427] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2913), + [3429] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2909), + [3431] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2918), + [3433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2918), + [3435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2920), + [3437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2923), + [3439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_vclose, 1), + [3441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expr2, 5), + [3443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2924), + [3445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2925), + [3447] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2926), + [3449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2927), + [3451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2928), + [3453] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2929), + [3455] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2936), + [3457] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1931), + [3459] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2937), + [3461] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1933), + [3463] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1935), + [3465] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2938), + [3467] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2939), + [3469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2948), + [3471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2949), + [3473] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2950), + [3475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2951), + [3477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2952), + [3479] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2953), + [3481] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2960), + [3483] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1949), + [3485] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2961), + [3487] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1951), + [3489] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1953), + [3491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2964), + [3493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2965), + [3495] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2966), + [3497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2967), + [3499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2968), + [3501] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2969), + [3503] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2976), + [3505] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1972), + [3507] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2977), + [3509] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1974), + [3511] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1976), + [3513] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2982), + [3515] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2981), + [3517] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2989), + [3519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2989), + [3521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2993), + [3523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2994), + [3525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2995), + [3527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2996), + [3529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2997), + [3531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3000), + [3533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3003), + [3535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3004), + [3537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3008), + [3539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3009), + [3541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3010), + [3543] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3011), + [3545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3012), + [3547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3013), + [3549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3014), + [3551] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3021), + [3553] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2059), + [3555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3022), + [3557] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2061), + [3559] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2063), + [3561] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3023), + [3563] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3024), + [3565] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3025), + [3567] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3026), + [3569] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3027), + [3571] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3028), + [3573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3029), + [3575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3046), + [3577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3047), + [3579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3048), + [3581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3049), + [3583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3050), + [3585] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3051), + [3587] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3058), + [3589] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2080), + [3591] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3059), + [3593] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2082), + [3595] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2084), + [3597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3066), + [3599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3067), + [3601] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3068), + [3603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3069), + [3605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3070), + [3607] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3071), + [3609] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3078), + [3611] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2106), + [3613] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3079), + [3615] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2108), + [3617] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2110), + [3619] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3088), + [3621] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3087), + [3623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3095), + [3625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3100), + [3627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3101), + [3629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3102), + [3631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3103), + [3633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3105), + [3635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3107), + [3637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3109), + [3639] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3110), + [3641] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3111), + [3643] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3112), + [3645] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3113), + [3647] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3114), + [3649] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3115), + [3651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3116), + [3653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3117), + [3655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3118), + [3657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3132), + [3659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3134), + [3661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3135), + [3663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3136), + [3665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3137), + [3667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3138), + [3669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3139), + [3671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3142), + [3673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3145), + [3675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3146), + [3677] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3147), + [3679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3148), + [3681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3149), + [3683] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3150), + [3685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3157), + [3687] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3158), + [3689] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3164), + [3691] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3165), + [3693] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3157), + [3695] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3171), + [3697] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3170), + [3699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3180), + [3701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3181), + [3703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3182), + [3705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3183), + [3707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3185), + [3709] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3187), + [3711] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3188), + [3713] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3189), + [3715] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3191), + [3717] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3192), + [3719] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3193), + [3721] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3194), + [3723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3190), + [3725] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3199), + [3727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3199), + [3729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3208), + [3731] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3211), + [3733] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3210), + [3735] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3214), + [3737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3214), + [3739] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3215), + [3741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3216), + [3743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3217), + [3745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3218), + [3747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_rewrite_equations, 2), + [3749] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3232), + [3751] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3231), + [3753] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3235), + [3755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3235), + [3757] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3236), + [3759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3237), + [3761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3238), + [3763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3239), + [3765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_with_expressions, 2), + [3767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lhs, 3), + [3769] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3251), + [3771] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3252), + [3773] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3253), + [3775] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3255), + [3777] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3256), + [3779] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3257), + [3781] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3258), + [3783] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3254), + [3785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_rhs, 2), + [3787] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3263), + [3789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3263), + [3791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3265), + [3793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarations0, 1), + [3795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_where_clause, 2), + [3797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3268), + [3799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_clause, 3), + [3801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3273), + [3803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3274), + [3805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3275), + [3807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3276), + [3809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3278), + [3811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3285), + [3813] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3286), + [3815] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3288), + [3817] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3289), + [3819] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3290), + [3821] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3299), + [3823] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3300), + [3825] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3301), + [3827] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3302), + [3829] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3305), + [3831] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3306), + [3833] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3307), + [3835] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3308), + [3837] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3311), + [3839] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3312), + [3841] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3313), + [3843] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3314), + [3845] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3315), + [3847] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3325), + [3849] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1403), + [3852] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1404), + [3855] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1405), + [3858] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1406), + [3861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_non_absurd_lambda_clause, 4), + [3863] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_typed_bindings, 5), + [3865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3327), + [3867] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3328), + [3869] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3327), + [3871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3330), + [3873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3331), + [3875] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3332), + [3877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3332), + [3879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3334), + [3881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3337), + [3883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3338), + [3885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3339), + [3887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3340), + [3889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3341), + [3891] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3342), + [3893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3343), + [3895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3344), + [3897] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3345), + [3899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3352), + [3901] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3353), + [3903] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3359), + [3905] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3358), + [3907] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3360), + [3909] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3352), + [3911] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3366), + [3913] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3365), + [3915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3375), + [3917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3376), + [3919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3377), + [3921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3378), + [3923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3380), + [3925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3382), + [3927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3383), + [3929] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3384), + [3931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3385), + [3933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3386), + [3935] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3387), + [3937] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3394), + [3939] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2433), + [3941] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3395), + [3943] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2435), + [3945] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2437), + [3947] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3396), + [3949] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3397), + [3951] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3398), + [3953] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3399), + [3955] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3400), + [3957] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3401), + [3959] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3402), + [3961] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3410), + [3963] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3411), + [3965] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3412), + [3967] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3413), + [3969] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3414), + [3971] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3415), + [3973] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3416), + [3975] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3417), + [3977] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3418), + [3979] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3426), + [3981] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3427), + [3983] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3428), + [3985] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3429), + [3987] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3430), + [3989] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3431), + [3991] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3432), + [3993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3433), + [3995] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3434), + [3997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3443), + [3999] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3444), + [4001] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3445), + [4003] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3446), + [4005] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3447), + [4007] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3448), + [4009] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3449), + [4011] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3450), + [4013] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3451), + [4015] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3452), + [4017] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3466), + [4019] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1489), + [4022] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1490), + [4025] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1491), + [4028] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1492), + [4031] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1493), + [4034] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1494), + [4037] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1495), + [4040] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1496), + [4043] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1497), + [4046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_lambda_where_clauses_repeat1, 2), + [4048] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_lambda_where_clauses_repeat1, 2), SHIFT_REPEAT(763), + [4051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3469), + [4053] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3469), + [4055] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3475), + [4057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3475), + [4059] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3485), + [4061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3485), [4063] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3486), - [4065] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3487), - [4067] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3488), - [4069] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3497), - [4071] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1505), - [4074] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1506), - [4077] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1507), - [4080] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1508), - [4083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_non_absurd_lambda_clause, 4), - [4085] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_typed_bindings, 5), - [4087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3500), - [4089] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3501), - [4091] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3502), - [4093] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3503), - [4095] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3500), - [4097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3506), - [4099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3507), - [4101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3508), - [4103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3509), - [4105] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3510), - [4107] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3509), - [4109] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3512), - [4111] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3514), - [4113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3514), - [4115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3518), - [4117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3519), - [4119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3520), - [4121] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_non_absurd_lambda_clause, 4), - [4123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3526), - [4125] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3527), - [4127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3529), - [4129] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3530), - [4131] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3529), - [4133] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3532), - [4135] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3534), - [4137] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3535), - [4139] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3536), - [4141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3539), - [4143] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3543), - [4145] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3544), - [4147] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3545), - [4149] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3539), - [4151] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3548), - [4153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3552), - [4155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3552), - [4157] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3554), - [4159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3555), - [4161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3562), - [4163] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3568), - [4165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3568), - [4167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3571), - [4169] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3572), - [4171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3572), - [4173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3576), - [4175] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3578), - [4177] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3579), - [4179] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3580), - [4181] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3582), - [4183] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3584), - [4185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3585), - [4187] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3586), - [4189] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3587), - [4191] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3590), - [4193] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3591), - [4195] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3592), - [4197] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3593), - [4199] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3596), - [4201] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3597), - [4203] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3598), - [4205] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3599), - [4207] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3600), - [4209] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1684), - [4212] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1685), - [4215] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1686), - [4218] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1687), - [4221] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3606), - [4223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3606), - [4225] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3607), - [4227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3611), - [4229] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3612), - [4231] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3613), - [4233] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3614), - [4235] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3617), - [4237] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3618), - [4239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3619), - [4241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3624), - [4243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3626), - [4245] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3627), - [4247] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3628), - [4249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3631), - [4251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3632), - [4253] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3633), - [4255] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3636), - [4257] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3637), - [4259] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3638), - [4261] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3641), - [4263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3642), - [4265] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3643), - [4267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3646), - [4269] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3647), - [4271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3648), - [4273] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3652), - [4275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3653), - [4277] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3654), - [4279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3656), - [4281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3658), - [4283] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3659), - [4285] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3660), - [4287] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3661), - [4289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3664), - [4291] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3665), - [4293] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3666), - [4295] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3667), - [4297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3670), - [4299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3671), - [4301] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3672), - [4303] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3673), - [4305] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3674), - [4307] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1756), - [4310] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1757), - [4313] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1758), - [4316] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1759), - [4319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3680), - [4321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3681), - [4323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3682), - [4325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3683), - [4327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3686), - [4329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3687), - [4331] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3688), - [4333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3688), - [4335] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3690), - [4337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3694), - [4339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3695), - [4341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3699), - [4343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3700), - [4345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3701), - [4347] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3702), - [4349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3703), - [4351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3704), - [4353] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3705), - [4355] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3709), - [4357] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3710), - [4359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3711), - [4361] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3712), - [4363] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3713), - [4365] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3714), - [4367] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3715), - [4369] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3716), - [4371] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3726), - [4373] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2775), - [4375] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3727), - [4377] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2777), - [4379] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2779), - [4381] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3728), - [4383] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3729), - [4385] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3730), - [4387] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3731), - [4389] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3732), - [4391] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3733), - [4393] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3734), - [4395] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3741), - [4397] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3744), - [4399] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3745), - [4401] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3746), - [4403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3750), - [4405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3751), - [4407] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3752), - [4409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3753), - [4411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3754), - [4413] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3755), - [4415] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3759), - [4417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3760), - [4419] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3761), - [4421] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3762), - [4423] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3763), - [4425] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3764), - [4427] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3765), - [4429] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3766), - [4431] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3776), - [4433] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2796), - [4435] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3777), - [4437] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2798), - [4439] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2800), - [4441] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3778), - [4443] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3779), - [4445] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3780), - [4447] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3781), - [4449] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3782), - [4451] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3783), - [4453] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3784), - [4455] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3791), - [4457] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3792), - [4459] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3793), - [4461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3797), - [4463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3798), - [4465] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3799), - [4467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3800), - [4469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3801), - [4471] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3802), - [4473] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3806), - [4475] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3807), - [4477] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3808), - [4479] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3809), - [4481] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3810), - [4483] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3811), - [4485] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3812), - [4487] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3813), - [4489] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3823), - [4491] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2822), - [4493] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3824), - [4495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2824), - [4497] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2826), - [4499] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3825), - [4501] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3826), - [4503] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3832), - [4505] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3831), - [4507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3840), - [4509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3841), - [4511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3842), - [4513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3843), - [4515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3846), - [4517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3847), - [4519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3848), - [4521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3848), - [4523] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3849), - [4525] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3850), - [4527] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3851), - [4529] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3853), - [4531] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3856), - [4533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3860), - [4535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3861), - [4537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3863), - [4539] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3868), - [4541] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3869), - [4543] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3870), - [4545] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3872), - [4547] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3873), - [4549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3874), - [4551] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3875), - [4553] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3871), - [4555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3880), - [4557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3880), - [4559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3884), - [4561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3885), - [4563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3886), - [4565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3887), - [4567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3888), - [4569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3891), - [4571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3892), - [4573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3893), - [4575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3893), - [4577] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3894), - [4579] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3895), - [4581] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3897), - [4583] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3900), - [4585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3904), - [4587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3905), - [4589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3907), - [4591] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3912), - [4593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3912), - [4595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3915), - [4597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3916), - [4599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3917), - [4601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3918), - [4603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3919), - [4605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3922), - [4607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3923), - [4609] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3924), - [4611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3924), - [4613] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3925), - [4615] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3926), - [4617] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3929), - [4619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3934), - [4621] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3939), - [4623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3939), - [4625] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3940), - [4627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3944), - [4629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_typed_bindings, 6), - [4631] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_typed_bindings, 6), - [4633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3948), - [4635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3949), - [4637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3950), - [4639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3951), - [4641] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3956), - [4643] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3957), - [4645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3962), - [4647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3963), - [4649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3964), - [4651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3965), - [4653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3975), - [4655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3975), - [4657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3976), - [4659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3983), - [4661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3984), - [4663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3985), - [4665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3986), - [4667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3988), - [4669] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3987), - [4671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3991), - [4673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3992), - [4675] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4000), - [4677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4005), - [4679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4007), - [4681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4007), - [4683] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4009), - [4685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4014), - [4687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4015), - [4689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4016), - [4691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4017), - [4693] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4019), - [4695] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4018), - [4697] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4025), - [4699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4030), - [4701] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4033), - [4703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4038), - [4705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4039), - [4707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4040), - [4709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4041), - [4711] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4043), - [4713] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4042), - [4715] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4049), - [4717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4054), - [4719] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4057), - [4721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4058), - [4723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4059), - [4725] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4060), - [4727] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4061), - [4729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4067), - [4731] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4084), - [4733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4084), - [4735] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4085), - [4737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4090), - [4739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4099), - [4741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4100), - [4743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4101), - [4745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4102), - [4747] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4104), - [4749] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4103), - [4751] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4107), - [4753] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4108), - [4755] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4116), - [4757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4121), - [4759] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4123), - [4761] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4124), - [4763] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4125), - [4765] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4127), - [4767] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4128), - [4769] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4129), - [4771] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4130), - [4773] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4126), - [4775] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4135), - [4777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4135), - [4779] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4142), - [4781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4148), - [4783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4149), - [4785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4150), - [4787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4151), - [4789] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4153), - [4791] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4152), - [4793] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4159), - [4795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4164), - [4797] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4168), - [4799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4174), - [4801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4175), - [4803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4176), - [4805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4177), - [4807] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4179), - [4809] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4178), - [4811] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4185), - [4813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4190), - [4815] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4194), - [4817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4196), - [4819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4197), - [4821] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_typed_bindings, 6), - [4823] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4198), - [4825] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4199), - [4827] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4201), - [4829] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4203), - [4831] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4209), - [4833] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4211), - [4835] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4212), - [4837] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4213), - [4839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4216), - [4841] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4220), - [4843] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4221), - [4845] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4222), - [4847] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4216), - [4849] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4225), - [4851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4225), - [4853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4237), - [4855] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4243), - [4857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4243), - [4859] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4245), - [4861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4249), - [4863] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4256), - [4865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4264), - [4867] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4268), - [4869] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4264), - [4871] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4270), - [4873] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4271), - [4875] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4276), - [4877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4280), - [4879] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4285), - [4881] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4286), - [4883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4290), - [4885] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4291), - [4887] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4292), - [4889] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4293), - [4891] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4296), - [4893] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4297), - [4895] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4298), - [4897] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4303), - [4899] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4305), - [4901] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4306), - [4903] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4307), - [4905] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4310), - [4907] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4311), - [4909] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4312), - [4911] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4315), - [4913] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4316), - [4915] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4317), - [4917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4321), - [4919] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4338), - [4921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4338), - [4923] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4339), - [4925] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4342), - [4927] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4343), - [4929] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4348), - [4931] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4352), - [4933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4352), - [4935] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4354), - [4937] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4355), - [4939] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4360), - [4941] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4361), - [4943] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4366), - [4945] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4383), - [4947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4383), - [4949] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4384), - [4951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4389), - [4953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4398), - [4955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4399), - [4957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4400), - [4959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4401), - [4961] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4403), - [4963] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4402), - [4965] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4406), - [4967] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4407), - [4969] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4415), - [4971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4420), - [4973] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4422), - [4975] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4423), - [4977] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4424), - [4979] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4426), - [4981] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4427), - [4983] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4428), - [4985] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4429), - [4987] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4425), - [4989] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4434), - [4991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4434), - [4993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4441), - [4995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4447), - [4997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4448), - [4999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4449), - [5001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4450), - [5003] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4452), - [5005] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4451), - [5007] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4455), - [5009] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4456), - [5011] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4464), - [5013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4469), - [5015] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4471), - [5017] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4472), - [5019] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4473), - [5021] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4475), - [5023] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4476), - [5025] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4477), - [5027] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4478), - [5029] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4474), - [5031] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4483), - [5033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4483), - [5035] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4488), - [5037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4494), - [5039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4495), - [5041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4496), - [5043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4497), - [5045] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4499), - [5047] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4498), - [5049] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4505), - [5051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4510), - [5053] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4514), - [5055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4516), - [5057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4517), - [5059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4521), - [5061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4522), - [5063] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4523), - [5065] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4524), - [5067] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4525), - [5069] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4528), - [5071] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4529), - [5073] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4535), - [5075] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4536), - [5077] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4537), - [5079] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4540), - [5081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4541), - [5083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4542), - [5085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4550), - [5087] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4551), - [5089] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4552), - [5091] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4553), - [5093] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4554), - [5095] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4557), - [5097] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4558), - [5099] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4564), - [5101] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4565), - [5103] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4566), - [5105] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4569), - [5107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4576), - [5109] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4577), - [5111] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4578), - [5113] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4579), - [5115] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4580), - [5117] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4581), - [5119] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4588), - [5121] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4589), - [5123] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4590), - [5125] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4593), - [5127] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4597), - [5129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4597), - [5131] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4598), - [5133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4598), - [5135] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4599), - [5137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4601), - [5139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4602), - [5141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4603), - [5143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4604), - [5145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4607), - [5147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4608), - [5149] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4609), - [5151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4609), - [5153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4611), - [5155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4617), - [5157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4618), - [5159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4619), - [5161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4620), - [5163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4621), - [5165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4624), - [5167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4625), - [5169] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4627), - [5171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4633), - [5173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4634), - [5175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4635), - [5177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4636), - [5179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4637), - [5181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4640), - [5183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4641), - [5185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4643), - [5187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4649), - [5189] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4650), - [5191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4650), - [5193] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4651), - [5195] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4652), - [5197] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4654), - [5199] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4656), - [5201] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4658), - [5203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4660), - [5205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4661), - [5207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4662), - [5209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4663), - [5211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4664), - [5213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4667), - [5215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4668), - [5217] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4669), - [5219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4669), - [5221] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4671), - [5223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4675), - [5225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4676), - [5227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4680), - [5229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4681), - [5231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4682), - [5233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4683), - [5235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4684), - [5237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4687), - [5239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4688), - [5241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4690), - [5243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4696), - [5245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4697), - [5247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4698), - [5249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4699), - [5251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4700), - [5253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4703), - [5255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4704), - [5257] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4706), - [5259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4712), - [5261] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4713), - [5263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4717), - [5265] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4722), - [5267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4723), - [5269] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4724), - [5271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4725), - [5273] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4730), - [5275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4732), - [5277] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4734), - [5279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4739), - [5281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4740), - [5283] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4741), - [5285] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4744), - [5287] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4745), - [5289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4746), - [5291] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4754), - [5293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4754), - [5295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4757), - [5297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4758), - [5299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4758), - [5301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4759), - [5303] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4760), - [5305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4760), - [5307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4761), - [5309] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4763), - [5311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4763), - [5313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4766), - [5315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4768), - [5317] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4772), - [5319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4772), - [5321] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4774), - [5323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4775), - [5325] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4780), - [5327] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4781), - [5329] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4782), - [5331] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4784), - [5333] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4786), - [5335] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4788), - [5337] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4790), - [5339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4790), - [5341] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4791), - [5343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4795), - [5345] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4796), - [5347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4800), - [5349] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4801), - [5351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4805), - [5353] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4806), - [5355] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4807), - [5357] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4809), - [5359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4811), - [5361] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4812), - [5363] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4814), - [5365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4816), - [5367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4817), - [5369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4818), - [5371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4819), - [5373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4820), - [5375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4823), - [5377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4824), - [5379] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4825), - [5381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4825), - [5383] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4827), - [5385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4831), - [5387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4832), - [5389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4836), - [5391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4837), - [5393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4838), - [5395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4839), - [5397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4840), - [5399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4843), - [5401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4844), - [5403] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4845), - [5405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4845), - [5407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4847), - [5409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4851), - [5411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4852), - [5413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4856), - [5415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4857), - [5417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4858), - [5419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4859), - [5421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4860), - [5423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4863), - [5425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4864), - [5427] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4866), - [5429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4872), - [5431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4873), - [5433] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4878), - [5435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4878), - [5437] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4879), - [5439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4883), - [5441] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4888), - [5443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4888), - [5445] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4889), - [5447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4893), - [5449] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4898), - [5451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4898), - [5453] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4899), - [5455] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4901), - [5457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4908), - [5459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4914), - [5461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4920), - [5463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4926), - [5465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4934), - [5467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4942), - [5469] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4947), - [5471] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4949), - [5473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4949), - [5475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4952), - [5477] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4953), - [5479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4953), - [5481] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4954), - [5483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4954), - [5485] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4955), - [5487] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4960), - [5489] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4963), - [5491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4967), - [5493] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4968), - [5495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4972), - [5497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4979), - [5499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4987), - [5501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4995), - [5503] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5000), - [5505] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5001), - [5507] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5003), - [5509] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5004), - [5511] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5006), - [5513] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5007), - [5515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5009), - [5517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5010), - [5519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5011), - [5521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5012), - [5523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5013), - [5525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5014), - [5527] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5016), - [5529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5020), - [5531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5023), - [5533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5024), - [5535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5025), + [4065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3486), + [4067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3488), + [4069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3491), + [4071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3495), + [4073] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3496), + [4075] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3497), + [4077] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3498), + [4079] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3506), + [4081] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3508), + [4083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3510), + [4085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3511), + [4087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3512), + [4089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3513), + [4091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3516), + [4093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3519), + [4095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3520), + [4097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3524), + [4099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3525), + [4101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3526), + [4103] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3527), + [4105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3528), + [4107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3529), + [4109] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3530), + [4111] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3537), + [4113] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2575), + [4115] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3538), + [4117] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2577), + [4119] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2579), + [4121] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3539), + [4123] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3540), + [4125] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3541), + [4127] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3542), + [4129] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3543), + [4131] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3544), + [4133] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3545), + [4135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3562), + [4137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3563), + [4139] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3564), + [4141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3565), + [4143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3566), + [4145] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3567), + [4147] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3574), + [4149] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2596), + [4151] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3575), + [4153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2598), + [4155] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2600), + [4157] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3576), + [4159] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3577), + [4161] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3578), + [4163] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3579), + [4165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3580), + [4167] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3581), + [4169] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3582), + [4171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3596), + [4173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3597), + [4175] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3598), + [4177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3599), + [4179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3600), + [4181] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3601), + [4183] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3608), + [4185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2622), + [4187] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3609), + [4189] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2624), + [4191] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2626), + [4193] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3618), + [4195] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3617), + [4197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3625), + [4199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3626), + [4201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3627), + [4203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3628), + [4205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3631), + [4207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3634), + [4209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3635), + [4211] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3641), + [4213] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3642), + [4215] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3643), + [4217] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3645), + [4219] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3646), + [4221] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3647), + [4223] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3648), + [4225] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3644), + [4227] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3653), + [4229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3653), + [4231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3655), + [4233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3658), + [4235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3659), + [4237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3660), + [4239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3661), + [4241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3662), + [4243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3665), + [4245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3668), + [4247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3669), + [4249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3675), + [4251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3675), + [4253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3676), + [4255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3679), + [4257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3680), + [4259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3681), + [4261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3682), + [4263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3683), + [4265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3686), + [4267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3694), + [4269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3694), + [4271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3695), + [4273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3697), + [4275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3700), + [4277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3705), + [4279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3706), + [4281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3707), + [4283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3708), + [4285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3710), + [4287] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3712), + [4289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3713), + [4291] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3714), + [4293] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3716), + [4295] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3717), + [4297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3718), + [4299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3719), + [4301] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3715), + [4303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3724), + [4305] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3733), + [4307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3736), + [4309] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3735), + [4311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3739), + [4313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3739), + [4315] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3740), + [4317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3741), + [4319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3742), + [4321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3743), + [4323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3757), + [4325] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3756), + [4327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3760), + [4329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3760), + [4331] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3761), + [4333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3762), + [4335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3763), + [4337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3764), + [4339] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3776), + [4341] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3777), + [4343] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3778), + [4345] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3780), + [4347] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3781), + [4349] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3782), + [4351] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3783), + [4353] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3779), + [4355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3786), + [4357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3786), + [4359] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3787), + [4361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3788), + [4363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3789), + [4365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3790), + [4367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3800), + [4369] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3802), + [4371] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3803), + [4373] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3804), + [4375] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3805), + [4377] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3806), + [4379] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3807), + [4381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3813), + [4383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3816), + [4385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__declarations1_repeat1, 2), + [4387] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__declarations1_repeat1, 2), SHIFT_REPEAT(1851), + [4390] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_typed_bindings, 6), + [4392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_typed_bindings, 6), + [4394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3817), + [4396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3818), + [4398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3819), + [4400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3820), + [4402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3824), + [4404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3825), + [4406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3826), + [4408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3827), + [4410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3835), + [4412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3836), + [4414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3837), + [4416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3838), + [4418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3840), + [4420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3842), + [4422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3842), + [4424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3847), + [4426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3848), + [4428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3849), + [4430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3850), + [4432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3852), + [4434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3858), + [4436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3859), + [4438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3860), + [4440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3861), + [4442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3863), + [4444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3865), + [4446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3866), + [4448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3867), + [4450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3871), + [4452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3878), + [4454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3879), + [4456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3880), + [4458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3881), + [4460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3883), + [4462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3885), + [4464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3886), + [4466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3887), + [4468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3889), + [4470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3890), + [4472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3891), + [4474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3892), + [4476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3888), + [4478] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3897), + [4480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3897), + [4482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3905), + [4484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3911), + [4486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3912), + [4488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3913), + [4490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3914), + [4492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3916), + [4494] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3921), + [4496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3927), + [4498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3928), + [4500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3929), + [4502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3930), + [4504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3932), + [4506] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3937), + [4508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3939), + [4510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3940), + [4512] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_typed_bindings, 6), + [4514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3941), + [4516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3942), + [4518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3943), + [4520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3944), + [4522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3947), + [4524] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3951), + [4526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3952), + [4528] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3953), + [4530] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3955), + [4532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3956), + [4534] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3957), + [4536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3958), + [4538] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3954), + [4540] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3961), + [4542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3961), + [4544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3962), + [4546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3963), + [4548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3964), + [4550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3965), + [4552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3975), + [4554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3975), + [4556] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3977), + [4558] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3978), + [4560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3979), + [4562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3980), + [4564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3981), + [4566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3982), + [4568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3988), + [4570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3991), + [4572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3995), + [4574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4000), + [4576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4001), + [4578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4002), + [4580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4003), + [4582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4005), + [4584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4007), + [4586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4016), + [4588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4018), + [4590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4019), + [4592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4020), + [4594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4021), + [4596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4022), + [4598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4023), + [4600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4026), + [4602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4029), + [4604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4030), + [4606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4034), + [4608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4035), + [4610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4036), + [4612] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4037), + [4614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4038), + [4616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4039), + [4618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4040), + [4620] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4047), + [4622] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3214), + [4624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4048), + [4626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3216), + [4628] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3218), + [4630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4049), + [4632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4050), + [4634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4051), + [4636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4052), + [4638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4053), + [4640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4054), + [4642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4055), + [4644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4072), + [4646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4073), + [4648] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4074), + [4650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4075), + [4652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4076), + [4654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4077), + [4656] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4084), + [4658] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3235), + [4660] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4085), + [4662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3237), + [4664] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3239), + [4666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4092), + [4668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4093), + [4670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__declarations0, 2), + [4672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4097), + [4674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4098), + [4676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4099), + [4678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4100), + [4680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4103), + [4682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4106), + [4684] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4110), + [4686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4106), + [4688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4112), + [4690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4112), + [4692] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4127), + [4694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4127), + [4696] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4129), + [4698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4131), + [4700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4134), + [4702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4145), + [4704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4146), + [4706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4147), + [4708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4148), + [4710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4150), + [4712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4152), + [4714] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4161), + [4716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4163), + [4718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4164), + [4720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4165), + [4722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4166), + [4724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4167), + [4726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4168), + [4728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4177), + [4730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4178), + [4732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4179), + [4734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4180), + [4736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4182), + [4738] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4184), + [4740] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4185), + [4742] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4186), + [4744] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4188), + [4746] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4189), + [4748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4190), + [4750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4191), + [4752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4187), + [4754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4196), + [4756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4196), + [4758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4199), + [4760] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4198), + [4762] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4202), + [4764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4202), + [4766] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4203), + [4768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4204), + [4770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4205), + [4772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4206), + [4774] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4216), + [4776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4215), + [4778] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4219), + [4780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4219), + [4782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4220), + [4784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4221), + [4786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4222), + [4788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4223), + [4790] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4232), + [4792] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4233), + [4794] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4234), + [4796] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4236), + [4798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4237), + [4800] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4238), + [4802] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4239), + [4804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4235), + [4806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4242), + [4808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4242), + [4810] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4243), + [4812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4244), + [4814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4245), + [4816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4246), + [4818] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4253), + [4820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4253), + [4822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4255), + [4824] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4256), + [4826] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4257), + [4828] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4258), + [4830] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4259), + [4832] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4260), + [4834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4266), + [4836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4269), + [4838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4270), + [4840] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4274), + [4842] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4275), + [4844] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4276), + [4846] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4284), + [4848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4289), + [4850] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4290), + [4852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4290), + [4854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4294), + [4856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4301), + [4858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4302), + [4860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4303), + [4862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4304), + [4864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4306), + [4866] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4308), + [4868] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4309), + [4870] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4310), + [4872] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4312), + [4874] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4313), + [4876] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4314), + [4878] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4315), + [4880] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4311), + [4882] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4320), + [4884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4320), + [4886] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4328), + [4888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4334), + [4890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4335), + [4892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4336), + [4894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4337), + [4896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4339), + [4898] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4341), + [4900] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4342), + [4902] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4343), + [4904] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4345), + [4906] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4346), + [4908] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4347), + [4910] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4348), + [4912] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4344), + [4914] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4353), + [4916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4353), + [4918] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4359), + [4920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4365), + [4922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4366), + [4924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4367), + [4926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4368), + [4928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4370), + [4930] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4375), + [4932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4377), + [4934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4378), + [4936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4382), + [4938] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4383), + [4940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4384), + [4942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4385), + [4944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4392), + [4946] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4393), + [4948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4399), + [4950] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4400), + [4952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4403), + [4954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4404), + [4956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4405), + [4958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4406), + [4960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4409), + [4962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4412), + [4964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4413), + [4966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4415), + [4968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4418), + [4970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4419), + [4972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4420), + [4974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4421), + [4976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4422), + [4978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4423), + [4980] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4424), + [4982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4431), + [4984] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4432), + [4986] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4433), + [4988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4434), + [4990] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4435), + [4992] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4436), + [4994] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4437), + [4996] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4438), + [4998] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4439), + [5000] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4431), + [5002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4456), + [5004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4457), + [5006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4458), + [5008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4459), + [5010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4460), + [5012] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4461), + [5014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4468), + [5016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4469), + [5018] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4470), + [5020] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4471), + [5022] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4472), + [5024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4473), + [5026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4474), + [5028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4475), + [5030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4476), + [5032] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4468), + [5034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4490), + [5036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4491), + [5038] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4492), + [5040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4493), + [5042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4494), + [5044] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4495), + [5046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4502), + [5048] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4503), + [5050] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4502), + [5052] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4515), + [5054] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4514), + [5056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4522), + [5058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4523), + [5060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4524), + [5062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4525), + [5064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4530), + [5066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4531), + [5068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4532), + [5070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4533), + [5072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4538), + [5074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4539), + [5076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4540), + [5078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4541), + [5080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4546), + [5082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4547), + [5084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4548), + [5086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4549), + [5088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4550), + [5090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4553), + [5092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4556), + [5094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4557), + [5096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4561), + [5098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4562), + [5100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4563), + [5102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4564), + [5104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4565), + [5106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4568), + [5108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4573), + [5110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4574), + [5112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4575), + [5114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4576), + [5116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4577), + [5118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4580), + [5120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4585), + [5122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4589), + [5124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4590), + [5126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4591), + [5128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4592), + [5130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4593), + [5132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4594), + [5134] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4595), + [5136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4602), + [5138] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3961), + [5140] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4603), + [5142] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3963), + [5144] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3965), + [5146] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4612), + [5148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4611), + [5150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4619), + [5152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4620), + [5154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4621), + [5156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4622), + [5158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4623), + [5160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4626), + [5162] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4630), + [5164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4630), + [5166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4632), + [5168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4635), + [5170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4639), + [5172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4646), + [5174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4647), + [5176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4648), + [5178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4649), + [5180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4651), + [5182] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4653), + [5184] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4654), + [5186] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4655), + [5188] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4657), + [5190] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4658), + [5192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4659), + [5194] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4660), + [5196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4656), + [5198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4665), + [5200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4665), + [5202] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4673), + [5204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4679), + [5206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4680), + [5208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4681), + [5210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4682), + [5212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4684), + [5214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4689), + [5216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declarations, 3), + [5218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_where_clause, 4), + [5220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4694), + [5222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4695), + [5224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4699), + [5226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4700), + [5228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4701), + [5230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4709), + [5232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4710), + [5234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4711), + [5236] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4718), + [5238] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4723), + [5240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4723), + [5242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4724), + [5244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4725), + [5246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4726), + [5248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4727), + [5250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4730), + [5252] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4734), + [5254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4734), + [5256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4736), + [5258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4739), + [5260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4743), + [5262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4744), + [5264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4745), + [5266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4746), + [5268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4747), + [5270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4752), + [5272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4753), + [5274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4755), + [5276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4756), + [5278] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4757), + [5280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4758), + [5282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4759), + [5284] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4760), + [5286] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4767), + [5288] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4202), + [5290] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4768), + [5292] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4204), + [5294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4206), + [5296] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4769), + [5298] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4770), + [5300] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4771), + [5302] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4772), + [5304] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4773), + [5306] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4774), + [5308] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4775), + [5310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4783), + [5312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4784), + [5314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4785), + [5316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4786), + [5318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4787), + [5320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4788), + [5322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4795), + [5324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4219), + [5326] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4796), + [5328] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4221), + [5330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4223), + [5332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4797), + [5334] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4798), + [5336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4799), + [5338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4800), + [5340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4801), + [5342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4802), + [5344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4803), + [5346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4811), + [5348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4812), + [5350] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4813), + [5352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4814), + [5354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4815), + [5356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4816), + [5358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4823), + [5360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4242), + [5362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4824), + [5364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4244), + [5366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4246), + [5368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4828), + [5370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4827), + [5372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4835), + [5374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4835), + [5376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4836), + [5378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4836), + [5380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4837), + [5382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4838), + [5384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4839), + [5386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4840), + [5388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4841), + [5390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4844), + [5392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4847), + [5394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4848), + [5396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4852), + [5398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4853), + [5400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4854), + [5402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4855), + [5404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4856), + [5406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4859), + [5408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4862), + [5410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4863), + [5412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4867), + [5414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4868), + [5416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4869), + [5418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4870), + [5420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4871), + [5422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4874), + [5424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4879), + [5426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4880), + [5428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4881), + [5430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4882), + [5432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4886), + [5434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4893), + [5436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4894), + [5438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4895), + [5440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4896), + [5442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4898), + [5444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4900), + [5446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4901), + [5448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4902), + [5450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4904), + [5452] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4905), + [5454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4906), + [5456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4907), + [5458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4903), + [5460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4912), + [5462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4920), + [5464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4926), + [5466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4927), + [5468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4928), + [5470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4929), + [5472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4931), + [5474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4933), + [5476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4934), + [5478] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4935), + [5480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4937), + [5482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4938), + [5484] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4939), + [5486] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4940), + [5488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4936), + [5490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4945), + [5492] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4951), + [5494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4957), + [5496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4958), + [5498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4959), + [5500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4960), + [5502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4962), + [5504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4964), + [5506] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4969), + [5508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4971), + [5510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4972), + [5512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4976), + [5514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4980), + [5516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4984), + [5518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4988), + [5520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4994), + [5522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5000), + [5524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5003), + [5526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5008), + [5528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5009), + [5530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5010), + [5532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5011), + [5534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5013), + [5536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5018), + [5538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5020), + [5540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5021), + [5542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5025), + [5544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5029), + [5546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5030), + [5548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5031), + [5550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5032), + [5552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5033), + [5554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5036), + [5556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5039), + [5558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5040), + [5560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5044), + [5562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5045), + [5564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5046), + [5566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5047), + [5568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5048), + [5570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5051), + [5572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5056), + [5574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5057), + [5576] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5058), + [5578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5058), + [5580] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5059), + [5582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5059), + [5584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5060), + [5586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5060), + [5588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5064), + [5590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5068), + [5592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5072), + [5594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5077), + [5596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5078), + [5598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5079), + [5600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5080), + [5602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5082), + [5604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5084), + [5606] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5085), + [5608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5086), + [5610] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5088), + [5612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5089), + [5614] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5090), + [5616] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5091), + [5618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5087), + [5620] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5096), + [5622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5096), + [5624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5102), + [5626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5103), + [5628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5104), + [5630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5105), + [5632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5107), + [5634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5109), + [5636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5110), + [5638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5111), + [5640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5113), + [5642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5114), + [5644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5115), + [5646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5116), + [5648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5112), + [5650] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(5121), + [5652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5121), + [5654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5127), + [5656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5128), + [5658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5129), + [5660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5130), + [5662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5132), + [5664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5134), + [5666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5135), + [5668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5139), + [5670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5145), + [5672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5151), + [5674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5154), + [5676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5155), + [5678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5156), + [5680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5157), + [5682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5158), + [5684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5161), + [5686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5164), + [5688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5165), + [5690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5167), + [5692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5170), + [5694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5171), + [5696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5172), + [5698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5173), + [5700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5174), + [5702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5177), + [5704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5180), + [5706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5181), + [5708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5183), + [5710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5186), + [5712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5187), + [5714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5188), + [5716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5189), + [5718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5190), + [5720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5193), + [5722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5197), + [5724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5200), + [5726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5201), + [5728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5202), + [5730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5203), + [5732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5204), + [5734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5205), + [5736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5206), + [5738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5207), + [5740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5208), + [5742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5209), + [5744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5210), + [5746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5213), + [5748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5218), + [5750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5219), + [5752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5223), + [5754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5229), + [5756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5232), + [5758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5233), + [5760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5234), + [5762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5235), + [5764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5236), + [5766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5237), + [5768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5242), + [5770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5243), + [5772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5245), + [5774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5246), + [5776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5247), + [5778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5248), + [5780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5253), + [5782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5254), + [5784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5256), + [5786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5257), + [5788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5258), + [5790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5259), + [5792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5264), + [5794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5265), + [5796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5266), + [5798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5270), + [5800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5276), + [5802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5282), + [5804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5288), + [5806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5291), + [5808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5292), + [5810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5296), + [5812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5300), + [5814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5304), + [5816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5305), + [5818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5306), + [5820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5307), + [5822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5308), + [5824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5309), + [5826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5310), + [5828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(5311), }; +void *tree_sitter_agda_external_scanner_create(); +void tree_sitter_agda_external_scanner_destroy(void *); +bool tree_sitter_agda_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_agda_external_scanner_serialize(void *, char *); +void tree_sitter_agda_external_scanner_deserialize(void *, const char *, unsigned); + #ifdef _WIN32 #define extern __declspec(dllexport) #endif @@ -164580,6 +165148,15 @@ extern const TSLanguage *tree_sitter_agda() { .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .lex_fn = ts_lex, .external_token_count = EXTERNAL_TOKEN_COUNT, + .external_scanner = { + (const bool *)ts_external_scanner_states, + ts_external_scanner_symbol_map, + tree_sitter_agda_external_scanner_create, + tree_sitter_agda_external_scanner_destroy, + tree_sitter_agda_external_scanner_scan, + tree_sitter_agda_external_scanner_serialize, + tree_sitter_agda_external_scanner_deserialize, + }, }; return &language; } diff --git a/src/scanner.cc b/src/scanner.cc new file mode 100644 index 0000000..87bb0e4 --- /dev/null +++ b/src/scanner.cc @@ -0,0 +1,234 @@ +#include +#include +#include + +namespace { + +using std::vector; + +enum TokenType { + LAYOUT_SEMICOLON, + LAYOUT_OPEN_BRACE, + LAYOUT_CLOSE_BRACE, + ARROW, +}; + +struct Scanner { + Scanner() { + deserialize(NULL, 0); + } + + unsigned serialize(char *buffer) { + size_t i = 0; + buffer[i++] = queued_close_brace_count; + + vector::iterator + iter = indent_length_stack.begin() + 1, + end = indent_length_stack.end(); + for (; iter != end && i < TREE_SITTER_SERIALIZATION_BUFFER_SIZE; ++iter) { + buffer[i++] = *iter; + } + + return i; + } + + void deserialize(const char *buffer, unsigned length) { + queued_close_brace_count = 0; + indent_length_stack.clear(); + indent_length_stack.push_back(0); + + if (length > 0) { + size_t i = 0; + queued_close_brace_count = buffer[i++]; + while (i < length) indent_length_stack.push_back(buffer[i++]); + } + } + + void advance(TSLexer *lexer) { + lexer->advance(lexer, false); + } + + bool scan(TSLexer *lexer, const bool *valid_symbols) { + if (valid_symbols[LAYOUT_CLOSE_BRACE] && queued_close_brace_count > 0) { + queued_close_brace_count--; + lexer->result_symbol = LAYOUT_CLOSE_BRACE; + return true; + } + + if (valid_symbols[LAYOUT_OPEN_BRACE]) { + while (iswspace(lexer->lookahead)) { + lexer->advance(lexer, true); + } + + if (lexer->lookahead == '{') { + return false; + } else { + uint32_t column = lexer->get_column(lexer); + indent_length_stack.push_back(column); + lexer->result_symbol = LAYOUT_OPEN_BRACE; + return true; + } + } + + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + lexer->advance(lexer, true); + } + + if (lexer->lookahead == 0) { + if (valid_symbols[LAYOUT_SEMICOLON]) { + lexer->result_symbol = LAYOUT_SEMICOLON; + return true; + } + if (valid_symbols[LAYOUT_CLOSE_BRACE]) { + lexer->result_symbol = LAYOUT_CLOSE_BRACE; + return true; + } + return false; + } + + lexer->mark_end(lexer); + + if (lexer->lookahead == 'i') { + advance(lexer); + if (lexer->lookahead == 'n') { + advance(lexer); + if (iswspace(lexer->lookahead)) { + indent_length_stack.pop_back(); + if (valid_symbols[LAYOUT_CLOSE_BRACE]) { + lexer->result_symbol = LAYOUT_CLOSE_BRACE; + return true; + } else { + queued_close_brace_count++; + if (valid_symbols[LAYOUT_SEMICOLON]) { + lexer->result_symbol = LAYOUT_SEMICOLON; + return true; + } + } + } + } + } + + if (!valid_symbols[ARROW]) { + if (lexer->lookahead == '-') { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + if (iswspace(lexer->lookahead)) { + indent_length_stack.pop_back(); + if (valid_symbols[LAYOUT_CLOSE_BRACE]) { + lexer->result_symbol = LAYOUT_CLOSE_BRACE; + return true; + } else { + queued_close_brace_count++; + if (valid_symbols[LAYOUT_SEMICOLON]) { + lexer->result_symbol = LAYOUT_SEMICOLON; + return true; + } + } + } + } + } + } + + if (lexer->lookahead != '\n') return false; + advance(lexer); + + bool next_token_is_comment = false; + uint32_t indent_length = 0; + for (;;) { + if (lexer->lookahead == '\n') { + indent_length = 0; + advance(lexer); + } else if (lexer->lookahead == ' ') { + indent_length++; + advance(lexer); + } else if (lexer->lookahead == '\t') { + indent_length += 8; + advance(lexer); + } else if (lexer->lookahead == 0) { + if (valid_symbols[LAYOUT_SEMICOLON]) { + lexer->result_symbol = LAYOUT_SEMICOLON; + return true; + } + if (valid_symbols[LAYOUT_CLOSE_BRACE]) { + lexer->result_symbol = LAYOUT_CLOSE_BRACE; + return true; + } + return false; + } else { + if (lexer->lookahead == '{') { + advance(lexer); + if (lexer->lookahead == '-') { + advance(lexer); + next_token_is_comment = iswspace(lexer->lookahead); + } + } + break; + } + } + + if (!next_token_is_comment) { + if (indent_length < indent_length_stack.back()) { + indent_length_stack.pop_back(); + queued_close_brace_count++; + while (indent_length < indent_length_stack.back()) { + indent_length_stack.pop_back(); + queued_close_brace_count++; + } + + if (valid_symbols[LAYOUT_CLOSE_BRACE]) { + lexer->result_symbol = LAYOUT_CLOSE_BRACE; + return true; + } else { + if (valid_symbols[LAYOUT_SEMICOLON]) { + lexer->result_symbol = LAYOUT_SEMICOLON; + return true; + } + } + } else if (indent_length == indent_length_stack.back()) { + if (valid_symbols[LAYOUT_SEMICOLON]) { + lexer->result_symbol = LAYOUT_SEMICOLON; + return true; + } + } + } + + return false; + } + + vector indent_length_stack; + uint32_t queued_close_brace_count; +}; + +} + +extern "C" { + +void *tree_sitter_agda_external_scanner_create() { + return new Scanner(); +} + +bool tree_sitter_agda_external_scanner_scan(void *payload, TSLexer *lexer, + const bool *valid_symbols) { + Scanner *scanner = static_cast(payload); + return scanner->scan(lexer, valid_symbols); +} + +unsigned tree_sitter_agda_external_scanner_serialize(void *payload, char *buffer) { + Scanner *scanner = static_cast(payload); + return scanner->serialize(buffer); +} + +void tree_sitter_agda_external_scanner_deserialize(void *payload, + const char *buffer, + unsigned length) { + Scanner *scanner = static_cast(payload); + scanner->deserialize(buffer, length); +} + +void tree_sitter_agda_external_scanner_destroy(void *payload) { + Scanner *scanner = static_cast(payload); + delete scanner; +} + +}